Chartjs-Reverse tick order

0👍

To reverse the radar chart as you described:

type: 'radar',
data: {...},
options: {
    scale: {
        ticks: {
            reverse: true,
            beginAtZero: false,
            min: 1
        }
    }
}

Refer to the doc Styling and Linear Radial Axis.

Leave a comment