source: Dev/branches/rest-dojo-ui/client/dojox/charting/plot2d/Lines.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: 399 bytes
Line 
1define(["dojo/_base/declare", "./Default"], function(declare, Default){
2/*=====
3var Default = dojox.charting.plot2d.Default;
4=====*/
5        return declare("dojox.charting.plot2d.Lines", Default, {
6                //      summary:
7                //              A convenience constructor to create a typical line chart.
8                constructor: function(){
9                        //      summary:
10                        //              Preset our default plot to be line-based.
11                        this.opt.lines = true;
12                }
13        });
14});
Note: See TracBrowser for help on using the repository browser.