When using plotly.express.scatter with a text argument and render_mode='webgl the plotting function breaks silently and does not show any points. Code to reproduce:
import plotly.express as px
df = px.data.iris()
fig1 = px.scatter(
df,
x="sepal_length",
y="sepal_width",
color="species",
render_mode="webgl",
opacity=0.9,
text="species",
)
fig1.show()
Expected behavior (produced without render_mode='webgl'):
Actual output:

When using
plotly.express.scatterwith atextargument andrender_mode='webglthe plotting function breaks silently and does not show any points. Code to reproduce:Expected behavior (produced without render_mode='webgl'):
Actual output: