Files
old-spike/client/d3/line/spline.js

14 lines
189 B
JavaScript
Raw Normal View History

2016-02-11 19:52:12 -06:00
import LineChart from './line';
2016-02-12 15:51:06 -06:00
const INTEPOLATION = 'cardinal';
2016-02-11 19:52:12 -06:00
class SplineChart extends LineChart {
2016-02-12 15:51:06 -06:00
get chart_options(){
return {
interpolation: INTEPOLATION
}
}
2016-02-11 19:52:12 -06:00
}