@@ -166,7 +166,7 @@ class FloatSlider(_BoundedFloat):
166
166
"""
167
167
_view_name = Unicode ('FloatSliderView' ).tag (sync = True )
168
168
_model_name = Unicode ('FloatSliderModel' ).tag (sync = True )
169
- step = CFloat (0.1 , help = "Minimum step to increment the value" ).tag (sync = True )
169
+ step = CFloat (0.1 , allow_none = True , help = "Minimum step to increment the value" ).tag (sync = True )
170
170
orientation = CaselessStrEnum (values = ['horizontal' , 'vertical' ],
171
171
default_value = 'horizontal' , help = "Vertical or horizontal." ).tag (sync = True )
172
172
readout = Bool (True , help = "Display the current value of the slider next to it." ).tag (sync = True )
@@ -207,7 +207,7 @@ class FloatLogSlider(_BoundedLogFloat):
207
207
"""
208
208
_view_name = Unicode ('FloatLogSliderView' ).tag (sync = True )
209
209
_model_name = Unicode ('FloatLogSliderModel' ).tag (sync = True )
210
- step = CFloat (0.1 , help = "Minimum step in the exponent to increment the value" ).tag (sync = True )
210
+ step = CFloat (0.1 , allow_none = True , help = "Minimum step in the exponent to increment the value" ).tag (sync = True )
211
211
orientation = CaselessStrEnum (values = ['horizontal' , 'vertical' ],
212
212
default_value = 'horizontal' , help = "Vertical or horizontal." ).tag (sync = True )
213
213
readout = Bool (True , help = "Display the current value of the slider next to it." ).tag (sync = True )
@@ -350,7 +350,7 @@ class FloatRangeSlider(_BoundedFloatRange):
350
350
"""
351
351
_view_name = Unicode ('FloatRangeSliderView' ).tag (sync = True )
352
352
_model_name = Unicode ('FloatRangeSliderModel' ).tag (sync = True )
353
- step = CFloat (0.1 , help = "Minimum step to increment the value" ).tag (sync = True )
353
+ step = CFloat (0.1 , allow_none = True , help = "Minimum step to increment the value" ).tag (sync = True )
354
354
orientation = CaselessStrEnum (values = ['horizontal' , 'vertical' ],
355
355
default_value = 'horizontal' , help = "Vertical or horizontal." ).tag (sync = True )
356
356
readout = Bool (True , help = "Display the current value of the slider next to it." ).tag (sync = True )
0 commit comments