FloatSlider with very small values
See original GitHub issueThe float widget does not display properly and is not able to “slide” (except to min
and max
values) if the values are very small:
order = 1e-8
widgets.FloatSlider(min=1.*order, max =5.*order, step= 0.05*order, value = 2.*order)
It looks like the smallest step
value is hard-coded, however with a quick look I was not able to find anything of sort
Issue Analytics
- State:
- Created 8 years ago
- Reactions:2
- Comments:15 (10 by maintainers)
Top Results From Across the Web
python 3.x - How to increase slider length in ipywidgets
You can use the Layout component. Try: from ipywidgets import Layout, interact, IntSlider import ipywidgets as widgets def f(x): return x ...
Read more >FloatSlider — Panel v0.14.2
The FloatSlider widget allows selecting selecting a numeric floating-point value within a set bounds using a slider. For more information about listening to ......
Read more >Using step lower than 0.01 for slider with floats
I am using a slider with float values, but it seems that choosing a step lower than 0.01, for example 0.001, is treated...
Read more >Interactive quiver plot (figure_factory with ipython ...
I'm looking for a way to render a quiver plot interactive with the use of ipywidgets. Say for example I have the following...
Read more >updating a matplotlib plot with `observe` without generating ...
FloatSlider (value=0.5, min=0.1, max=1, step=0.1, description=('Slider')) ... Here's a small self-contained version of your example, ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
A workaround is to use the Selection slider and to generate the values and labels you want.
The much more invasive change is to use a different slider implementation, like mentioned above.
This is a real pain in the neck. Is there any updates or ideas on how to resolve this issue?