genome_spy.binding_range¶
- genome_spy.binding_range(*, debounce=Undefined, description=Undefined, max=Undefined, min=Undefined, name=Undefined, step=Undefined)View on GitHub¶
Create a range input binding.
- Parameters:
debounce (float) – If defined, delays event handling until the specified milliseconds have elapsed since the last event was fired.
description (str) – An optional description or help text that is shown below the input element.
max (float) – Sets the maximum slider value. Defaults to the larger of the signal value and
100.min (float) – Sets the minimum slider value. Defaults to the smaller of the signal value and
0.name (str) – By default, the parameter name is used to label input elements. This
nameproperty can be used instead to specify a custom label for the bound parameter.step (float) – Sets the minimum slider increment. If undefined, the step size will be automatically determined based on the
minandmaxvalues.