You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I’m using v-tooltip for a data visualisation where every dot in a svg graphic has a tooltip. I’m using code similar to this:
<template>
<g>
<circlev-for="dot in points"v-tooltip="dot.tooltip" />
</g>
</template>
It is working but the tooltip is recreated for every dot. Especially when quickly hovering items after each other this results in flickering.
I was wondering if multiple items could share a single tooltip that changes position and content.
This discussion was converted from issue #277 on December 30, 2020 21:22.
Heading
Bold
Italic
Quote
Code
Link
Numbered list
Unordered list
Task list
Attach files
Mention
Reference
Menu
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I’m using v-tooltip for a data visualisation where every dot in a svg graphic has a tooltip. I’m using code similar to this:
It is working but the tooltip is recreated for every dot. Especially when quickly hovering items after each other this results in flickering.
I was wondering if multiple items could share a single tooltip that changes position and content.
You can find a working example here: https://tci-scatterplot.netlify.com/
Beta Was this translation helpful? Give feedback.
All reactions