@@ -289,31 +289,28 @@ def __init__(self, ax, label, valmin, valmax, valinit=0.5, valfmt='%1.2f',
289
289
valmax : float
290
290
The maximum value of the slider.
291
291
292
- valinit : float, optional
293
- The slider initial position. Default: 0.5
292
+ valinit : float, optional, default: 0.5
293
+ The slider initial position.
294
294
295
- valfmt : str, optional
295
+ valfmt : str, optional, default: "%1.2f"
296
296
Used to format the slider value, fprint format string.
297
- Default: '%1.2f'
298
297
299
- closedmin : bool, optional
298
+ closedmin : bool, optional, default: True
300
299
Indicate whether the slider interval is closed on the bottom.
301
- Default: True
302
300
303
- closedmax : bool, optional
301
+ closedmax : bool, optional, default: True
304
302
Indicate whether the slider interval is closed on the top.
305
- Default: True
306
303
307
- slidermin : Slider, optional
304
+ slidermin : Slider, optional, default: None
308
305
Do not allow the current slider to have a value less than
309
- the value of the Slider `slidermin`. Default: None
306
+ the value of the Slider `slidermin`.
310
307
311
- slidermax : Slider, optional
308
+ slidermax : Slider, optional, default: None
312
309
Do not allow the current slider to have a value greater than
313
- the value of the Slider `slidermax`. Default: None
310
+ the value of the Slider `slidermax`.
314
311
315
- dragging : bool, optional
316
- If True the slider can be dragged by the mouse. Default: True
312
+ dragging : bool, optional, default: True
313
+ If True the slider can be dragged by the mouse.
317
314
318
315
Notes
319
316
-----
0 commit comments