Multi Range Slider
Angular Bootstrap 5 Multi Range Slide component
MDBootstrap slider is an interactive component that lets the user swiftly slide through possible values spread over a desired range. .
Note: Read the API tab to find all available options and advanced customization
Basic example
Use mdb-multi-range
element to render the multi range slider.
Basic example with values
You can show values in the another element in dom
One range
You can set a one range to your slider with the [numberOfRanges]
input.
Start Values
You can change start values to ranges with option startValues.
Tooltips
You can set tooltip to ranges with the [tooltip]
input.
Step
You can set a step to the ranges with the [step]
input.
Multi Range Slider - API
Import
Inputs
Name | Type | Default | Description |
---|---|---|---|
[max]
|
number | 100 |
Set maximum range of slider |
[min]
|
number | 0 |
Set minimum range of slider |
[startValues]
|
number[] | [0,100] |
Set width of range |
[step]
|
number | 5 |
Set step to range |
[tooltip]
|
boolean | false |
Set tooltips to ranges |
Outputs
Name | Type | Description |
---|---|---|
startDrag
|
EventEmitter<void> | This event fires when you start dragging the thumb. |
endDrag
|
EventEmitter<void> | This event fires when you end dragging the thumb. |
changeValue
|
EventEmitter<void> | This event fires when any of the Multi range slider values changes. |