Chartjs-How do you create a Radar chart using chart.js with a y-axis of 0 to 100?

3๐Ÿ‘

โœ…

I tested this on 2.2.1, no sure if they had Min/Max for your version.

ticks: {
   max:100, // Set it to your Max value
   min: 0, // You can also change the Min
   beginAtZero: false, // in case you change the Min
}, // etc 

Docs: tick configuration
Codepen: Chart.js Radar Chart

Leave a comment