blob: a99fa7fae365a07380ffe727a180329c3bd5f758 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//>>built
define("dojox/charting/plot2d/Areas", ["dojo/_base/declare", "./Default"],
function(declare, Default){
/*=====
var Default = dojox.charting.plot2d.Default;
=====*/
return declare("dojox.charting.plot2d.Areas", Default, {
// summary:
// Represents an area chart. See dojox.charting.plot2d.Default for details.
constructor: function(){
this.opt.lines = true;
this.opt.areas = true;
}
});
});
|