-
-
Notifications
You must be signed in to change notification settings - Fork 404
New issue
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
nteract/VScode plots rendering at the bottom of the window #3353
Comments
One solution here would be to make the type of the MIME bundles dependent on whether the frontend sends back an acknowledgement when the extension is loaded. If we did that then the custom mime type would only be published in JupyterLab and classic notebook and any other frontends would receive all the components as a single 'text/html' component. |
For further discussion you can also see the issue in nteract (nteract/nteract#3370). |
Just for the record. The code showcased by @philippjfr for holoviews in VS Code does not work for me. I get import os
os.environ['HV_DOC_HTML'] = 'True'
import holoviews as hv
hv.extension('bokeh')
hv.renderer('bokeh').theme = 'dark_minimal'
hv.Curve([1, 2, 3]) I get the same error when trying to use Panel import panel as pn
pn.extension()
pn.Column("# Hello Panel World") I believe this is a regression as I remember that I have tried it out successfully previously. I'm using Holoviews 1.13.2. and VS Code 1.43.2 |
@MarcSkovMadsen Could you open a new issue in Panel? |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Versions:
nteract
:0.12.3
holoviews
:1.11.0
Plots gernerated by
holoviews
rendered at the bottom of the window innteract
instead of right under each cell.It does seem like a
holoviews
issue sincebokeh
behaves normally.The text was updated successfully, but these errors were encountered: