Chartjs-React-chartjs: difference between `scales.x`/`xAxes`/`xAxes[]`

0👍

options.scales.xAxes: [{}] is V2 syntax, here all the x axes are grouped in a single array, same for all the y axes.

In v3 all the scales are their own object within the scales object where the key of the object is your scale ID.

by default you should use options.scales.x to configure the default x axis. But to make things a bit easyer chart.js looks at the fist letter of the object to determine its type so if you pass options.scales.xAxes it should result in the same if you dont have any other scales configured

Leave a comment