1👍
Just had the same problem.
https://github.com/chartjs/chartjs-plugin-zoom/issues/696
Possible solution:
Don’t use numbers as labels, use String versions of them
by using .toString()
on items of the array.
[1, 2, 3] -> ["1", "2", "3"]
Source:stackexchange.com