Numbers and Arrows in Dashboards

This article shows tips and tricks how to develop large number visuals and progress indicators such as numbers and arrows in your dashboards.

Large Font Numeric Report

  1. Create a report showing a single number. Do not add any attributes in the How section.
  2. Convert the report to a stack bar chart.
  3. Go to Advanced Configuration → Y Axis → Primary Axis.
  4. Set the max of the axis to a large number, for example 1000000000
  5. Unselect the Name and Labels checkboxes
  6. In Advanced Configuration → Global Settings, select Data Labels.
  7. Set the font size to 18.
  8. Select Totals.
  9. Unselect Values and Boxed.

Trending Colored Arrows:

To show a positive/negative trend, create a second metric showing a difference in time.

For example, the Revenue metric showing the trend between the last month and the month before it (attribute Month):

SELECT (SELECT Revenue WHERE Month/Year = PREVIOUS )
- (SELECT Revenue WHERE Month/Year = PREVIOUS-1)

This is an Advanced Custom Metric (see Get Started with Using MAQL to Write Metrics).

To create a customized formatting for this metric, use both conditional formatting (different for negative and positive numbers) and change the font color:

[green]▲;[red]▼

You can use a Unicode symbol for up/down arrows or your own symbols/arrows, for example, by copy/pasting them from Wikipedia (shapes, arrows).