Very likely I could me missing something here, but how do I change/increase the height of an Altair plot in Streamlit. I can set the width and height properties for my alt.Chart but once in Streamlit only the width is implemented.
I notice in st.altair_chart there is a width but not height argument. Just wondering why this is?
Thanks @Adrien_Treuille! I had put the height argument in the alt.Chart definition. Playing around I’ve worked out that passing st.altair_chart(alt.layer(chart)) rather than st.altair_chart(chart) makes the difference