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 AreaBrush from './area.js'
jui.use(AreaBrush);
export default {
name: "chart.brush.stackarea",
extend: "chart.brush.area",
component: function() {
var StackAreaBrush = function() {
this.draw = function() {
return this.drawArea(this.getStackXY());
}
}
return StackAreaBrush;
}
}