base.js
来自「ajax框架原吗,dojo目前很流行的,希望大家多多学习啊」· JavaScript 代码 · 共 24 行
JS
24 行
if(!dojo._hasResource["dojox.charting.plot3d.Base"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.dojo._hasResource["dojox.charting.plot3d.Base"] = true;dojo.provide("dojox.charting.plot3d.Base");dojo.require("dojox.charting.Chart3D");dojo.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){ }});}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?