root / trunk / web / dojo / dojox / charting / axis2d / Base.js @ 12
History | View | Annotate | Download (821 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.axis2d.Base"]){ |
||
9 | dojo._hasResource["dojox.charting.axis2d.Base"]=true; |
||
10 | dojo.provide("dojox.charting.axis2d.Base");
|
||
11 | dojo.require("dojox.charting.Element");
|
||
12 | dojo.declare("dojox.charting.axis2d.Base",dojox.charting.Element,{constructor:function(_1,_2){ |
||
13 | this.vertical=_2&&_2.vertical;
|
||
14 | },clear:function(){ |
||
15 | return this; |
||
16 | },initialized:function(){ |
||
17 | return false; |
||
18 | },calculate:function(_3,_4,_5){ |
||
19 | return this; |
||
20 | },getScaler:function(){ |
||
21 | return null; |
||
22 | },getTicks:function(){ |
||
23 | return null; |
||
24 | },getOffsets:function(){ |
||
25 | return {l:0,r:0,t:0,b:0}; |
||
26 | },render:function(_6,_7){ |
||
27 | this.dirty=false; |
||
28 | return this; |
||
29 | }}); |
||
30 | } |