ui.Slider
A draggable target that ranges linearly between two numeric values. The value of the slider is displayed as a label alongside it.
Usage | Returns |
---|
ui.Slider(min, max, value, step, onChange, direction, disabled, style) | ui.Slider |
Argument | Type | Details |
---|
min | Number, optional | The minimum value. Defaults to 0. |
max | Number, optional | The maximum value. Defaults to 1. |
value | Number, optional | The initial value. Defaults to 0. |
step | Number, optional | The step size for the slider. Defaults to 0.01. |
onChange | Function, optional | A callback to fire when the slider's state changes. The callback is passed the slider's current value and the slider widget. |
direction | String, optional | The direction of the slider. One of
'horizontal' or 'vertical'. Defaults to 'horizontal'. |
disabled | Boolean, optional | Whether the slider is disabled. Defaults to false. |
style | Object, optional | An object of allowed CSS styles with their values to be set for this widget. See style() documentation. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2023-10-06 UTC.
[null,null,["Last updated 2023-10-06 UTC."],[[["The `ui.Slider` widget enables users to interactively select a numeric value within a defined range, visually represented by a draggable slider."],["It offers customization options like minimum/maximum values, step size, initial value, orientation, and an onChange callback to respond to user interactions."],["Developers can further tailor its appearance using custom CSS styles through the `style` argument."]]],["The `ui.Slider` component creates a draggable slider between a minimum (`min`) and maximum (`max`) numeric value. It displays the current `value` with a label, adjustable by a defined `step`. The `direction` can be horizontal or vertical. An optional `onChange` function triggers on value changes, passing the current value. The slider can be `disabled`, and `style` properties are customizable. Default values are provided for `min`, `max`, `value`, and `step`.\n"]]