I’m currently working on a Streamlit application where I’m displaying data in a table format. I’ve noticed that when I use the st.dataframe() function to display the data, the boolean values are shown as checkboxes, like this:
Is there any way to display boolean values as checkboxes using st.table()? I prefer the visual display of the checkboxes as it’s more intuitive for the user.
As far as I know, checkboxes only work with st.dataframe() and not with st.table().
I’m including @lukasmasuch, who supervised the development of our latest st.dataframe() widget and could definitely confirm this. He might even have a hack or two up his sleeve!