Last change
on this file since 256 was
256,
checked in by hendrikvanantwerpen, 13 years ago
|
Reworked project structure based on REST interaction and Dojo library. As
soon as this is stable, the old jQueryUI branch can be removed (it's
kept for reference).
|
File size:
394 bytes
|
Line | |
---|
1 | define(["dojo/_base/declare"], |
---|
2 | function(declare) { |
---|
3 | return declare("dojox.charting.plot3d.Base", null, { |
---|
4 | constructor: function(width, height, kwArgs){ |
---|
5 | this.width = width; |
---|
6 | this.height = height; |
---|
7 | }, |
---|
8 | setData: function(data){ |
---|
9 | this.data = data ? data : []; |
---|
10 | return this; |
---|
11 | }, |
---|
12 | getDepth: function(){ |
---|
13 | return this.depth; |
---|
14 | }, |
---|
15 | generate: function(chart, creator){ |
---|
16 | } |
---|
17 | }); |
---|
18 | }); |
---|
19 | |
---|
Note: See
TracBrowser
for help on using the repository browser.