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.Series"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
2
dojo._hasResource["dojox.charting.Series"] = true;
3
dojo.provide("dojox.charting.Series");
4
 
5
dojo.require("dojox.charting.Element");
6
 
7
dojo.declare("dojox.charting.Series", dojox.charting.Element, {
8
	constructor: function(chart, data, kwArgs){
9
		dojo.mixin(this, kwArgs);
10
		if(typeof this.plot != "string"){ this.plot = "default"; }
11
		this.data = data;
12
		this.dirty = true;
13
		this.clear();
14
	},
15
	clear: function(){
16
		this.dyn = {};
17
	}
18
});
19
 
20
}