Open
Description
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")
In plotly.py built from master it shows blank
And has this error in the console: