Is there a way to access the link inside react-tooltip on hover?

1k Views Asked by At

Im using react-simple-maps with react-tooltip Looks like the hover works fine, but I try to click on a link I've added on the tooltip but before I can get to the tooltip, it disappears and I can't access the content with my mouse.

is this possible?

1

There are 1 best solutions below

2
On

Depending on what your implementation specifically looks like, I think the delayHide property is what you're looking for. It defines the delay after the hover event ends until the tooltip disappears, in milliseconds.

<ReactTooltip delayHide={1000} />