1234567891011121314 |
- define("dojox/charting/plot2d/Areas", ["dojo/_base/declare", "./Default"],
- function(declare, Default){
- return declare("dojox.charting.plot2d.Areas", Default, {
-
-
- constructor: function(){
- this.opt.lines = true;
- this.opt.areas = true;
- }
- });
- });
|