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
First observed in #6511. The main plot would fill more than what it currently does:
import panel as pn import holoviews as hv hv.extension("bokeh") main_plot = hv.Curve([]).opts(responsive=True) adj1_plot = hv.Curve([]).opts(width=80, responsive=True) adj2_plot = hv.Curve([]).opts(height=80, responsive=True) plot = main_plot << adj1_plot << adj2_plot pn.panel(plot).servable()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
First observed in #6511. The main plot would fill more than what it currently does:
The text was updated successfully, but these errors were encountered: