We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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 version: 5.17.0
5.17.0
From the official doc, the below works fine.
df = px.data.medals_long() fig = px.scatter( df, y="count", x="nation", color="medal", render_mode="svg" ).update_layout(scattermode="group", scattergap=0.75) fig
But switching to render_mode="webgl" is broken, as all point get overlaid.
render_mode="webgl"
df = px.data.medals_long() fig = px.scatter( df, y="count", x="nation", color="medal", render_mode="webgl" ).update_layout(scattermode="group", scattergap=0.75) fig
The text was updated successfully, but these errors were encountered:
It seems to be fixed with the release of v5.19.0: https://github.com/plotly/plotly.py/releases/tag/v5.19.0
Sorry, something went wrong.
Works indeed. Thanks @qchenevier
No branches or pull requests
Plotly version:
5.17.0
From the official doc, the below works fine.
But switching to
render_mode="webgl"
is broken, as all point get overlaid.The text was updated successfully, but these errors were encountered: