redux-devtools/packages/d3tooltip
Nathan Bierema 5ef9b00cd4 Publish
- d3-state-visualizer@1.4.0
 - d3tooltip@1.3.0
 - devui@1.0.0-7
 - map2tree@1.5.0
 - react-json-tree@0.14.0
 - @redux-devtools/app@1.0.0-5
 - @redux-devtools/chart-monitor@1.8.0
 - @redux-devtools/cli@1.0.0-5
 - @redux-devtools/dock-monitor@1.3.0
 - redux-devtools-extension@2.13.9
 - @redux-devtools/inspector-monitor-test-tab@0.6.3
 - @redux-devtools/inspector-monitor-trace-tab@0.1.4
 - @redux-devtools/inspector-monitor@0.14.1
 - @redux-devtools/instrument@1.11.0
 - @redux-devtools/log-monitor@2.2.0
 - @redux-devtools/serialize@0.3.0
 - @redux-devtools/slider-monitor@2.0.0-6
 - @redux-devtools/utils@1.0.0-5
 - @redux-devtools/core@3.8.0
 - d3-state-visualizer-tree-example@0.1.0
 - react-json-tree-example@1.1.1
 - slider-todomvc@0.1.0
 - counter-redux@0.1.1
 - todomvc@0.2.0
2021-03-06 08:57:19 -05:00
..
src feat(d3-state-visualizer): convert to TypeScript (#640) 2020-09-20 19:05:37 -04:00
.babelrc feat(d3tooltip): convert to TypeScript (#639) 2020-09-20 14:21:59 -04:00
.eslintignore feat(d3tooltip): convert to TypeScript (#639) 2020-09-20 14:21:59 -04:00
.eslintrc.js feat(d3tooltip): convert to TypeScript (#639) 2020-09-20 14:21:59 -04:00
CHANGELOG.md Publish 2021-03-06 08:57:19 -05:00
LICENSE.md Merge d3tooltip package (#423) 2018-12-19 15:16:11 +02:00
package.json Publish 2021-03-06 08:57:19 -05:00
README.md Use prettier 2019-01-10 20:51:14 +02:00
tsconfig.json feat(d3tooltip): convert to TypeScript (#639) 2020-09-20 14:21:59 -04:00
tsconfig.webpack.json feat(d3tooltip): convert to TypeScript (#639) 2020-09-20 14:21:59 -04:00
webpack.config.umd.ts feat(d3-state-visualizer): convert to TypeScript (#640) 2020-09-20 19:05:37 -04:00

d3tooltip

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.

Installation

npm install d3-state-visualizer

Quick usage

import d3 from 'd3';
import d3tooltip from 'd3tooltip';

const DOMNode = document.getElementById('chart');
const root = d3.select(DOMNode);
const vis = root.append('svg');

let options = {
  offset: {left: 30, top: 10}
};

vis.selectAll('circle').data(someData).enter()
  .append('circle')
  .attr('r', 10)
  .call(
    d3tooltip(d3, 'tooltipClassName', options)
      .text((d, i) => toStringOrHtml(d))
      .attr({ 'class': 'anotherClassName' })
      .style({ 'min-width': '50px', 'border-radius: 5px' })
  )
  .on({
    mouseover(d, i) {
      d3.select(this).style({
        fill: 'skyblue'
      });
    },
    mouseout(d, i) {
      d3.select(this).style({
        fill: 'black'
      });
    }
  });

API

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