Replies: 2 comments 5 replies
-
See https://www.chartjs.org/docs/latest/samples/tooltip/interactions.html |
Beta Was this translation helpful? Give feedback.
4 replies
-
I had the same problem then found this post. const chart = new Chart(ctx,
{
type: "line",
...
options: {
...
tooltips: { <<<
intersect: false <<<
} <<< I hope this helps. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello all! I have an existing area line chart, with multiple overlapping areas. My question is, is there a way to have a tooltip when the user hovers over any part of the whole area, rather than just the points?
After reading the documentation, and searching through the discussions and issues, I haven't been able to find any information on this. I've also played with the different interaction types, and none of them seem to do exactly what i want.
I'm thinking maybe a plugin might be the best solution to this? Does anyone have any other ideas?
Beta Was this translation helpful? Give feedback.
All reactions