Subversion Repositories Applications.papyrus

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2150 mathias 1
if(!dojo._hasResource["dojox.charting.plot2d.StackedAreas"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
2
dojo._hasResource["dojox.charting.plot2d.StackedAreas"] = true;
3
dojo.provide("dojox.charting.plot2d.StackedAreas");
4
 
5
dojo.require("dojox.charting.plot2d.Stacked");
6
 
7
dojo.declare("dojox.charting.plot2d.StackedAreas", dojox.charting.plot2d.Stacked, {
8
	constructor: function(){
9
		this.opt.lines = true;
10
		this.opt.areas = true;
11
	}
12
});
13
 
14
}