-
Notifications
You must be signed in to change notification settings - Fork 320
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Series with different intervals and 'series.connect=false' causes larger interval series to be hidden #1192
Comments
I think what you're looking for is https://www.amcharts.com/docs/v4/chart-types/xy-chart/#Gaps_over_missing_data_points |
No its a bug, each series should be treated distinctly when it comes to joining datapoints. |
|
Hi @martynasma I think the root issue is that I think the change is to:
I do have a use case for COV (Change of Value) Time Series in future, but right now my series is aligned to a fixed interval and I know it AOT |
Not sure if I get the issue. Are you saying you don't want or can't to set |
@martynasma This should illustrate the issue https://stackblitz.com/edit/amcharts4-issue-1192 Note I added bullets so you can see the 3600sec interval datapoints when zooming in Semi-related #321 |
So basically, what you're saying is that we should maintain |
I'm not sure of the implementation, to me Is the stackblitz example clear? When you add the 3600s series after the 900s series, it doesn't appear i.e. 100% gaps |
It's clear. Since auto-gaps are calculated based on When you add a series with more granular data, We'll need to discuss this if we can implement it without significant overhead. |
Hi @martynasma do you have a plan to resolve this issue yet? |
Not yet, sorry. |
@martynasma are you saying this is fixed? |
No, this was auto-closed. Sorry. I'll bring it back up, and promoted to enhancement request, so that it is not auto-closed. |
I think it should be pretty clear whats going on here, I my case I'm comparing 60sec Vs 900sec interval data, so there is only a prop for the 900 series every 15 elements of data array, so I guess with
series.connect = false
the interpolation algorithm treats every edge as a gap.Would it be helpful in terms of performance to set the expected interval on each series?
The text was updated successfully, but these errors were encountered: