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) • 421 B
JavaScript
import jui from '../main.js';
import ScatterBrush from './scatter.js'
jui.use(ScatterBrush);
export default {
name: "chart.brush.stackscatter",
extend: "chart.brush.scatter",
component: function() {
var StackScatterBrush = function() {
this.draw = function() {
return this.drawScatter(this.getStackXY());
}
}
return StackScatterBrush;
}
}