You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using parameterized classes and Panel to create an interactive application. I noticed that input widgets shows both a label and a useful tooltip, which display the content of the keyword argument doc of a particular parameter. However, sliders don't show this tooltip. Would it be possible to include this tooltip on sliders as well?
Here are a couple of screenshots from my application. The first one is good because if a user don't remember what a parameter does, it just hover the tooltip:
The second screenshot highlights why this feature would be useful. Sometime many sliders have similar labels: a tooltip displaying further information would be very helpful.
This is a minimum reproducible code:
importparamimportpanelaspnclassA(param.Parameterized):
a=param.Number(1.2, bounds=(0, 2), label="a", doc="Help for a.")
b=param.Number(1.2, label="b", doc="Help for b.")
c=param.String("test", label="c", doc="Help for c.")
classB(A, pn.viewable.Viewer):
def__panel__(self):
returnpn.Column(self.param.a, self.param.b, self.param.c)
B()
The text was updated successfully, but these errors were encountered:
I'm using parameterized classes and Panel to create an interactive application. I noticed that input widgets shows both a label and a useful tooltip, which display the content of the keyword argument
doc
of a particular parameter. However, sliders don't show this tooltip. Would it be possible to include this tooltip on sliders as well?Here are a couple of screenshots from my application. The first one is good because if a user don't remember what a parameter does, it just hover the tooltip:
The second screenshot highlights why this feature would be useful. Sometime many sliders have similar labels: a tooltip displaying further information would be very helpful.
This is a minimum reproducible code:
The text was updated successfully, but these errors were encountered: