Slider
A numeric slider exposing a number, for values with a natural range.


Reach for it when you need:
- A setpoint within known limits
- A filter threshold on a dashboard
Component name: Slider · Category: Input
In the palette: Numeric slider track (exposes a number value)
Properties
Any property can be bound to a tag, another component's property, or a query.
| Property | Type | Default | Description |
|---|---|---|---|
value | number | 0 | The current number — reflects the handle position, and bindable. |
min | number | 0 | — |
max | number | 100 | — |
step | number | 1 | — |
showValue | boolean | true | Show the current value as a pill beside the track. |
tooltip | boolean | false | Pop a value tooltip above the handle while dragging. |
thickness | number | 4 | Track line thickness in px (default 4). |
unit | string | "" | Optional suffix shown next to the value (e.g. %, px). |
title | string | Slider | — |
showTitle | boolean | true | — |
titleSize | number | 13 | — |
disabled | boolean | false | — |
style | style | {} | Custom CSS properties |
Events
Attach event actions to these in the Event Manager.
| Event | Label | Group | Payload |
|---|---|---|---|
click | Click | Mouse | The DOM event. |
dblclick | Double click | Mouse | The DOM event. |
contextmenu | Right click | Mouse | The DOM event. |
mouseenter | Mouse enter | Mouse | The DOM event. |
mouseleave | Mouse leave | Mouse | The DOM event. |
change | Change | Input | The DOM event. |
submit | Submit | Input | The DOM event. |
focus | Focus | Input | The DOM event. |
blur | Blur | Input | The DOM event. |
Right-click behaves differently in the Designer
contextmenu fires your configured actions at runtime only — in LiveView and in preview. On the Designer canvas the right-click is captured to open the Event Manager, so testing it there will not run your actions. Test right-click in preview.
Notes
Bound directly to a tag, a slider writes continuously as it is dragged. Prefer binding it to a client variable and writing once, on release, through an event action.