source:
Dev/trunk/src/client/dojox/charting/plot2d/StackedLines.js
Last change on this file was 483, checked in by hendrikvanantwerpen, 11 years ago | |
---|---|
File size: 340 bytes |
Line | |
---|---|
1 | define(["dojo/_base/declare", "./Stacked"], function(declare, Stacked){ |
2 | |
3 | return declare("dojox.charting.plot2d.StackedLines", Stacked, { |
4 | // summary: |
5 | // A convenience object to create a stacked line chart. |
6 | constructor: function(){ |
7 | // summary: |
8 | // Force our Stacked base to be lines only. |
9 | this.opt.lines = true; |
10 | } |
11 | }); |
12 | }); |
Note: See TracBrowser
for help on using the repository browser.