How can I change bar grpah style?

loc_frame = st.selectbox("by region/by sub region/by country", ("Region", "SubRegion", "Country"))
whole_values = my_sz.groupby(loc_frame)[['quantity']].sum()
whole_values.index.name = 'index'
st.bar_chart(whole_values, use_container_width = True)

I want to make above bar graph thinner than that…
How can I chage the size of the bar? and color too!

Hi @Jisu_Lee,

Maybe check bar_chart doc and see how panda.Styler works.

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.