Is there any way to auto set y axis padding without refresh chart (without call refresh event). Please have a look of below snippet in which y axis label cut off. if I set yaxis left padding and call refresh event after chart initialized then it works but in this case it blinks. I want to adjust y axis without blinking a chart
Hello!
There is no “auto” padding, and the option with width calculation will work through refresh() in any case. But to make y axis label not cut of, you can set padding through chart property, e.g.:
chart: {
padding: {
left: 150,
},
},
1 Like