[Chartjs]-Old yAxis ticks do not get removed (chartjs, react-chartjs-2 wrapper)

1👍

Instead of setting display: true set display: 'auto', this will make the axis dissapear as long as there is no dataset visable that is linked to that scale, as soon as a dataset becomes visable that is linked to that scale it will show the scale again.

Doc: https://www.chartjs.org/docs/master/axes/cartesian/#common-options-to-all-axes

Leave a comment