Add test for axisTickSize. Fill out test for yAxisLabelWidth. axisTickSize is no...
authorRobert Konigsberg <konigsberg@google.com>
Thu, 27 Dec 2012 15:58:58 +0000 (10:58 -0500)
committerRobert Konigsberg <konigsberg@google.com>
Thu, 27 Dec 2012 15:58:58 +0000 (10:58 -0500)
auto_tests/tests/to_dom_coords.js
dygraph.js

index fb878ca..3def1ef 100644 (file)
@@ -130,14 +130,38 @@ ToDomCoordsTestCase.prototype.testYAxisLabelWidth = function() {
     valueRange: [0, 100],
     dateWindow: [0, 100],
     width: 500,
-    height: 500,
+    height: 500
   }
 
   var graph = document.getElementById("graph");
   g = new Dygraph(graph, [ [0,0], [100,100] ], opts);
 
   assertEquals([100, 0], g.toDomCoords(0, 100));
+  assertEquals([500, 486], g.toDomCoords(100, 0));
 
   g.updateOptions({ yAxisLabelWidth: 50 });
   assertEquals([50, 0], g.toDomCoords(0, 100));
+  assertEquals([500, 486], g.toDomCoords(100, 0));
+}
+
+ToDomCoordsTestCase.prototype.testAxisTickSize = function() {
+  var opts = {
+    yAxisLabelWidth: 100,
+    axisTickSize: 0,
+    rightGap: 0,
+    valueRange: [0, 100],
+    dateWindow: [0, 100],
+    width: 500,
+    height: 500
+  }
+
+  var graph = document.getElementById("graph");
+  g = new Dygraph(graph, [ [0,0], [100,100] ], opts);
+
+  assertEquals([100, 0], g.toDomCoords(0, 100));
+  assertEquals([500, 486], g.toDomCoords(100, 0));
+
+  g.updateOptions({ axisTickSize : 50 });
+  assertEquals([200, 0], g.toDomCoords(0, 100));
+  assertEquals([500, 386], g.toDomCoords(100, 0));
 }
index e5ec566..2bccd60 100644 (file)
@@ -2460,7 +2460,6 @@ Dygraph.prototype.computeYAxes_ = function() {
     'valueRange',
     'pixelsPerYLabel',
     'axisLabelFontSize',
-    'axisTickSize'
   ];
 
   // Copy global axis options over to the first axis.