fix for radar chart ignoring datasetFill option

This commit is contained in:
Leigh Quince 2015-05-20 21:43:29 +02:00
parent 2ce4291e98
commit 73b0d587ba

View File

@ -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