[Chartjs]-Chart.js v 2.0.1 line, scatter chart pointRadius bug or I'm doing it wrong

4πŸ‘

βœ…

It’ll work if you use radius

datasets: [
   {
       radius: 15,
       pointHoverRadius: 15,
       ...

Note – looking at the documentation (http://www.chartjs.org/docs) for other chart types (scatter type is not included in the documentation as at the time of writing this answer), this will probably be superseded by pointRadius (the comments for other chart types suggest that pointRadius is preferable and that radius works just because the code is currently backward compatible)


Fiddle : https://jsfiddle.net/9gerc01h/

Leave a comment