We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pn.widgets.RadioButtonGroup
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" )
The text was updated successfully, but these errors were encountered:
This is partially mentioned in #1313. The missing name is, but now the missing description.
Sorry, something went wrong.
No branches or pull requests
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.The text was updated successfully, but these errors were encountered: