From e13ada2b431a8bbc4f10a2c1704c5e07b3b0aa62 Mon Sep 17 00:00:00 2001 From: Evert Timberg Date: Sat, 2 May 2015 15:03:40 -0400 Subject: [PATCH] Ensure that the bar draws to the correct spot --- src/Chart.Bar.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Chart.Bar.js b/src/Chart.Bar.js index 73ac93ef9..e911cb500 100644 --- a/src/Chart.Bar.js +++ b/src/Chart.Bar.js @@ -149,6 +149,7 @@ if (this.scale.beginAtZero || ((this.scale.min <= 0 && this.scale.max >= 0) || (this.scale.min >= 0 && this.scale.max <= 0))) { base = this.scale.calculateY(0); + base += this.options.scaleGridLineWidth; } else if (this.scale.min < 0 && this.scale.max < 0) {