Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

go.Scattergl with mode="text" does not display text in Plotly 6.0.0 #5063

Open
brj0 opened this issue Mar 5, 2025 · 2 comments
Open

go.Scattergl with mode="text" does not display text in Plotly 6.0.0 #5063

brj0 opened this issue Mar 5, 2025 · 2 comments
Labels
bug something broken P1 needed for current cycle regression this used to work

Comments

@brj0
Copy link

brj0 commented Mar 5, 2025

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()
@gvwilson gvwilson added bug something broken P1 needed for current cycle regression this used to work labels Mar 7, 2025
@gvwilson
Copy link
Contributor

gvwilson commented Mar 7, 2025

Thanks for catching this @brj0 - I'll try to get it looked at in the next work cycle.

@tjnd89
Copy link

tjnd89 commented Mar 12, 2025

FWIW, it doesn't show the markers either when using mode="markers+text".

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug something broken P1 needed for current cycle regression this used to work
Projects
None yet
Development

No branches or pull requests

3 participants