Hello to everyone,
does anyone know of a way to set the number formatting on a log axis to avoid this issue?
It seems the chart does only accept a small subset of the Chart.js configuration options.
yAxes: [{
type: 'logarithmic',
ticks: {
max: 1e-3,
min: 1e-6,
}
}]
I found some suggestions to use a callback to format the values, but that doesn't seem to have any effect either.
Regards