summaryrefslogtreecommitdiff
path: root/js/dojo-1.7.2/dojox/charting/plot3d/Base.js
blob: 7929ae91b8a39562923645567e84ee0c5dc20206 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//>>built
define("dojox/charting/plot3d/Base", ["dojo/_base/declare"], 
  function(declare) {
	return declare("dojox.charting.plot3d.Base", null, {
		constructor: function(width, height, kwArgs){
			this.width  = width;
			this.height = height;
		},
		setData: function(data){
			this.data = data ? data : [];
			return this;
		},
		getDepth: function(){
			return this.depth;
		},
		generate: function(chart, creator){
		}
	});
});