I have a couple of Highcharts charts on my web application. It's a Laravel and Vue.js application (built on the top of Laravel Spark). I am using Highcharts 6.1.1 and vue2-highcharts (uperman66/vue-highcharts).
When I resize the width of the browser (a practical case is changing orientation on a mobile device), I see that the height of the chart keeps on increasing. And, I guess as a result of which, Highcharts keeps decreasing tickInterval
(which was not set - default value) of yAxis
.
Here is how it looks when the page loads:
But after resizing the width:
Well, the chart was too high to take one screenshot.
I tried to reproduce the error in CodeSandbox, it is working fine there. Any idea why is it happening like this?