Skip to content
Advertisement

How to detect closest rect below a pointer on a bar chart in D3?

I created a bar chart using D3, but I want that when my pointer is above a rect to detect that rect and change its color for example:

enter image description here

Because my pointer is above this third rect from the right, that one would be selected. Is there a way to achive this?

Here is my current code:

JavaScript

When I add “mousemove” event to “rects” element it only detects when I am directly hovering on rect but not when I am above it.

Advertisement

Answer

One approach is to draw two rects – one that fills up the entire graphHeight and has no fill (making sure to set pointer-events to all) and then draw your original rect. This ‘background’ rect can then respond to mouse events and you can select the ‘foreground’ rect and change a property etc. I’ve used ids based on index to facilitate the selection.

To make this work you need a contained for each pair of rects (foreground and background) and then you can handle the events for mouse events differently (or the same if you like) depending if the mouse is over the rect or on it:

JavaScript

See below based on your original code, but with some dummy data:

JavaScript
JavaScript
Advertisement