Merry Christmas & Happy New Year
Extra 25% off for all sale items + Free CoreUI Icons PRO with every order!
Limited offer ends 1st January 2025, use code 2024XMAS25 during checkout.
Limited offer ends 1st January 2025, use code 2024XMAS25 during checkout.
On this page
Loading...
##### Inputs
| name | description | type | default |
| ---- | ----------- | ---- | ------- |
| `clickableLabels` | Enable or disable clickable labels in the Angular Range Slider. When set to true, users can click on labels to adjust the slider's value directly, enhancing interactivity and user experience. | `boolean` | _true_ |
| `disabled` | Toggle the `disabled` state for the component. | `boolean` | _false_ |
| `distance` | Define the minimum distance between slider handles using the distance prop in the Angular Range Slider. This ensures that the handles maintain a specified separation, preventing overlap and maintaining clear value distinctions. | `number` | _0_ |
| `labels` | Add descriptive labels to your Angular Range Slider by providing an array of labels. These labels enhance the slider's usability by clearly indicating key values and providing contextual information to users. | `Label[]` | _undefined_ |
| `max` | Specify the maximum value for the Angular Range Slider with the `max` prop. This determines the upper limit of the slider's range, enabling precise control over the highest selectable value. | `number` | _100_ |
| `min` | Set the minimum value for the Angular Range Slider using the min prop. This defines the lower bound of the slider's range, allowing you to control the starting point of user selection. | `number` | _0_ |
| `step` | Control the granularity of the Angular Range Slider by setting the `step` prop. This defines the increment intervals between selectable values, allowing for precise adjustments based on your application's requirements. | `number` | _1_ |
| `tooltips` | Enable `tooltips` with default values or set specific labels for each icon. | `boolean` | _true_ |
| `tooltipsFormat` | Customize the display format of tooltips in the Angular Range Slider using the `tooltipsFormat` function. This allows you to format the tooltip values according to your specific requirements, enhancing the clarity and presentation of information. | `(value: number) => string` | _undefined_ |
| `track` | Controls the visual representation of the slider's track. When set to `fill`, the track is dynamically filled based on the slider's value(s). Setting it to `false` disables the filled track. | `boolean` \| `"fill"` | _fill_ |
| `value` | Set the current value(s) of the Angular Range Slider using the `value` prop. Whether you're using a single value or an array for multi-handle sliders, this prop controls the slider's position and ensures it reflects the desired state. | `number` \| `number[]` | **required** |
| `vertical` | Orient the Angular Range Slider vertically by setting the `vertical` prop to `true`. This changes the slider's layout from horizontal to vertical, providing a different aesthetic and fitting various UI designs. | `boolean` | _false_ |
##### Outputs
| name | description | type |
| ---- | ----------- | ---- |
| `valueChange` | Event emitted on `value` change | `number` \| `number[]` |
##### Types