-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
tooltip.enabledOnSeries doesn't work as expected in irregular timeseries line charts #1339
tooltip.enabledOnSeries doesn't work as expected in irregular timeseries line charts #1339
Comments
@junedchhipa Is there any solution for this issue? I'm having the same problem: https://codepen.io/guille_pt/pen/vYNXpbL |
Same problem still exists. In my case it's not |
Same here |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
@junedchhipa this is still replicated for many including us in latest version. can the issue be re-opened? (and hopefully fixed). thanks |
Just want to chime in, this is currently broken (still or again) for multicharts. |
Still broken |
No fix for this? Having the same issue |
I am annoyed at this as well |
push (working with apexcharts react) |
Any update on this? |
bump |
Same here @junedchhipa |
Same here. Any plans on fixing this? |
bump |
1 similar comment
bump |
This bug still exists, the issue needs to be reopened. |
So is this a issue that is still not resolved 4 years later ? |
As this issue is not being reopened, I have created a new one: |
@junedchhipa thanks for reopening! Another reproduction link as mentioned in this issue still works: |
@brianlagunas the requested reproduction link posted above |
Bug report
I have found some inconsistent
tooltip.enabledOnSeries
behavior in irregular timeseries line charts.Codepen
Minimal working example:
https://codesandbox.io/s/vue-basic-example-0ibes?fontsize=14&hidenavigation=1&theme=dark
Explanation
When using
tooltip.enabledOnSeries
I expect tooltips to be enabled on the series that have the corresponding indices, as specified in the docs. Right now I can't get it to work in my chart, which is a timeline line chart with different time ranges.Example values of
enabledOnSeries
in the Codepen example, and what happens:enabledOnSeries: []
: tooltips disabled for all seriesenabledOnSeries: [0]
: tooltips enabled for all seriesenabledOnSeries: [1]
: tooltips disabled for all seriesenabledOnSeries: [0, 1]
: tooltips enabled for all seriesenabledOnSeries: [1, 2]
: tooltips disabled for all seriesThe key element seems to be if series 0 is included or not, in which case all series get tooltips.
The text was updated successfully, but these errors were encountered: