Skip to content

VariableHide🔗

Determine if the variable shows on dashboard

Accepted values are dontHide (show label and value), hideLabel (show value only), hideVariable (show nothing), inControlsMenu (show in a drop-down menu).

Definition🔗

export enum VariableHide {
    DontHide = "dontHide",
    HideLabel = "hideLabel",
    HideVariable = "hideVariable",
    InControlsMenu = "inControlsMenu",
}