-
-
Notifications
You must be signed in to change notification settings - Fork 78
Heatmaps broken! #22
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
Comments
Test code: import plotly.graph_objs as go
from plotly.offline import init_notebook_mode, iplot
init_notebook_mode()
trace = go.Heatmap(z=[[1, 20, 30, 50, 1], [20, 1, 60, 80, 30], [30, 60, 1, -10, 20]],
x=['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday'],
y=['Morning', 'Afternoon', 'Evening'])
data=[trace]
iplot(data) |
Just to confirm, Using the same notebook served by the same jupyterhub instance when viewed in jupyterlab (at |
Duplicate of #21 |
I just published @jupyterlab/plotly-extension 0.10.0 which should resolve this issue 👍 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
On jupyterlab 0.27.0 with the latest jupyter-renderers installed when plotting a heatmap it instead plots a line graph!
What I'm seeing on jupyterlab:

What I see locally in nteract:

The text was updated successfully, but these errors were encountered: