Remove yAxisLabelWidth from Dygraph.axes_.
authorRobert Konigsberg <konigsberg@google.com>
Thu, 27 Dec 2012 00:36:41 +0000 (19:36 -0500)
committerRobert Konigsberg <konigsberg@google.com>
Thu, 27 Dec 2012 00:36:41 +0000 (19:36 -0500)
auto_tests/tests/to_dom_coords.js
dygraph.js

index 98da7c4..fb878ca 100644 (file)
@@ -121,3 +121,23 @@ ToDomCoordsTestCase.prototype.testChartWithAxesAndLabels = function() {
 
   this.checkForInverses(g);
 }
+
+ToDomCoordsTestCase.prototype.testYAxisLabelWidth = 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));
+
+  g.updateOptions({ yAxisLabelWidth: 50 });
+  assertEquals([50, 0], g.toDomCoords(0, 100));
+}
index 4cee311..e5ec566 100644 (file)
@@ -2459,7 +2459,6 @@ Dygraph.prototype.computeYAxes_ = function() {
   var axisOptions = [
     'valueRange',
     'pixelsPerYLabel',
-    'yAxisLabelWidth',
     'axisLabelFontSize',
     'axisTickSize'
   ];