Gauge

This page describes how to set up and configure the Gauge component which is used to display a single value of quantitative data.

Screenshot

Set up a Guage

To set up an Accordion component, click-and-drag the component into the workspace and configure the following:

  1. Select a Data Source.

  2. Select a Data Column.

  3. Set your Min and Max.

Refer to Gauge properties described in the next section for details on additional properties.

Gauge properties

The following sections provides details on how to configure the properties of the Gague component.

Basics

Open the Basics properties on the right and configure the properties described in the following table.

Screenshot

Field

Description

Name

A name for the component provided by the user.

Data Source

Refer to Data sources for details.

Title

Set a title label to be displayed on the Tooltip.

Show Title

Toggle Show Title to control visibility on Gauge chart type.

Chart Type

Choose the chart type from the options:

Gauge

Configure the properties, described in the following table.

Screenshot

Field

Description

Data Column

Select data column to plot from the data source.

Min

Set min of the chart.

Max

Set max of the chart.

Color

Default color used when Progress is enabled or when highlight rules not set.

Label Font Size

Define font size of data label.

Show Label

Toggle display of data label.

Show Progress

Show the Progress bar. When enabled, toggles off the highlight rules and uses default color

Show Axis Labels

Toggle display of axis labels.

Show Axis Ticks

Toggle display of axis ticks.

Bullet

Configure the properties, described in the following table.

Screenshot

Field

Description

Progress Data

Define data column for progress bar

Target Data

Define data column for target bar

Axis Labels Data

Define data column for axis labels

Progress Color

 

Target Color

Define color of progress and target bars.

Transposed

Toggle between vertical and horizontal chart.

Highlight Rules

Refer to Highlight Rules for details.

Format Data

Configure the properties, described in the following table.

Screenshot

Field

Description

Numeric Format

Select x-axis format between Number, Smart Number, Formatted Number.

Decimal Places

Set precision point for x-axis numeric label.

Hide Trailing Zeroes

Hide display of trailing zeroes in x-axis tick values.

Prefix

Add prefix text to the data label; e.g. currency or percentage symbol.

Suffix

Add suffix text to the data label; e.g. currency or percentage symbol.

Tooltip

Configure the properties, described in the following table.

Screenshot

Field

Description

Show Tooltip

Toggle display of tooltip.

Use custom tooltip

Enable custom tooltip.

Custom tooltip

Define a custom tooltip. The following code provides a simple example.

HTML

Copy
<table>
    {{#if this.0.title}}<thead><tr><th>{{this.0.title}}</thead><th></tr>{{/if}}
    <tbody>{{#each this}}
        <tr>
            <td>{{dataCol}}: </td>
            <td>{{dataVal}}</td>
        </tr>
        {{/each}}
    </tbody>
</table>                    

Style, Margins, Format

Refer to Style for common settings.

Further Reading