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
I'm on Panel 1.0.4 and trying to help a user that wanted to migrate from Streamlit to Panel in https://discourse.holoviz.org/t/migrate-from-streamlit-to-panel/5463.
As you can see below the RadioBoxGroup is not usuable with the current styling. It used to work.
RadioBoxGroup
import time import panel as pn pn.extension(sizing_mode="stretch_width") def calculation_a(): time.sleep(1.5) def calculation_b(): time.sleep(1.5) calculation = pn.widgets.RadioBoxGroup( name="Calculation", options=["Calc A", "Calc B"], button_type="primary", button_style="outline", inline=True, ) component = pn.Column(calculation) pn.template.FastListTemplate(title="Calculation Runner", main=[component]).servable()
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
I'm on Panel 1.0.4 and trying to help a user that wanted to migrate from Streamlit to Panel in https://discourse.holoviz.org/t/migrate-from-streamlit-to-panel/5463.
As you can see below the
RadioBoxGroup
is not usuable with the current styling. It used to work.The text was updated successfully, but these errors were encountered: