-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
Histogram in 3.4.0 #1257
Comments
Hi @sursu , Thanks a lot for taking the time to report this, and for providing the reproducible example. It looks like you caught a regression in plotly.js 1.42. I've opened a corresponding issue over there plotly/plotly.js#3210. In the meantime, you can work around the issue by converting your histogram fig.add_histogram(x=np.sum(A*X,axis=0).tolist(), ...) The reason this only shows up in |
I hope the fix will preserve the efficiency of What do I do wrong in the second plot that only the LaTeX expression is displayed as title? |
Hi @sursu, yes the fix will preserve As for the situation with your title, at this point LaTeX can't be mixed with non-latex. So the |
Tracking upstream fix in plotly/plotly.js#3211 |
Closed by #1268. @sursu, could you give the 3.4.1 release candidate a try and confirm that it fixes the issue for you? Installation instructions for the release candidate at https://github.com/plotly/plotly.py/tree/release_3.4.1 Thanks again for taking the time to to report this! |
@jonmmease Yes. Issue fixed. Thank you! 👍 |
Great! Thanks for giving the release candidate a try |
Hi, I think there is an issue with FigureWidget in 3.4.0. The behavior I will describe below did not exist in 3.3.0.
I use Jupyter Lab.
Now, this works:
iplot([go.Histogram(x=np.sum(A*X,axis=0))])
This does not work (even though it did before):
Also, note that part of the title is not displayed.
The text was updated successfully, but these errors were encountered: