Reverse tick order

528 Views Asked by At

With radar charts is it possible to have the order be reversed? For example have 10 being closest to the center and 1 being furthest away from the center for values that are 1 through 10?

1

There are 1 best solutions below

0
Anthony Yu On

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.