Commit b0eb3ac6 authored by Kevin Wetzels's avatar Kevin Wetzels

Define fill

Although fill was used to determine the fill of the curved lines, it wasn't defined.
parent bef80155
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment