blob: 35d859f3fb4b8cf1ef077c5a876fbed7ad96af7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
if(!dojo._hasResource["dojox.charting.plot2d.Areas"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
dojo._hasResource["dojox.charting.plot2d.Areas"] = true;
dojo.provide("dojox.charting.plot2d.Areas");
dojo.require("dojox.charting.plot2d.Default");
dojo.declare("dojox.charting.plot2d.Areas", dojox.charting.plot2d.Default, {
constructor: function(){
this.opt.lines = true;
this.opt.areas = true;
}
});
}
|