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

Plotly Express not displaying datetime #5101

Open
Joshua-Powell-Lambda opened this issue Mar 19, 2025 · 1 comment
Open

Plotly Express not displaying datetime #5101

Joshua-Powell-Lambda opened this issue Mar 19, 2025 · 1 comment
Labels
bug something broken P1 needed for current cycle regression this used to work

Comments

@Joshua-Powell-Lambda
Copy link

the x-axis of my graph is displaying as the ns value of the timestamp, 1715000000000000000, instead of the corresponding readable timestamp.

The code is

        fig = go.Figure()
        local_df["reservation_start_week_utc"] = pd.to_datetime(local_df[
            "reservation_start_week_utc"
        ].apply(lambda x: pd.Timestamp(x).to_pydatetime()))

        fig.add_trace(
            go.Scatter(
                x=local_df["reservation_start_week_utc"],
                y=local_df["weighted_average_price"],
...

the datatype of the column that populates my x-axis is datetime64[ns, UTC]
I tried casting to different types, and also several different format settings on the plot. I couldnt get it to work. Rolling back plotly immediately fixed the bug

python versions used 3.13 and 3.10 no difference.

rolling back from plotly 6.0.1 to 5.24.1 fixed the formatting issue

@gvwilson gvwilson added bug something broken P1 needed for current cycle regression this used to work labels Mar 21, 2025
@TermeHansen
Copy link

I see the same issue and is also back to version 5 for now...

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