Min |
T |
null |
The minimum allowed value of the slider. Should not be equal to max. |
Max |
T |
null |
The maximum allowed value of the slider. Should not be equal to min. |
Step |
T |
null |
How many steps the slider should take on each move. |
Disabled |
Boolean |
False |
If true, the slider will be disabled. |
ChildContent |
RenderFragment |
null |
Child content of component. |
Converter |
Converter<T> |
|
|
ValueChanged |
EventCallback<T> |
|
|
Value |
T |
null |
|
Color |
Color |
Color.Primary |
The color of the component. It supports the Primary, Secondary and Tertiary theme colors. |
Immediate |
Boolean |
True |
If true, the dragging the slider will update the Value immediately.
If false, the Value is updated only on releasing the handle. |
Class |
String |
null |
User class names, separated by space |
Style |
String |
null |
User styles, applied on top of the component's own classes and styles |
Tag |
Object |
null |
Use Tag to attach any user data object to the component for your convenience. |
UserAttributes |
Dictionary<String, Object> |
|
UserAttributes carries all attributes you add to the component that don't match any of its parameters.
They will be splatted onto the underlying HTML tag. |