Last change
on this file since 256 was
256,
checked in by hendrikvanantwerpen, 13 years ago
|
Reworked project structure based on REST interaction and Dojo library. As
soon as this is stable, the old jQueryUI branch can be removed (it's
kept for reference).
|
File size:
444 bytes
|
Line | |
---|
1 | define(["dojo/_base/declare", "./Stacked"], function(declare, Stacked){ |
---|
2 | /*===== |
---|
3 | var Stacked = dojox.charting.plot2d.Stacked; |
---|
4 | =====*/ |
---|
5 | return declare("dojox.charting.plot2d.StackedAreas", Stacked, { |
---|
6 | // summary: |
---|
7 | // A convenience object to set up a stacked area plot. |
---|
8 | constructor: function(){ |
---|
9 | // summary: |
---|
10 | // Force our Stacked plotter to include both lines and areas. |
---|
11 | this.opt.lines = true; |
---|
12 | this.opt.areas = true; |
---|
13 | } |
---|
14 | }); |
---|
15 | }); |
---|
16 | |
---|
Note: See
TracBrowser
for help on using the repository browser.