From c71ff89afe1adc6303ad505712b4411217fd9f8c Mon Sep 17 00:00:00 2001 From: Dan Vanderkam Date: Tue, 21 Oct 2014 22:33:02 -0400 Subject: [PATCH] rv changes to dygraph-layout.js --- dygraph-layout.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dygraph-layout.js b/dygraph-layout.js index 41ec54e..befffd6 100644 --- a/dygraph-layout.js +++ b/dygraph-layout.js @@ -281,7 +281,7 @@ DygraphLayout.prototype._evaluateLineTicks = function() { tick = this.xTicks_[i]; label = tick.label; pos = this.dygraph_.toPercentXCoord(tick.v); - if ((pos >= 0.0) && (pos <= 1.0)) { + if ((pos >= 0.0) && (pos < 1.0)) { this.xticks.push([pos, label]); } } -- 2.7.4