You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
377 B
14 lines
377 B
define(["dojo/_base/declare", "./Default"], |
|
function(declare, Default){ |
|
|
|
return declare("dojox.charting.plot2d.Areas", Default, { |
|
// summary: |
|
// Represents an area chart. See dojox/charting/plot2d/Default for details. |
|
constructor: function(){ |
|
// summary: |
|
// The constructor for an Area chart. |
|
this.opt.lines = true; |
|
this.opt.areas = true; |
|
} |
|
}); |
|
});
|
|
|