Visualization#

class Slider(label='', value=None, min=None, max=None, step=1, dtype=None)[source]#

A number-based slider input with settable increment.

Example:

slider_option = Slider(“My Slider”, value=123, min=10, max=200, step=0.1)

Args:

label: The displayed label in the UI value: The initial value of the slider min: The minimum possible value of the slider max: The maximum possible value of the slider step: The step between min and max for a range of possible values dtype: either int or float

Modules#