source: Dev/trunk/src/client/dojox/charting/plot2d/StackedAreas.js @ 501

Last change on this file since 501 was 483, checked in by hendrikvanantwerpen, 11 years ago

Added Dojo 1.9.3 release.

File size: 384 bytes
Line 
1define(["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.