source: Dev/branches/rest-dojo-ui/client/dojox/charting/Chart2D.js @ 274

Last change on this file since 274 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: 1.1 KB
Line 
1define(["dojo/_base/kernel", "dojox", "./Chart",
2        "./axis2d/Default", "./axis2d/Invisible", "./plot2d/Default", "./plot2d/Lines", "./plot2d/Areas",
3        "./plot2d/Markers", "./plot2d/MarkersOnly", "./plot2d/Scatter", "./plot2d/Stacked", "./plot2d/StackedLines",
4        "./plot2d/StackedAreas", "./plot2d/Columns", "./plot2d/StackedColumns", "./plot2d/ClusteredColumns",
5        "./plot2d/Bars", "./plot2d/StackedBars", "./plot2d/ClusteredBars", "./plot2d/Grid", "./plot2d/Pie",
6        "./plot2d/Bubble", "./plot2d/Candlesticks", "./plot2d/OHLC", "./plot2d/Spider"],
7          function(dojo, dojox, Chart){
8        dojo.deprecated("dojox.charting.Chart2D", "Use dojo.charting.Chart instead and require all other components explicitly", "2.0");
9        // module:
10        //              dojox/charting/Chart2D
11        // summary:
12        //              This is a compatibility module which loads all charting modules that used to be automatically
13        //              loaded in versions prior to 1.6.  It is highly recommended for performance reasons that
14        //              this module no longer be referenced by applications.  Instead, use dojox/charting/Chart.
15        return dojox.charting.Chart2D = Chart;
16});
Note: See TracBrowser for help on using the repository browser.