Reputation: 1145
Hi I have one axis and multiple series inside it.I want to setInterval Y axis for max Y value and min Y value.
My question is can I setInterval for series instead of axis ? Because one of my series is from 50 to 100 and another is 200 to 500... sometimes min max is set in axis wrongly.
If I cannot setInterval for series, how do I get all the series inside axis so I will process min , max manually.
something like below , but for axis
chart.getSeries().forEach(series => {
});
Upvotes: 0
Views: 125
Reputation: 2582
Axis interval is configured on Axis, not Series.
You said you only have one Axis, which would mean that all your series are inside the same axis - why do you want to get all the series inside some axis? All series are created in application code, so you should be able to keep references to all of them, and make a list if you need.
Upvotes: 1