Close

D3.js Mouse Events

D3.js is fast becoming the default standard in data visualisation libraries. In this short tutorial I’ll discuss mouse events and how you can subscribe and use these events in D3. This is not a complicated tutorial so review the text and use the code provided to expand your own D3.js visualisations.

If you haven’t already downloaded and installed Stator, please do. We provide you with a complete visualisation IDE (development environment) you can use to run the following code.

The mouse events I’ll be discussing in this tutorial are:

  • mousedown
  • mouseup
  • click
  • dblclick
  • mouseover
  • mouseout
  • mouseenter
  • mouseleave

mousedown, mouseup, click

I’ve grouped these three events together as they’re very closely related. These three events are raised when a graphic element is clicked using the mouse and the order which they get raised is very specific as indicated below:

Action: Graphical element clicked

  • mousedown, user depresses the mouse button on the element
  • mouseup, user releases the mouse button on the element
  • click, one mousedown and one mouseup detected on the element

Let’s write a little D3 code to prove the execution order:

 

 

This code snippet draws a 100x100px green square on the canvas at position 10,10. The code registers the mousedown, mouseup and click events to the square so that when it’s clicked using the mouse each event will fire. Each event, when raised (triggered) will output text to the console which will give us an indication of the execution order.

Here’s the console output after the square has been clicked:

 

Console Output

 

Notice the order of the events from top to bottom?

As a general rule of thumb the mousedown and mouseup events are more useful than click. Take the following situation- when a user depresses the mouse button (clicks) over a graphical element and then moves the mouse cursor off the element and releases. The element will have only registered the mousedown event, the converse being true if a user moves over an element and releases an already depressed mouse button. In both of these cases the click event does not get triggered.

dblclick

I don’t often use the dblclick (double-click) event. It gets raised when the mouse button is clicked twice in rapid succession and because click events are also raised during a double-click, it’s advisable to keep click and dblclick events separate, i.e. don’t register both for the same graphical element.

mouseover, mouseout

These mouse events are rather self-explanatory however there’s something important to note that makes them different to mouseenter and mouseleave which is discussed in the next topic. The mouseover event is raised when the mouse cursor is moved over an element while the mouseout event is raised when the mouse cursor is moved off an element.

Seems pretty straightforward so far so let’s have a closer look using D3 code:

 

 

You might notice that I’ve used a different method to register the mouse events. Instead of calling a separate method I’ve written the event function directly inline. There isn’t a preferred way when registering methods however if you wish to reuse the same event on multiple elements you’re best to write a separate method/function.

The code shown above will generate the following output:

 

Green Square

 

As you move the mouse over both elements you’ll notice a red border appearing and disappearing. The mouseover event, when raised will create a red border whilst the mouseout event removes the red border. Do you notice how the red border disappears from the green square when you move onto the yellow square? Ask yourself, have I really left the green square? The yellow square resides within its boundaries so there’s conjecture if the mouseout event should be raised whilst theoretically, still being within the boundaries of the green square.

This is called event bubbling.

Luckily, if this side-effect isn’t something you want in your visualisation you can make use of the mouseenter and mouseleave events which are discussed in the next topic. Read on!

mouseenter, mouseleave

Again, here’s a fun snippet of code to illustrate the mouseenter and mouseleave events:

 

 

This code snippet draws a 100x100px green square on the canvas at position 10,10. I’ve registered the mouseenter and mouseleave events to change the colour of the square which will indicate at which point the event is being raised. Try the code for yourself and see!

The mouseenter and mouseleave events are almost identical to mouseover and mouseout with the only exception they don’t react to event bubbling. This means they see the entire HTML element as one complete block, they don’t react to mouseover or mouseout events being raised within the block. Mouseover and mouseout events make it easy to identify when a mouse has entered a group of elements as they will only get raised when the mouse enters or leaves the parent.

Conclusion

In this tutorial you’ve been introduced to numerous mouse events which you can use in D3 visualisations. Mouse events are raised/triggered as a result of different user interactions. It is advisable to become familiar with the different mouse events available and their intended usage so that you can add an extra dimension to your data visualisations.

… And in closing- good luck with your visualisations!