Plotly version: `5.17.0` From the [official doc](https://plotly.com/python/line-and-scatter/), the below works fine. ```python 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. ```python 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 ```