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.
This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.