Common Scenarios

Cannot Fit All Information on a Single Screen

This is a common problem. One solution is to allow panning and scrolling.

The problem with this is that it is difficult to get an overview of the entire data, thereby the viewer may miss out on trends or patterns in the data. It also becomes difficult to make comparisons in the data.

The best solution is to use the overview+detail pattern.

Need to View Actual Values or Labels Contained in the Data

Adding labels in the visualization causes clutter.

One way to solve this issue is to use two separate views: one with the graphical representation and the other with a tabular representation (that contains the values/labels). This is the visualization+list/table pattern.

Another solution is to show values/labels upon hovering the data points.

Need to Visualize Different Facets of the Data Simultaneously

This issue often arises when we need to visualize who, what, when or where something is.

The solution is to use multiple views with different facets (attributes), and link them together using interaction.

An example:

Last updated