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
To get scroll in a panel object you currently have to use css classes. This looks like:
import panel as pn css = """ .widget-box { overflow: scroll; } """ pn.extension(raw_css=[css]) pn.Column( pn.widgets.FloatSlider(name='Number', width=200, ), pn.widgets.Select(name='Fruit', options=['Apple', 'Orange', 'Pear']), pn.widgets.Button(name='Run'), css_classes=['widget-box'], width=100, height=50, background='#f0f0f0')
I propose we add overflow as a kwarg in all panel objects or possibly just all pane and layout options.
The text was updated successfully, but these errors were encountered:
I'm +1 on this, I think there are generally useful options which could be implemented in CSS and exposed as parameters on the Layoutable baseclass.
Layoutable
Sorry, something went wrong.
No branches or pull requests
To get scroll in a panel object you currently have to use css classes. This looks like:
I propose we add overflow as a kwarg in all panel objects or possibly just all pane and layout options.
The text was updated successfully, but these errors were encountered: