Big number

A large number, for important KPIs. The number is static; push new values via the API from your automations. Use the properties to automatically colorize the number based on upper/lower thresholds

img

Properties

Ref Default Notes
value [null] The number to display
color white Default color to show the number in
above_value [null] If value is greater than this, show it in above_color instead
above_color [null] The color to show the number in, if it is above above_value
below_value [null] If value is less than this, show it in below_color instead
below_color [null] The color to show the number in, if it is less than below_value

Examples

Set the value

Use the below CLI command to set the timezone property from the command line. The change will be reflected immediately in the visual dashboard:

awts dash widget put /primary/page1/bignumber/value 1.24

Set a threshold to colorize

Configure the widget to show the number in red if the value exceeds 2.0. Note this uses the putmulti command to set multiple widget properties in one hit. This is equivalent, but more efficient than, making multiple separate put calls.

awts dash widget putmulti /primary/page1/bignumber/value above_value=2.0 above_color=red