Bar chart sorted by month name

Summary

How do plot a bar chart sorted by month name?

Steps to reproduce

Code snippet:

    b2 = iris.pivot_table('fee', index='Month', columns='AcademyName', aggfunc='sum')
    st.bar_chart(b2)

Hi @neelakandan_rakesh ,

our bar charts are built on altair.
if you want to sort the month name, you can use altair’s sorting methods or hard code the x axis. I’m not sure how you are displaying the x axis and what type the x axis is using but hopefully this helps. Let me know if you need more help.

1 Like

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