
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
This tooltip aims for a minimal yet highly configurable API. It has a long way to go, but the essentials are there.
It was created by @romseguy and merged from romseguy/d3tooltip
.
npm install d3-state-visualizer
import * as d3 from 'd3';
import { tooltip } from 'd3tooltip';
const DOMNode = document.getElementById('chart');
const root = d3.select(DOMNode);
const vis = root.append('svg');
const options = {
offset: { left: 30, top: 10 },
styles: { 'min-width': '50px', 'border-radius': '5px' },
};
vis
.selectAll('circle')
.data(someData)
.enter()
.append('circle')
.attr('r', 10)
.call(
d3tooltip('tooltipClassName', {
...options,
text: (d) => toStringOrHtml(d),
}),
)
.on('mouseover', function () {
d3.select(this).style('fill', 'skyblue');
})
.on('mouseout', function () {
d3.select(this).style('fill', 'black');
});
Option | Type | Default | Description |
---|---|---|---|
root | DOM.Element | body | The tooltip will be added as a child of that element. You can also use a D3 selection. |
left | Number | undefined | Sets the tooltip x absolute position instead of the mouse x position, relative to the root element. |
top | Number | undefined | Sets the tooltip y absolute position instead of the mouse y position, relative to the root element. |
offset | Object | {left: 0, top: 0} | Sets the distance, starting from the cursor position, until the tooltip is rendered. Warning: only applicable if you don't provide a left or top option. |
styles | Object | {} | Sets the styles of the tooltip element. |
text | String or Function | '' | Sets the text of the tooltip. Can be a constant string or a function that takes the datum and returns a string . |
FAQs
A highly configurable tooltip for d3
The npm package d3tooltip receives a total of 5,617 weekly downloads. As such, d3tooltip popularity was classified as popular.
We found that d3tooltip demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.