Skip to content

Basic displays

Basic widgets typically perform display of numeric values.

Value display

Value display is a generic display widget, which is intended to operate on primitive datatypes string and number.

Among its parameters (in tab, "Graphical Properties"):

  • decimalDigits: decimal precision of number. Default value is 3

KPI display

Is card-like display.

Status led

For displaying binary status (on/off)

Progress bar

Enables to display a progress over a range. See example:

Full-circular, semi-circular or arch-circular gauges

Are adapted for displaying score values, that have a well defined min/max range.

The other widgets are adapted for real-time display:

  • Status led: for displaying binary status (on/off)

More advance displays (like Label, Markdown or HTML) can be found in the [Annotation & Video] category.

Table

Table widget expects its value input to reference a list, containing sub-lists, all of the same dimension, such as:

[
    ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"],
    [5, 6, 9, 11, 15, 16, 20, 20, 16, 12, 7, 5]
]

This array will be displayed as:

table

It currently supports basic binding with Pandas Dataframes.