Removed comma in zoom.html, removed "C,D" in data.js.
authorRobert Konigsberg <konigsberg@google.com>
Fri, 8 Oct 2010 15:07:57 +0000 (11:07 -0400)
committerRobert Konigsberg <konigsberg@google.com>
Fri, 8 Oct 2010 15:07:57 +0000 (11:07 -0400)
tests/data.js
tests/zoom.html

index 29445d4..5f61b95 100644 (file)
@@ -373,7 +373,7 @@ function data() {
 
 function NoisyData() {
 return "" +
-"Date,A,B,C,D\n" +
+"Date,A,B\n" +
 "20061001,3.01953818828,0.7212041046,2.18487394958,0.599318549691\n" +
 "20061002,3.63321799308,0.778297234566,1.69491525424,0.531417655826\n" +
 "20061003,2.44328097731,0.644967734352,2.51256281407,0.640539070386\n" +
index 1f5cac9..ee6fbec 100644 (file)
@@ -39,7 +39,7 @@
       g = new Dygraph(
             document.getElementById("div_g"),
             NoisyData, {
-              zoomCallback : function(a,b,c,d) { showDimensions(a,b,c,d); },
+              zoomCallback : function(a,b,c,d) { showDimensions(a,b,c,d); }
             }
           );