Dynamic Cell height in Data editor

Hi there,
I have a project where the data inside one of the column is too large, is there any way to dynamically increase the cell height within any column of st data editor.
I basically want a st data editor to have increase cell height rendered to get the complete data within the cell to the user rather than clicking to expand the cell.

edited_df = st.data_editor(
df_with_selections,
use_container_width=True,
hide_index=True,
column_config={“Select”: st.column_config.CheckboxColumn(required=True),
“Event Data”: st.column_config.TextColumn(width=“large”)},
disabled=df.columns,
)

this is my data editor

3 Likes

Same issue

Same same

i am having the same issue

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