summaryrefslogtreecommitdiff
path: root/js/dojo/dojox/charting/plot2d/Lines.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/dojo/dojox/charting/plot2d/Lines.js')
-rw-r--r--js/dojo/dojox/charting/plot2d/Lines.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/js/dojo/dojox/charting/plot2d/Lines.js b/js/dojo/dojox/charting/plot2d/Lines.js
new file mode 100644
index 0000000..3791acf
--- /dev/null
+++ b/js/dojo/dojox/charting/plot2d/Lines.js
@@ -0,0 +1,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;
+ }
+ });
+});