dojox
Version:
Dojo eXtensions, a rollup of many useful sub-projects and varying states of maturity – from very stable and robust, to alpha and experimental. See individual projects contain README files for details.
15 lines (12 loc) • 384 B
JavaScript
define(["dojo/_base/declare", "./Stacked"], function(declare, Stacked){
return declare("dojox.charting.plot2d.StackedAreas", Stacked, {
// summary:
// A convenience object to set up a stacked area plot.
constructor: function(){
// summary:
// Force our Stacked plotter to include both lines and areas.
this.opt.lines = true;
this.opt.areas = true;
}
});
});