nagix / chartjs-plugin-colorschemes

Predefined color schemes for Chart.js
MIT License
263 stars 58 forks source link

Scatter Chart Colors #2

Closed xyrph closed 5 years ago

xyrph commented 5 years ago

Nice plugin. It seems to work well for the POINTS on my scatter charts, but the lines between the points are left as the default gray color that comes with chartjs.

How can I fix this problem?

xyrph commented 5 years ago

I fixed this by adding

case 'scatter':

to your switch() statement. You just forgot to include the 'scatter' chart type.

nagix commented 5 years ago

Thank you for reporting the issue. 4d3aaa2 fixed this.