Can you hide the legend in st.bar_chart?
This is useful when you’re just plotting 1 series, so that you don’t waste horizontal space (especially for mobile). Does it support titles?
Can you hide the legend in st.bar_chart?
This is useful when you’re just plotting 1 series, so that you don’t waste horizontal space (especially for mobile). Does it support titles?
Hi @hack-r,
Thanks for posting! Although this isn’t supported out of the box, st.bar_chart uses Altair under the hood, so you should be able to create an Altair chart with the exact specifications you’re looking for, and then pass that to st.altair_chart. Check out this thread for more details.
Caroline
OK, thank you Caroline, I appreciate it