Open ambrustorok opened 1 month ago
When you create a widget such as a FloatInput you can define a name and a description. This results in a tooltip and a title for the widget.
FloatInput
pn.widgets.FloatInput( name="Number input", step=1e-2, start=0.0, end=1.0, value=0.3, description="My description" )
The same behavior does not apply to all widgets, such as for RadioButtonGroup. Notice how there is no name/title, nor description.
RadioButtonGroup
pn.widgets.RadioButtonGroup( name='My widget', options=[1, 2, 3], button_type='success', value=1, description="My description" )
This is partially mentioned in #1313. The missing name is, but now the missing description.
When you create a widget such as a
FloatInput
you can define a name and a description. This results in a tooltip and a title for the widget.The same behavior does not apply to all widgets, such as for
RadioButtonGroup
. Notice how there is no name/title, nor description.