Edit

SliderOptions Interface

Options for configuring a slider component.

Properties

description

description?: ObservableString | ObservableUIRawMessage | string | UIRawMessage;

Descriptive text shown around the slider to provide additional context.

Type: ObservableString | ObservableUIRawMessage | string | UIRawMessage

disabled

disabled?: boolean | ObservableBoolean;

When true or bound to a true ObservableBoolean, the slider is shown but cannot be moved.

Type: boolean | ObservableBoolean

step

step?: number | ObservableNumber;

The increment amount between each slider step. Defaults to 1 if not specified.

Type: number | ObservableNumber

visible

visible?: boolean | ObservableBoolean;

When false or bound to a false ObservableBoolean, the slider is hidden.

Type: boolean | ObservableBoolean