score:3

Accepted answer

it looks to me like you're not setting properly the pointcolor property on your datasets.

for each of your datasets, just set pointcolor to the same value as strokecolor.

something like, in the first dataset :

    strokecolor: "rgba(1,220,1,1)",
    pointcolor: "rgba(1,220,1,1)",

and in the second dataset :

    strokecolor: "rgba(220,1,1,1)",
    pointcolor: "rgba(220,1,1,1)",

and so on...

here's a jsfiddle to illustrate the point : http://jsfiddle.net/rdtome/aa2j9rut/.


Related Query

More Query from same tag