Why tip.show works but tip.hide doesn't?

pen: [ http://codepen.io/ustvarno/pen/bZLbpA?editors=0110 ]
line: 84-85

*i had issue with tip lib, it doesn’t work with last version of d3, it throws msg something like undefined t.functor that is occured in d3.tip lib

It appears that “opacity: 0.9 !important;” in your css is causing the issue. Removing the !important allows tip.show and tip.hide to work as expected.

1 Like

changing to:

  background: rgba(51, 132, 145, 0.8);

work