summaryrefslogtreecommitdiff
path: root/js/dojo-1.7.2/dojox/charting/Chart2D.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/dojo-1.7.2/dojox/charting/Chart2D.js')
-rw-r--r--js/dojo-1.7.2/dojox/charting/Chart2D.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/js/dojo-1.7.2/dojox/charting/Chart2D.js b/js/dojo-1.7.2/dojox/charting/Chart2D.js
new file mode 100644
index 0000000..4ab898f
--- /dev/null
+++ b/js/dojo-1.7.2/dojox/charting/Chart2D.js
@@ -0,0 +1,17 @@
+//>>built
+define("dojox/charting/Chart2D", ["dojo/_base/kernel", "dojox", "./Chart",
+ "./axis2d/Default", "./axis2d/Invisible", "./plot2d/Default", "./plot2d/Lines", "./plot2d/Areas",
+ "./plot2d/Markers", "./plot2d/MarkersOnly", "./plot2d/Scatter", "./plot2d/Stacked", "./plot2d/StackedLines",
+ "./plot2d/StackedAreas", "./plot2d/Columns", "./plot2d/StackedColumns", "./plot2d/ClusteredColumns",
+ "./plot2d/Bars", "./plot2d/StackedBars", "./plot2d/ClusteredBars", "./plot2d/Grid", "./plot2d/Pie",
+ "./plot2d/Bubble", "./plot2d/Candlesticks", "./plot2d/OHLC", "./plot2d/Spider"],
+ function(dojo, dojox, Chart){
+ dojo.deprecated("dojox.charting.Chart2D", "Use dojo.charting.Chart instead and require all other components explicitly", "2.0");
+ // module:
+ // dojox/charting/Chart2D
+ // summary:
+ // This is a compatibility module which loads all charting modules that used to be automatically
+ // loaded in versions prior to 1.6. It is highly recommended for performance reasons that
+ // this module no longer be referenced by applications. Instead, use dojox/charting/Chart.
+ return dojox.charting.Chart2D = Chart;
+});