]> git.pond.sub.org Git - eow/blob - static/dojo-release-1.1.1/dojox/charting/plot3d/Base.js
Comment class stub
[eow] / static / dojo-release-1.1.1 / dojox / charting / plot3d / Base.js
1 if(!dojo._hasResource["dojox.charting.plot3d.Base"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
2 dojo._hasResource["dojox.charting.plot3d.Base"] = true;
3 dojo.provide("dojox.charting.plot3d.Base");
4
5 dojo.require("dojox.charting.Chart3D");
6
7 dojo.declare("dojox.charting.plot3d.Base", null, {
8         constructor: function(width, height, kwArgs){
9                 this.width  = width;
10                 this.height = height;
11         },
12         setData: function(data){
13                 this.data = data ? data : [];
14                 return this;
15         },
16         getDepth: function(){
17                 return this.depth;
18         },
19         generate: function(chart, creator){
20         }
21 });
22
23 }