From d9ab36fadfa6a2136c9089c4b26bf09b7697f416 Mon Sep 17 00:00:00 2001
From: eichsjul <julian.eichstaedt@ch.sauter-bc.com>
Date: Fri, 12 Apr 2013 11:35:32 +0200
Subject: [PATCH] REFACTORING: use the method "getLeftBoundary" instead of a
 private variable

---
 dygraph-layout.js | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/dygraph-layout.js b/dygraph-layout.js
index 552911e..9e042f2 100644
--- a/dygraph-layout.js
+++ b/dygraph-layout.js
@@ -211,10 +211,7 @@ DygraphLayout.prototype._evaluateLineCharts = function() {
   // on chrome+linux, they are 6 times more expensive than iterating through the
   // points and drawing the lines. The brunt of the cost comes from allocating
   // the |point| structures.
-  var boundaryIdStart = 0;
-  if (this.dygraph_.boundaryIds_.length > 0) {
-    boundaryIdStart = this.dygraph_.boundaryIds_[this.dygraph_.boundaryIds_.length-1][0]
-  }
+  var boundaryIdStart = this.dygraph_.getLeftBoundary_();
   for (var setIdx = 0; setIdx < this.datasets.length; setIdx++) {
     var dataset = this.datasets[setIdx];
     var setName = this.setNames[setIdx];
-- 
2.7.4