interface ItemValueDisplay {
    className?: string;
    css_class?: string;
    digits?: number;
    format_with?: ((value) => any);
    formula?: string;
    label?: string;
    oid?: string;
    position?: CanvasPosition;
    set_class_name_with?: ((value) => any);
    set_color_with?: ((value) => any);
    state?: ItemState;
    threshold?: ItemValueThreshold[];
    units?: string;
}

Properties

className?: string
css_class?: string
digits?: number
format_with?: ((value) => any)

Type declaration

    • (value): any
    • Parameters

      • value: any

      Returns any

formula?: string
label?: string
oid?: string
position?: CanvasPosition
set_class_name_with?: ((value) => any)

Type declaration

    • (value): any
    • Parameters

      • value: any

      Returns any

set_color_with?: ((value) => any)

Type declaration

    • (value): any
    • Parameters

      • value: any

      Returns any

state?: ItemState
threshold?: ItemValueThreshold[]
units?: string

Generated using TypeDoc