Open
Description
Description of the bug
Using go.Scattergl
with mode="text"
or mode="markers+text"
does not display the specified text in Plotly version 6.0.0 (tested on Python 3.12.9). This worked in earlier versions of Plotly.
To Reproduce
import plotly.graph_objects as go
scatter = go.Scattergl(
x=[0.5],
y=[0.5],
mode="markers+text",
text="This Text is not displayed in plotly version 6.0.0",
textposition="top center",
)
fig = go.Figure()
fig.add_trace(scatter)
fig.show()