I'm looking for examples how to format the (number) ticks in Chartjs 3.6.0 and up.
My graph uses the default configuration, hence 20.600 and in another graph 1,050.0
How to change that into resp 20.6 and 1050.0 ?
yAxis1: {
type: "linear",
position: "left",
ticks: {
beginAtZero: false
} // ticks
},
yAxis2: {
type: "linear",
position: "right",
ticks: {
suggestedMin: 975, // minimum will be 950, unless there is a lower value.
suggestedMax: 1025 // maximum will be 1050, unless there is a lower value.
} // ticks
}, ```