Classes
DualSlider | A simple dual slider widget. |
Bases: enaml.widgets.control.Control
A simple dual slider widget.
A dual slider can be used to select a range within a larger range of integral values.
The minimum slider value. If the minimum value is changed such that it becomes greater than the current value or the maximum value, then those values will be adjusted. The default is 0.
The maximum slider value. If the maximum value is changed such that it becomes smaller than the current value or the minimum value, then those values will be adjusted. The default is 100.
The low position value of the DualSlider. The value will be clipped to always fall between the minimum and maximum and be smaller than the high value.
The high position value of the DualSlider. The value will be clipped to always fall between the minimum and maximum and be larger than the low value.
A TickPosition enum value indicating how to display the tick marks. Note that the orientation takes precedence over the tick mark position and an incompatible tick position will be adapted according to the current orientation. The default tick position is ‘bottom’.
The interval to place between slider tick marks in value units (as opposed to pixels). The minimum value is 0, which indicates that the choice is left up to the client.
The orientation of the slider. The default is ‘horizontal’. When the orientation is flipped the tick positions (if set) also adapt to reflect the changes (e.g. the LEFT becomes TOP when the orientation becomes horizontal).
If True, the value is updated while sliding. Otherwise, it is only updated when the slider is released. Defaults to True. Whether or not to automatically adjust the ‘hug_width’ and ‘hug_height’ values based on the value of ‘orientation’.
A reference to the ProxyDualSlider object.