arnaudmiribel / streamlit-extras

Discover, try, install and share Streamlit re-usable bits we call "extras"!
https://extras.streamlit.app
Apache License 2.0
727 stars 124 forks source link

Add autoscale_y to unlock mini charts #131

Closed arnaudmiribel closed 1 year ago

arnaudmiribel commented 1 year ago

This PR introduces autoscale_y parameter. When filled, it will pass alt.Scale(zero=False) to the y axis, hence making it automatically fit the min and max value of the y series.

This, in pair with explicitly setting height, makes it now easy to get a mini spark chart!

Added an example in the gallery

image

Closes #109