From 73b0d587ba9060fcc6c2a6a6ef6ae42e223ee52a Mon Sep 17 00:00:00 2001 From: Leigh Quince Date: Wed, 20 May 2015 21:43:29 +0200 Subject: [PATCH] fix for radar chart ignoring datasetFill option --- src/Chart.Radar.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Chart.Radar.js b/src/Chart.Radar.js index 00da8f663..6d00eeb12 100644 --- a/src/Chart.Radar.js +++ b/src/Chart.Radar.js @@ -320,8 +320,9 @@ ctx.stroke(); ctx.fillStyle = dataset.fillColor; - ctx.fill(); - + if(this.options.datasetFill){ + ctx.fill(); + } //Now draw the points over the line //A little inefficient double looping, but better than the line //lagging behind the point positions -- 2.47.2