Subversion Repositories Applications.papyrus

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2150 mathias 1
if(!dojo._hasResource["dojox.charting.axis2d.Base"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
2
dojo._hasResource["dojox.charting.axis2d.Base"] = true;
3
dojo.provide("dojox.charting.axis2d.Base");
4
 
5
dojo.require("dojox.charting.Element");
6
 
7
dojo.declare("dojox.charting.axis2d.Base", dojox.charting.Element, {
8
	constructor: function(chart, kwArgs){
9
		this.vertical = kwArgs && kwArgs.vertical;
10
	},
11
	clear: function(){
12
		return this;
13
	},
14
	initialized: function(){
15
		return false;
16
	},
17
	calculate: function(min, max, span){
18
		return this;
19
	},
20
	getScaler: function(){
21
		return null;
22
	},
23
	getOffsets: function(){
24
		return {l: 0, r: 0, t: 0, b: 0};
25
	},
26
	render: function(dim, offsets){
27
		return this;
28
	}
29
});
30
 
31
}