source: Dev/branches/rest-dojo-ui/client/dojox/charting/plot2d/StackedLines.js @ 256

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: 400 bytes
Line 
1define(["dojo/_base/declare", "./Stacked"], function(declare, Stacked){
2/*=====
3var Stacked = dojox.charting.plot2d.Stacked;
4=====*/
5        return declare("dojox.charting.plot2d.StackedLines", Stacked, {
6                //      summary:
7                //              A convenience object to create a stacked line chart.
8                constructor: function(){
9                        //      summary:
10                        //              Force our Stacked base to be lines only.
11                        this.opt.lines = true;
12                }
13        });
14});
Note: See TracBrowser for help on using the repository browser.