[Chartjs]-How to set minimum value to Radar Chart in chart js

2👍

The radar chart is using the radial scale by default. So changing y to r will solve your issue:

options: {
    scales: {
        r: {
            min: 0,
            max: 15,
        },
    },
},

Leave a comment