Martynas Majeris

Results 280 comments of Martynas Majeris

I think what you're looking for is `autoGapCount`: https://www.amcharts.com/docs/v4/chart-types/xy-chart/#Gaps_over_missing_data_points

`autoGapCount` is a series' property, so you can set it for each series individually what you consider a "gap".

Not sure if I get the issue. Are you saying you don't want or can't to set `baseInterval` for your series?

So basically, what you're saying is that we should maintain `baseInterval` per-series not per-axis. Right?

It's clear. Since auto-gaps are calculated based on `DateAxis.baseInterval` when you have only 3600 series, it is 3600s - no gaps. When you add a series with more granular data,...

No, this was auto-closed. Sorry. I'll bring it back up, and promoted to enhancement request, so that it is not auto-closed.

Thank you for the suggestion. We do not have plans to add this functionality at this point, I'm afraid.

Excellent idea. We will most definitely consider this. Thanks!

Proper fix might take longer than coming few days. In the interim, you may use the following workaround: ```JavaScript const changeDate = () => { dateAxis.zoomToDates(new Date("10/10/2021"), new Date("11/10/2021")); scrollbarX.start...