I have the following code that produces a plot with Streamlit.
fig, ax = plt.subplots(figsize=(5,5))
plt.pie(label)
st.sidebar.pyplot(fig)
I want to change the default background color of the plot which is white in my case.
How can I do this?
Let me know if you need further information.