juijs-chart
Version:
SVG-based JUI chart that can be used in the browser and Node.js. Support many types of charts. (Dashboard, Map, Topology, Full 3D)
18 lines (15 loc) • 397 B
JavaScript
import jui from '../main.js';
import LineBrush from './line.js'
jui.use(LineBrush);
export default {
name: "chart.brush.stackline",
extend: "chart.brush.line",
component: function() {
var StackLineBrush = function() {
this.draw = function() {
return this.drawLine(this.getStackXY());
}
}
return StackLineBrush;
}
}