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.plot2d.MarkersOnly"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
2
dojo._hasResource["dojox.charting.plot2d.MarkersOnly"] = true;
3
dojo.provide("dojox.charting.plot2d.MarkersOnly");
4
 
5
dojo.require("dojox.charting.plot2d.Default");
6
 
7
dojo.declare("dojox.charting.plot2d.MarkersOnly", dojox.charting.plot2d.Default, {
8
	constructor: function(){
9
		this.opt.lines   = false;
10
		this.opt.markers = true;
11
	}
12
});
13
 
14
}