I see that displaying a dataframe with st.dataframe(df) allows the dataframe to scroll. However, if I’m drawing multiple graphs within individual columns of an expandable, sometimes, the “overrun” the width and get clipped. It would be very helpful in this case, to allow the expandable to horizontally scroll, so that I don’t lose my graphs.
Does such functionality exist?
Here’s a minimal example of what I’m trying to do:
graphs = [some, list, of, graph, data]
with st.expandable("section title"):
cols = st.columns(len(graphs))
for col, graph_data in zip(cols, graphs):
st.altair_graph(my_draw_graph_function(graph_data))