0

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 Answers1

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.

Anthony Yu
  • 26
  • 3