root / trunk / web / dojo / dojox / charting / plot3d / Base.js @ 12
History | View | Annotate | Download (634 Bytes)
1 | 9 | andrej.cim | /*
|
---|---|---|---|
2 | Copyright (c) 2004-2010, The Dojo Foundation All Rights Reserved.
|
||
3 | Available via Academic Free License >= 2.1 OR the modified BSD license.
|
||
4 | see: http://dojotoolkit.org/license for details
|
||
5 | */
|
||
6 | |||
7 | |||
8 | if(!dojo._hasResource["dojox.charting.plot3d.Base"]){ |
||
9 | dojo._hasResource["dojox.charting.plot3d.Base"]=true; |
||
10 | dojo.provide("dojox.charting.plot3d.Base");
|
||
11 | dojo.require("dojox.charting.Chart3D");
|
||
12 | dojo.declare("dojox.charting.plot3d.Base",null,{constructor:function(_1,_2,_3){ |
||
13 | this.width=_1;
|
||
14 | this.height=_2;
|
||
15 | },setData:function(_4){ |
||
16 | this.data=_4?_4:[];
|
||
17 | return this; |
||
18 | },getDepth:function(){ |
||
19 | return this.depth; |
||
20 | },generate:function(_5,_6){ |
||
21 | }}); |
||
22 | } |