Commit b2fedcd8 authored by Ole Laursen's avatar Ole Laursen

Fix recently introduced bug in pie plugin pointed out by Chris R. Patterson

parent 431a603b
......@@ -682,7 +682,7 @@ More detail and specific examples can be found in the included HTML file.
function drawHighlight(series)
{
if (series.angle <= 0 || isNaN(angle))
if (series.angle <= 0 || isNaN(series.angle))
return;
//octx.fillStyle = parseColor(options.series.pie.highlight.color).scale(null, null, null, options.series.pie.highlight.opacity).toString();
......
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