value

Gauge Properties for general information about Output components.

If the Gauge component is bound to a data field (i.e., displaying an aggregate), value returns the value displayed by the component. If the Gauge component is not bound to a data field, value specifies the value to display.

Type

Number

Example

if(Gauge1.value > 100) {
  alert('Excessive value detected.')
}

Either syntax below can be used in component script:

value           // unqualified
Gauge1.value    // qualified

For onInit/onRefresh scripts, and for component and property scripts on other components, the second (qualified) form is required.