In this case:
import param as pm
import panel as pn
pn.extension()
class A(pm.Parameterized):
a = pm.Magnitude(inclusive_bounds=(False,False))
pn.panel(A)
It would be nice if the default slider widget would respect the bounds.
In this case:
import param as pm
import panel as pn
pn.extension()
class A(pm.Parameterized):
a = pm.Magnitude(inclusive_bounds=(False,False))
pn.panel(A)
It would be nice if the default slider widget would respect the bounds.