Import
import { Slider } from '@dnb/eufemia'
Description
The Slider component provides a visual indication of an adjustable value. A value can be adjusted (increased or decreased) by moving the drag handle along a track (usually horizontal or vertical). Remember to inform users that they can also adjust the value directly in the value input field (if it exists).
When to use Slider vs Eufemia Forms
Classic form components like this one are presentational controls. They handle the styling, sizing, icons, and basic events, while you manage their value, validation, and error handling yourself.
For most data input and forms situations, use Eufemia Forms fields instead. They build on these same components, but add data handling, validation, and error messages through the surrounding Form.Handler. Browse the field components to find the one that matches your data.
Reach for a classic component when you need it standalone outside of a form context, or when you handle the value and validation yourself.
The Eufemia Forms equivalent of Slider is Field.Slider.
Relevant links
Accessibility
The Slider uses a semantic <input type="range"> element for the thumb control, ensuring keyboard accessibility. Arrow keys adjust the value, and Home/End keys jump to min/max values. The current value, minimum, and maximum are announced to screen readers via aria-valuemin, aria-valuemax, and aria-valuenow.
Define a min and max value
Keep in mind, you should most probably define your min and max value, because they are tied closely to your given value property.
Related components
Slider is part of the Input category. Other components for similar needs:
- Autocomplete — to help people find and choose from matching suggestions as they type.
- Checkbox — when people can turn one or more options on or off.
- DatePicker — when people need to choose one date or a date range.
- Dropdown — when people need to choose one option from a list.
- Filter — to help people narrow down a list or data set.
- FormLabel — to name an input, control, or form-related field.
Demos
Default Slider
<Slider min={0} max={100} value={70} label="Default Slider" numberFormat={{ currency: 'EUR', }} onChange={({ value }) => console.log('onChange:', value)} />
Slider with multiple thumb buttons
Provide the value property as an array with numbers. The onChange event will then also return the property value as an array. The + and - buttons will not be visible when more than one thumb button is present.
<Flex.Vertical align="stretch"> <Slider min={0} max={100} value={[30, 70]} step={5} label="Range with steps" numberFormat={{ currency: 'USD', }} tooltip onChange={({ value }) => console.log('onChange:', value)} /> <Slider min={0} max={100} value={[10, 30, 50, 70]} label="Multi thumbs" numberFormat={(value) => formatPercent(value, { decimals: 0, }) } tooltip onChange={({ value, number }) => console.log('onChange:', value, number) } /> </Flex.Vertical>
By default, the thumbs can swap positions. You can change that behavior with multiThumbBehavior.
<Flex.Vertical align="stretch"> <Slider multiThumbBehavior="omit" value={[30, 70]} label="Omit behavior" numberFormat={{ currency: 'EUR', }} tooltip={true} onChange={({ value }) => console.log('onChange:', value)} /> <Slider multiThumbBehavior="push" min={-40} value={[-10, 50, 70]} step={1} label="Push behavior" numberFormat={{ currency: true, }} tooltip={true} onChange={({ value, number }) => console.log('onChange:', value, number) } /> </Flex.Vertical>
Vertical slider with steps of 10
const VerticalWrapper = styled.div` display: inline-flex; flex-direction: column; height: 12rem; /* max-height works fine except in Safari */ ` render( <VerticalWrapper> <Slider min={0} max={100} value={20} step={10} vertical={true} label="Vertical slider" onChange={({ value }) => console.log('onChange:', value)} /> </VerticalWrapper> )
Horizontal and vertical slider in sync with input field
const Component = () => { const [value, setValue] = useState(70) return ( <> <Slider value={value} step={1} hideButtons label="Slider A" numberFormat={{ currency: 'EUR', }} tooltip={true} onChange={({ value }) => setValue(parseFloat(String(value)))} /> <VerticalWrapper> <Slider value={value} vertical={true} hideButtons={true} step={10} label="Slider B" numberFormat={(value) => formatCurrency(value, { currency: 'NOK', }) } tooltip alwaysShowTooltip onChange={({ value }) => setValue(Number(value))} /> <Input align="center" selectAll value={String(value)} onChange={({ value }) => setValue(Number(value))} /> </VerticalWrapper> </> ) } const VerticalWrapper = styled.div` display: inline-flex; flex-direction: column; align-items: center; height: 20rem; /* max-height works fine except in Safari */ margin-top: 1rem; padding: 1rem; background: var(--color-lavender); border: 1px solid var(--color-black-20); .dnb-input { width: 4rem; margin-top: 1rem; } ` render(<Component />)
Slider with a suffix
<Slider min={0} max={100} value={70} label="Slider with suffix" suffix={<HelpButton title="Modal Title">Modal content</HelpButton>} />
Slider with a marker
Marks a given point in the Slider with a small marker. If text property is provided to the marker object, it will be displayed in a tooltip.
You can import the marker like so:
import { SliderMarker } from '@dnb/eufemia/components/Slider'
<Slider min={0} max={100} value={50} extensions={{ marker: { instance: SliderMarker, value: 20, text: 'Default value', }, }} label="Slider with marker" />