Stacked plotly barcharts not working since Version 1.44.0

Hello,
I discovered a small bug when using the new version ( Version 1.44.0). I got a problem displaying stacked barchats with st.plotly_chart.
The previous version displays the visual (with the same code) correctly.

fig.update_layout(
    legend=dict(
        title="tilte",
        orientation="v",
        yanchor="top",
        xanchor="right",
        bgcolor='rgba(255, 255, 255, 0.5)'
    ),
    barmode='stack',  # Stacked bars!
)

st.plotly_chart(fig, use_container_width=True)

Before update (Version 1.43.0)

After update (Version 1.44.0) :

Thank you!

1 Like

Facing a similar issue. Streamlit cloud isn’t rendering stacked barcharts. Stacked barmode works when app is run locally.