You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
importplotly.graph_objectsasgoscatter=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()
The text was updated successfully, but these errors were encountered:
Description of the bug
Using
go.Scattergl
withmode="text"
ormode="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
The text was updated successfully, but these errors were encountered: