various fixes for the gadget -- it works in google docs now!
authorDan Vanderkam <danvdk@gmail.com>
Wed, 25 Nov 2009 20:44:07 +0000 (15:44 -0500)
committerDan Vanderkam <danvdk@gmail.com>
Wed, 25 Nov 2009 20:44:07 +0000 (15:44 -0500)
dygraph-combined.js
dygraph.js
gadget.xml

index ff580dc..2e6f734 100644 (file)
@@ -5707,7 +5707,7 @@ this.attrs_.xValueFormatter=Dygraph.dateString_;
 this.attrs_.xValueParser=Dygraph.dateParser;
 this.attrs_.xTicker=Dygraph.dateTicker;
 }else{
-if(_217!="number"){
+if(_217=="number"){
 this.attrs_.xValueFormatter=function(x){
 return x;
 };
@@ -5716,7 +5716,7 @@ return parseFloat(x);
 };
 this.attrs_.xTicker=Dygraph.numericTicks;
 }else{
-this.error("only 'date' and 'number' types are supported for column 1"+"of DataTable input (Got '"+_217+"')");
+this.error("only 'date' and 'number' types are supported for column 1 "+"of DataTable input (Got '"+_217+"')");
 return null;
 }
 }
index 6ef0835..94b536d 100644 (file)
@@ -1397,12 +1397,12 @@ Dygraph.prototype.parseDataTable_ = function(data) {
     this.attrs_.xValueFormatter = Dygraph.dateString_;
     this.attrs_.xValueParser = Dygraph.dateParser;
     this.attrs_.xTicker = Dygraph.dateTicker;
-  } else if (indepType != 'number') {
+  } else if (indepType == 'number') {
     this.attrs_.xValueFormatter = function(x) { return x; };
     this.attrs_.xValueParser = function(x) { return parseFloat(x); };
     this.attrs_.xTicker = Dygraph.numericTicks;
   } else {
-    this.error("only 'date' and 'number' types are supported for column 1" +
+    this.error("only 'date' and 'number' types are supported for column 1 " +
                "of DataTable input (Got '" + indepType + "')");
     return null;
   }
index 3bc4281..53dee08 100644 (file)
@@ -86,9 +86,6 @@
       // var options = {showRowNumber: true};
       var prefs = new _IG_Prefs(); // User preferences
       chart.draw(data, {
-        xValueParser: function(x) { return parseFloat(x); },
-        xValueFormatter: function(x) { return x; },
-        xTicker: DateGraph.prototype.numericTicks
       });
     };