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.
12 lines
339 B
12 lines
339 B
define(["dojo/_base/declare", "./Default"], function(declare, 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; |
|
} |
|
}); |
|
});
|
|
|