mirror of
				https://github.com/reduxjs/redux-devtools.git
				synced 2025-10-30 23:47:35 +03:00 
			
		
		
		
	| - remotedev-redux-devtools-extension@3.0.1 - d3-state-visualizer@1.5.0 - d3tooltip@2.0.0 - map2tree@2.0.0 - react-base16-styling@0.9.0 - react-dock@0.5.0 - react-json-tree@0.16.0 - @redux-devtools/app@2.0.0 - @redux-devtools/chart-monitor@2.0.0 - @redux-devtools/cli@1.0.1 - @redux-devtools/dock-monitor@2.0.0 - @redux-devtools/extension@3.1.0 - @redux-devtools/inspector-monitor-test-tab@0.8.0 - @redux-devtools/inspector-monitor-trace-tab@0.3.0 - @redux-devtools/inspector-monitor@2.0.0 - @redux-devtools/instrument@2.0.0 - @redux-devtools/log-monitor@3.0.0 - @redux-devtools/remote@0.7.0 - @redux-devtools/rtk-query-monitor@2.0.0 - @redux-devtools/serialize@0.4.0 - @redux-devtools/slider-monitor@3.0.0 - @redux-devtools/ui@1.1.0 - @redux-devtools/utils@1.1.0 - @redux-devtools/core@3.10.0 - d3-state-visualizer-tree-example@0.1.3 - react-dock-demo@0.1.3 - react-json-tree-example@1.1.5 - test-demo@0.1.3 - inspector-demo@0.1.3 - rtk-query-demo@0.1.3 - slider-todomvc@0.1.5 - counter-redux@0.1.5 - todomvc@0.2.4 | ||
|---|---|---|
| .. | ||
| src | ||
| .babelrc | ||
| .eslintignore | ||
| .eslintrc.js | ||
| CHANGELOG.md | ||
| LICENSE.md | ||
| package.json | ||
| README.md | ||
| rollup.config.js | ||
| tsconfig.json | ||
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 { tooltip } 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 xabsolute position instead of the mousexposition, relative to therootelement | 
| top | Number | undefined | Sets the tooltip yabsolute position instead of the mouseyposition, relative to therootelement | 
| 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 leftortopoption |