blob: c7fe4933af45c56cd79735f00cf6365fab521758 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//>>built
define("dojox/charting/plot2d/MarkersOnly", ["dojo/_base/declare", "./Default"], function(declare, Default){
/*=====
var Default = dojox.charting.plot2d.Default;
=====*/
return declare("dojox.charting.plot2d.MarkersOnly", Default, {
// summary:
// A convenience object to draw only markers (like a scatter but not quite).
constructor: function(){
// summary:
// Set up our default plot to only have markers and no lines.
this.opt.lines = false;
this.opt.markers = true;
}
});
});
|