blob: 3791acf3bea3aca1f57418dab2e78cdcd0c16237 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//>>built
define("dojox/charting/plot2d/Lines", ["dojo/_base/declare", "./Default"], function(declare, Default){
/*=====
var Default = dojox.charting.plot2d.Default;
=====*/
return declare("dojox.charting.plot2d.Lines", Default, {
// summary:
// A convenience constructor to create a typical line chart.
constructor: function(){
// summary:
// Preset our default plot to be line-based.
this.opt.lines = true;
}
});
});
|