How to see and download the data set for each charts

I want to add the option in the ellipsis menu to see the data set of each chart. How i can customize the ellipsis menu in Streamlit.

Hi @info_testing,

Thanks for posting!

Are you referring to the ellipsis in the top right corner of your Streamlit app? If yes, then that is a bit tricky to do within Streamlit. You can however use a button to show data when clicked. Something like this in your app:

if st.button('Show Data Set'):
   st.dataframe(data)

I am referring to the ellipsis menu. I want to add an option using ellipsis menu.

Are you referring to this ellipsis menu? If not, please share a screenshot. If it is this, then my response above still applies.

Screenshot 2023-09-13 at 8.26.42 AM

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