You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
409 B
13 lines
409 B
define(["dojo/_base/declare", "./Default"], function(declare, 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; |
|
} |
|
}); |
|
});
|
|
|