Issue
I want to hide the value next this slider. Any way to do it?
Solution
Use readout=False
when instantiating your widgets.
from ipywidgets import IntSlider
IntSlider(readout=False)
Answered By - ac24
I want to hide the value next this slider. Any way to do it?
Use readout=False
when instantiating your widgets.
from ipywidgets import IntSlider
IntSlider(readout=False)
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.