[Chartjs]-Chartjs v. 3.7.1 Zoom out not working after zooming in too much

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"]

Leave a comment