From 2d4e2f9889842358316dc407223fc404c8184f5d Mon Sep 17 00:00:00 2001 From: Evert Timberg Date: Mon, 18 Jan 2016 21:35:35 -0500 Subject: [PATCH] Properly begin path before drawing line at edge of scale --- src/core/core.scale.js | 1 + test/scale.linear.tests.js | 15 +++++++++++++++ 2 files changed, 16 insertions(+) diff --git a/src/core/core.scale.js b/src/core/core.scale.js index e02e5157b..721ea1f3a 100644 --- a/src/core/core.scale.js +++ b/src/core/core.scale.js @@ -661,6 +661,7 @@ x2 += helpers.aliasPixel(this.ctx.lineWidth); } + this.ctx.beginPath(); this.ctx.moveTo(x1, y1); this.ctx.lineTo(x2, y2); this.ctx.stroke(); diff --git a/test/scale.linear.tests.js b/test/scale.linear.tests.js index 2d2cdb3dd..9f093ce68 100644 --- a/test/scale.linear.tests.js +++ b/test/scale.linear.tests.js @@ -1026,6 +1026,9 @@ describe('Linear Scale', function() { }, { "name": "setStrokeStyle", "args": ["rgba(0, 0, 0, 0.1)"] + }, { + "name": "beginPath", + "args": [] }, { "name": "moveTo", "args": [0, 100.5] @@ -1099,6 +1102,9 @@ describe('Linear Scale', function() { }, { "name": "setStrokeStyle", "args": ["rgba(0, 0, 0, 0.1)"] + }, { + "name": "beginPath", + "args": [] }, { "name": "moveTo", "args": [0, 100.5] @@ -1558,6 +1564,9 @@ describe('Linear Scale', function() { }, { "name": "setStrokeStyle", "args": ["rgba(0, 0, 0, 0.1)"] + }, { + "name": "beginPath", + "args": [] }, { "name": "moveTo", "args": [30.5, 0] @@ -1689,6 +1698,9 @@ describe('Linear Scale', function() { }, { "name": "setStrokeStyle", "args": ["rgba(0, 0, 0, 0.1)"] + }, { + "name": "beginPath", + "args": [] }, { "name": "moveTo", "args": [30.5, 0] @@ -1946,6 +1958,9 @@ describe('Linear Scale', function() { }, { "name": "setStrokeStyle", "args": ["rgba(0, 0, 0, 0.1)"] + }, { + "name": "beginPath", + "args": [] }, { "name": "moveTo", "args": [30.5, 0]