-
-
Notifications
You must be signed in to change notification settings - Fork 75
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Describe the bug ποΈ
Upgrading to Dash 4.0.0 causes
fig.show_dash()to fail within VS Code Jupyter notebooks on my macOS system. The cell executes and creates a blank vertical space, but no plot renders. FigureWidgetResampler(fig) still works so is currently a workaround.
Reproducing the bug π
- Using
dash==4.0.0.- Open a Jupyter Notebook in VS Code on macOS.
- Run the following minimal code:
import pandas as pd import numpy as np from plotly_resampler import FigureResampler import plotly.graph_objects as go fig = FigureResampler(go.Figure()) x = np.arange(1000) y = np.random.randn(1000) fig.add_trace(go.Scattergl(name='test'), hf_x=x, hf_y=y) fig.show_dash()
Expected behavior π§
An interactive Dash application should render inline within the VS Code notebook cell output.
Environment information:
- OS: macOS
- Python environment: Poetry / VS Code Jupyter Extension
- Python version: 3.11
- plotly-resampler environment: VS Code Notebook
- plotly-resampler version: 0.11.0
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working