blob: 2bc3f6b8ea5236d48ba3d921c72ea1499f4a3230 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//>>built
define("dojox/charting/plot2d/StackedAreas", ["dojo/_base/declare", "./Stacked"], function(declare, Stacked){
/*=====
var Stacked = dojox.charting.plot2d.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;
}
});
});
|