Represents options for a slider.
The SliderOptions interface provides a set of properties that control the
behavior and appearance of a slider. These options include settings for the
input label, input label position, value, value setter, disabled state, minimum value,
maximum value, step value, centered state, and suffix.
Extends#
InputOptions<number>
Properties#
| Property | Type | Inherited from |
|---|---|---|
inputLabel? |
string |
string[] |
inputLabelPosition? |
"left" |
"top" |
value |
number |
InputOptions.value |
setValue |
(value) => void |
InputOptions.setValue |
isDisabled? |
boolean |
InputOptions.isDisabled |
suffix? |
Suffix |
InputOptions.suffix |
min |
number |
- |
max |
number |
- |
step? |
number |
- |
centered? |
boolean |
- |