12 lines
382 B
JavaScript
12 lines
382 B
JavaScript
|
//>>built
|
||
|
define("dojox/charting/action2d/Base",["dojo/_base/lang","dojo/_base/declare"],function(_1,_2){
|
||
|
return _2("dojox.charting.action2d.Base",null,{constructor:function(_3,_4){
|
||
|
this.chart=_3;
|
||
|
this.plot=_4?(_1.isString(_4)?this.chart.getPlot(_4):_4):this.chart.getPlot("default");
|
||
|
},connect:function(){
|
||
|
},disconnect:function(){
|
||
|
},destroy:function(){
|
||
|
this.disconnect();
|
||
|
}});
|
||
|
});
|