Beta
The options for including a slider in CustomForm.
export interface SliderOptions { description?: Observable<string> | Observable<UIRawMessage> | string | UIRawMessage; disabled?: Observable<boolean> | boolean; step?: Observable<number> | number; visible?: Observable<boolean> | boolean;} Copy
export interface SliderOptions { description?: Observable<string> | Observable<UIRawMessage> | string | UIRawMessage; disabled?: Observable<boolean> | boolean; step?: Observable<number> | number; visible?: Observable<boolean> | boolean;}
Optional
The description of the slider, shown in the UI.
Whether or not this slider is disabled.
The step size of the slider. For example, if this is 2 and the min is 0 and the max is 10, the only selectable values will be 0, 2, 4, 6, 8, 10.
Whether or not this slider is visible.
The options for including a slider in CustomForm.
Source