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
DiscreteSlider does not respect the sizing_mode parameter. To reproduce in jupyter notebook:
import panel as pn pn.extension() slider = pn.widgets.DiscreteSlider( name='Integer Slider', options=[2**i for i in range(0, 9)], value=4, sizing_mode='stretch_width') #workaround #slider._composite.sizing_mode='stretch_width' slider
It is possible to workaround using slider._composite.sizing_mode='stretch_width'. It appears that sizing_mode is never passed to the Column container.
slider._composite.sizing_mode='stretch_width'
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
DiscreteSlider does not respect the sizing_mode parameter. To reproduce in jupyter notebook:
It is possible to workaround using
slider._composite.sizing_mode='stretch_width'
. It appears that sizing_mode is never passed to the Column container.The text was updated successfully, but these errors were encountered: