Merge pull request #1127 from leighquince/fix/radar-datasetfill-option

fix for radar chart ignoring datasetFill option
This commit is contained in:
Evert Timberg
2015-05-20 17:54:17 -04:00

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