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
340 B
12 lines
340 B
define(["dojo/_base/declare", "./Stacked"], function(declare, Stacked){ |
|
|
|
return declare("dojox.charting.plot2d.StackedLines", Stacked, { |
|
// summary: |
|
// A convenience object to create a stacked line chart. |
|
constructor: function(){ |
|
// summary: |
|
// Force our Stacked base to be lines only. |
|
this.opt.lines = true; |
|
} |
|
}); |
|
});
|
|
|