nteract / semiotic

A data visualization framework combining React & D3
https://semioticv1.nteract.io/
Other
2.43k stars 132 forks source link

Transition tooltip position #614

Closed dgwyer closed 1 year ago

dgwyer commented 2 years ago

At the moment the tooltip position 'snaps' between locations when points are hovered over.

transition-tooltip-position

I've been trying to get this to transition via CSS without any success. Is there an way we can get this to work?

emeeks commented 1 year ago

You should be able to achieve this with some simple CSS:

.annotation-xy-label {
  transition-property: top, left;
  transition-duration: 0.25s;
}