We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c031845 commit fea23fdCopy full SHA for fea23fd
ipywidgets/widgets/widget_float.py
@@ -266,6 +266,7 @@ class FloatRangeSlider(_BoundedFloatRange):
266
default_value='horizontal', help="Vertical or horizontal.").tag(sync=True)
267
_range = Bool(True, help="Display a range selector").tag(sync=True)
268
readout = Bool(True, help="Display the current value of the slider next to it.").tag(sync=True)
269
+ readout_format = Unicode('.2f', help="Format for the readout").tag(sync=True)
270
continuous_update = Bool(True, help="Update the value of the widget as the user is sliding the slider.").tag(sync=True)
271
272
style = InstanceDict(SliderStyle).tag(sync=True, **widget_serialization)
0 commit comments