dojox
Version:
Dojo eXtensions, a rollup of many useful sub-projects and varying states of maturity – from very stable and robust, to alpha and experimental. See individual projects contain README files for details.
13 lines (11 loc) • 336 B
JavaScript
define(["dojo/_base/declare", "./Default"], function(declare, Default){
return declare("dojox.charting.plot2d.Markers", Default, {
// summary:
// A convenience plot to draw a line chart with markers.
constructor: function(){
// summary:
// Set up the plot for lines and markers.
this.opt.markers = true;
}
});
});