-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Open
Labels
Description
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:
