blob: e06d0f620a240cb4198c5f7a035421452c036320 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//>>built
define("dojox/charting/plot2d/Markers", ["dojo/_base/declare", "./Default"], function(declare, Default){
/*=====
var Default = dojox.charting.plot2d.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;
}
});
});
|