d3-flame-graph
Version:
A d3.js library to produce flame graphs.
94 lines (80 loc) • 2.25 kB
JavaScript
/* global event */
import { select } from 'd3-selection'
import 'd3-transition'
import 'd3-dispatch'
import 'd3-ease'
function defaultLabel (d) {
return d.data.name
}
export function defaultFlamegraphTooltip () {
var rootElement = select('body')
var tooltip = null
// Function to get HTML content from data.
var html = defaultLabel
// Function to get text content from data.
var text = defaultLabel
// Whether to use d3's .html() to set content, otherwise use .text().
var contentIsHTML = false
function tip () {
tooltip = rootElement
.append('div')
.style('display', 'none')
.style('position', 'absolute')
.style('opacity', 0)
.style('pointer-events', 'none')
.attr('class', 'd3-flame-graph-tip')
}
tip.show = function (d) {
tooltip
.style('display', 'block')
.style('left', event.pageX + 5 + 'px')
.style('top', event.pageY + 5 + 'px')
.transition()
.duration(200)
.style('opacity', 1)
.style('pointer-events', 'all')
if (contentIsHTML) {
tooltip.html(html(d))
} else {
tooltip.text(text(d))
}
return tip
}
tip.hide = function () {
tooltip
.style('display', 'none')
.transition()
.duration(200)
.style('opacity', 0)
.style('pointer-events', 'none')
return tip
}
/**
* Gets/sets a function converting the d3 data into the tooltip's textContent.
*
* Cannot be combined with tip.html().
*/
tip.text = function (_) {
if (!arguments.length) return text
text = _
contentIsHTML = false
return tip
}
/**
* Gets/sets a function converting the d3 data into the tooltip's innerHTML.
*
* Cannot be combined with tip.text().
*
* @deprecated prefer tip.text().
*/
tip.html = function (_) {
if (!arguments.length) return html
html = _
contentIsHTML = true
return tip
}
tip.destroy = function () {
tooltip.remove()
}
return tip
}