Skip to content
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

Certain renderers not working on master branch #4845

Open
LiamConnors opened this issue Nov 1, 2024 · 0 comments
Open

Certain renderers not working on master branch #4845

LiamConnors opened this issue Nov 1, 2024 · 0 comments
Assignees
Labels
bug something broken P2 considered for next cycle

Comments

@LiamConnors
Copy link
Member

There are some renderers not currently working in VS Code when building from master branch. At least: "notebook" and "notebook_connected"

These work in plotly 5.24.1

For example:

import pandas as pd
import plotly.express as px

wide_df = pd.DataFrame(
    {
        "nation": ["South Korea", "China", "Canada"],
        "gold": [24, 10, 9],
        "silver": [13, 15, 12],
        "bronze": [9, 12, 12],
    }
)

fig = px.bar(wide_df, x="nation", y=["gold", "silver", "bronze"], title="Wide-Form Input")
fig.show(renderer="notebook")

Image

In plotly.py built from master it shows blank

And has this error in the console:

Image

@LiamConnors LiamConnors changed the title Certain renderers not work on master branch Certain renderers not working on master branch Nov 1, 2024
@gvwilson gvwilson added bug something broken P1 needed for current cycle P2 considered for next cycle and removed P1 needed for current cycle labels Nov 5, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug something broken P2 considered for next cycle
Projects
None yet
Development

No branches or pull requests

3 participants