From b0eb3ac6f4a9b9aab9f2c8fe470a759b54b9bad6 Mon Sep 17 00:00:00 2001 From: Kevin Wetzels Date: Fri, 21 Dec 2012 13:32:14 +0100 Subject: [PATCH] Define fill Although fill was used to determine the fill of the curved lines, it wasn't defined. --- curvedLines.js | 1 + 1 file changed, 1 insertion(+) diff --git a/curvedLines.js b/curvedLines.js index 249add2..8e38b22 100644 --- a/curvedLines.js +++ b/curvedLines.js @@ -121,6 +121,7 @@ ctx.lineJoin = "round"; ctx.strokeStyle = series.color; if (series.curvedLines.fill) { + var fill = series.curvedLines.fill; var fillColor = series.curvedLines.fillColor == null ? series.color : series.curvedLines.fillColor; var c = $.color.parse(fillColor); c.a = typeof fill == "number" ? fill : 0.4;