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