From 2814c8e44c0fa545c3b8f49c2e7aa2a5dfdf932f Mon Sep 17 00:00:00 2001 From: Evert Timberg Date: Sat, 2 May 2015 14:56:16 -0400 Subject: [PATCH] Remove Math.sign --- src/Chart.Bar.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Chart.Bar.js b/src/Chart.Bar.js index 7147c1553..8f6651e2c 100644 --- a/src/Chart.Bar.js +++ b/src/Chart.Bar.js @@ -146,11 +146,11 @@ calculateBarBase: function() { var base = this.scale.endPoint; - if (this.scale.beginAtZero || Math.sign(this.scale.min) != Math.sign(this.scale.max)) + 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); } - else if (Math.sign(this.scale.min) < 0 && Math.sign(this.scale.max) < 0) + else if (this.scale.min < 0 && this.scale.max < 0) { // All values are negative. Use the top as the base base = this.scale.startPoint;