Interactive graph visualization: 4 easy styling options

When you look at an interactive graph visualization for the first time it can be a little intimidating, no matter how tech-savvy you are.

The best way to get new users comfortable with a graph is to make every touch point look and feel familiar. Design an interactive graph visualization app with cues that are used as standard across the web already, and analysts will find the experience intuitive right away.

The next version of ReGraph, our interactive graph visualization toolkit for React developers, includes a new event type that makes it easier to style every hover and select action to match your users’ expectations.

Revealing neighbors in an interactive graph visualization using node selection
Revealing neighbors through node selection: one of the interactions made easier in the latest version of ReGraph

In this blog post, we look at 4 ways your users will benefit from ReGraph’s new event type, and how it works under the hood. Our focus is on a graph visualization product built to detect fraud at a financial institution, but the key recommendations apply to every one of our use cases.

We’ll also look at what’s new in the latest releases of our data visualization toolkits.

Why design an interactive graph visualization?

Why graph visualization?” is a question we’ve addressed many times. By visualizing complex data, users can reveal the unexpected connections and hidden patterns your business needs to understand.

A sensible follow-up question is: “why interactive graph visualization?”. The alternative is a static diagram that might look great but doesn’t give users the tools they need to interrogate the data dynamically to reveal threats and uncover insight. There has to be a two-way flow of information between the graph visualization app and the user. The interactive element is key.

The importance of visual cues

For any app-based design project to succeed, you need to make it easy for users to discover what features are available. And the more natural the discoverability is, the quicker they learn how to use it. [For more on this, here’s a useful article from the Interaction Design Foundation.]

Most interactive graph visualizations are driven by hovers, selections and drags. But how does the user know that clicking on a particular thing will do something?

If you want users to feel comfortable using a graph visualization, you need intuitive visual cues to encourage them to explore the graph.

Let’s check out some simple examples.

Interactive graph visualization tip 1. Clever styling on hover

Our anti-fraud use case focuses on a recent rise in customers reporting bogus text messages claiming to be from their bank.

Here’s our analyst connecting individual customers to phone numbers from which scam text messages were sent.

The glyph + decoration at the top right of each node offers a useful visual cue: as you drag from one node to another, the node and glyph’s opacity increases while the link is drawn. It’s a very subtle change but it’s enough to reassure the user that they’re in the process of successfully creating a link.

Interactive graph visualization tip 2. Customize selection behaviors

Once you’ve convinced the user to click on something, what happens next?

A selected green node from an interactive graph visualization

In ReGraph, clicking on a node, selects that node. This is a useful property to help users keep track of an item of interest in the graph, but it can also drive additional behaviors.

Default styling in ReGraph highlights a selected node with a red border and emphasizes the label in a similar way.

With the new feature, it’ll be easier than ever to provide custom styling to selected items.

Continuing with our anti-fraud example, the customer and telephone number nodes have very different styles so they’re easy to distinguish. We can maintain those differences in our interactive graph visualization when we select items too.

The ultimate guide to graph visualization

The ultimate guide to graph visualization

Everything you need to start designing your best graph visualization application.

Download the guide

Interactive graph visualization tip 3. Intuitive menu options

Traditional text-based menus can look clumsy and inelegant in an interactive graph visualization. They may clutter the chart and cause unnecessary distraction.

A cleaner, more intuitive solution is to reveal menus as donuts when a user selects a node. With each donut segment representing a different menu option, it’s a stylish way to add powerful, easily-discoverable functionality.

Here, our simple donut menu gives users three options – bring in additional customer nodes of interest from the backend, mark suspicious SMSs for further investigation, or delete nodes that are no longer relevant. The carefully chosen icons that represent each option are instantly recognizable.

Interactive graph visualization tip 4: Powerful analytical capabilities

We don’t have to stop at styling just the node that has been selected. You can easily do more complex things like style its neighbors – those other nodes that are linked to your selection. In this way, we’re going far beyond providing users with a few helpful visual cues: we’re surfacing analytical capabilities.

In complex interactive graph visualizations, revealing neighbors helps to highlight the key connections worth investigating further. For our anti-fraud use case, perhaps analysts want to see the chain of events that caused customers tricked by the text message fraudsters to add sensitive data to a phishing web form.

How hover & selection styling works under the hood

ReGraph is designed for React, so it relies on a component-based state model. The good news for your app developers is that they don’t need to keep track of styling as part of the state. That’s because, in the next ReGraph version, we’ve abstracted hover and selection styles to a new chart event: onItemInteraction.

const onItemInteractionHandler = ({ id, item, hovered, setStyle }) => {
  if (item.data.type == 'sms' && hovered) {
    setStyle({
      [id]: {
        border: { color: '#f58c84' },
        fontIcon: { color: '#f9bebd' },
        glyphs: [{ color: '#f9bebd', size: 1.3 }],
      }
    })
  }
}

Every time the onItemInteraction event fires when an item in the chart is hovered over or selected, you can apply whatever styling you want. And once you stop hovering over a particular item or deselect it, ReGraph automatically removes the extra styling without the need for an additional setState call to put everything back.

The unlimited potential of interactive graph visualization

We’ve demonstrated 4 simple but effective styles you’ll be able to apply to hover and selection behavior using the next ReGraph version. It’ll be much easier to implement whichever style you want – the hardest part is identifying which visual cues your users prefer.

To get started with your own interactive graph visualization styling, request a free trial.


Latest product updates

Here’s what’s new in the latest updates to our data visualization toolkits.

KeyLines 6.5

  • You can now apply a standard dark mode theme to your KeyLines navigation controls on both the chart and time bar. The result is a stylish look without resorting to custom controls.
  • Organic layout – our recommended layout option – is out of beta development. It’s now a fully established feature of the toolkit.

Coming soon: ReGraph 3.2

  • The new onItemInteraction event we’ve described in this blog post lets you customize what happens when a user hovers or selects an item. The styling property is triggered by the interaction and then they clear themselves afterwards, which opens up a huge range of additional styling for your interactive graph visualizations.
  • Updated Item Interaction and Donut Menu stories let you see the new event behavior in action.
  • To help you navigate the ReGraph SDK site more easily, we’ve added a new site-wide search box. Find it on the right-hand side in the menu bar.

KronoGraph 1.5

  • In the latest version of KronoGraph, our timeline visualization toolkit, we’ve added the ability to re-order entity rows to minimize the length of connections between them. It makes timelines clearer and helps analysts carrying out community detection to find those groups who regularly communicate with each other.
  • We’ve improved the Showcase Phone Calls demo. It now features examples of how to combine controls like date pickers, search boxes, undo/redo and time sliders with your timeline.
Interact with Graphs to quickly reveals how patterns of activity evolve
KronoGraph quickly reveals how patterns of activity evolve, and makes it easier to identify groups and behaviors

How can we help you?

Request trial

Ready to start?

Request a free trial

Learn more

Want to learn more?

Read our white papers

“case

Looking for success stories?

Browse our case studies

Registered in England and Wales with Company Number 07625370 | VAT Number 113 1740 61
6-8 Hills Road, Cambridge, CB2 1JP. All material © Cambridge Intelligence 2024.
Read our Privacy Policy.