source:
Dev/trunk/src/client/dojox/charting/plot2d/Areas.js
Last change on this file was 483, checked in by hendrikvanantwerpen, 11 years ago | |
---|---|
File size: 377 bytes |
Rev | Line | |
---|---|---|
[483] | 1 | define(["dojo/_base/declare", "./Default"], |
2 | function(declare, Default){ | |
3 | ||
4 | return declare("dojox.charting.plot2d.Areas", Default, { | |
5 | // summary: | |
6 | // Represents an area chart. See dojox/charting/plot2d/Default for details. | |
7 | constructor: function(){ | |
8 | // summary: | |
9 | // The constructor for an Area chart. | |
10 | this.opt.lines = true; | |
11 | this.opt.areas = true; | |
12 | } | |
13 | }); | |
14 | }); |
Note: See TracBrowser
for help on using the repository browser.