holtzy / D3-graph-gallery

A collection of simple graphics made with D3.js
https://www.d3-graph-gallery.com
MIT License
789 stars 237 forks source link

tooltip d3.v6 example mouse position #62

Open sonseungbeom opened 2 years ago

sonseungbeom commented 2 years ago

https://www.d3-graph-gallery.com/graph/connectedscatter_tooltip.html

in the d3.v6 example.

const mousemove = function(event,d) { Tooltip .html("Exact value: " + d.value) .style("left", (event.x)/2 + "px") .style("top", (event.y)/2 + "px") }

(event.x)/2 and (event.y)/2 is not mouse mouse position. x position is d3.pointer(event)[0] + 70 y position is d3.pointer(event)[1]