-
-
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
Plotly express scatter webgl render_mode does not seem to work #1739
Comments
Please see here for details and how to reproduce. |
I am encountering the same as well :) |
Same here. The slider movement is smooth as butter, but animation is not working. Edit: If I save the plot with That said, in both scenarios it looks like the plot is updated "behind the scenes" -- while hovering the cursor over the plot area, I get the info about scatter marks, correctly updated for every frame, even though they are not actually displayed. Not sure if that helps, but I noticed that the following errors pop up in the DevTools console in Chrome & Firefox when opening the webpage saved with Is there any chance the fix is in the works? Or a workaround we could use while the pesky bug is still at large (well, other than switching back to SVG)? |
can't you use |
@qxlsz well that's the rub, essentially: if I do that, the plot will not be animated. I tried both simply running Are you not experiencing the same problem when passing |
Also tried playing around with enforcing different renderers for the |
I'm on plotly v 5.11.0, and still see the same problem as described by @opchain Using the same gapminder scatter example, the animation works fine in auto or svg render mode, import plotly.express as px
df = px.data.gapminder()
fig = px.scatter(df, x="gdpPercap", y="lifeExp", animation_frame="year", animation_group="country",
size="pop", color="continent", hover_name="country",
log_x=True, size_max=55, range_x=[100,100000], range_y=[25,90],
render_mode='webgl')
fig.show() |
Plotly express scatter webgl render_mode does not seem to work
The text was updated successfully, but these errors were encountered: