487c0560bf71fbfa048938f2fed7a3bf332801b6.svn-base 726 B

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