source:
Dev/trunk/src/client/dojox/charting/plot2d/StackedAreas.js
Last change on this file was 483, checked in by hendrikvanantwerpen, 11 years ago | |
---|---|
File size: 384 bytes |
Rev | Line | |
---|---|---|
[483] | 1 | define(["dojo/_base/declare", "./Stacked"], function(declare, Stacked){ |
2 | ||
3 | return declare("dojox.charting.plot2d.StackedAreas", Stacked, { | |
4 | // summary: | |
5 | // A convenience object to set up a stacked area plot. | |
6 | constructor: function(){ | |
7 | // summary: | |
8 | // Force our Stacked plotter to include both lines and areas. | |
9 | this.opt.lines = true; | |
10 | this.opt.areas = true; | |
11 | } | |
12 | }); | |
13 | }); | |
14 |
Note: See TracBrowser
for help on using the repository browser.