lib/d3-tip-0.6.7/docs/showing-and-hiding-tooltips.md

API Documentation ➤ Showing and hiding tooltips

Showing and hiding tooltips

tip.show

Show a tooltip on the screen.

rect.on('mouseover', tip.show)
rect.on('mouseover', function(d) {
  tip.show(d)
})

Explicit targets

Sometimes you need to manually specify a target to act on. For instance, maybe you want the tooltip to appear over a different element than the one that triggered a mouseover event. You can specify an explicit target by passing an SVGElement as the last argument.

tip.show(data, target)

tip.hide

Hide a tooltip

rect.on('mouseout', tip.hide)
rect.on('mouseout', function(d) {
  tip.hide(d)
})


ubitech/Physiognomica documentation built on Jan. 21, 2020, 9:26 a.m.