123456789101112131415161718192021222324252627282930313233343536 |
- define("dojox/charting/action2d/Base", ["dojo/_base/lang", "dojo/_base/declare"],
- function(lang, declare){
- return declare("dojox.charting.action2d.Base", null, {
-
-
-
- constructor: function(chart, plot){
-
-
-
-
-
-
- this.chart = chart;
- this.plot = plot ? (lang.isString(plot) ? this.chart.getPlot(plot) : plot) : this.chart.getPlot("default");
- },
-
- connect: function(){
-
-
- },
-
- disconnect: function(){
-
-
- },
-
- destroy: function(){
-
-
- this.disconnect();
- }
- });
- });
|