streamlit-aggrid
streamlit-aggrid copied to clipboard
how to make text wrap in aggrid cells?
Hi,
Two goals:
- simple wrap of "abcdefghijkl"
abcdef ghijkl
- respect line feeds/cr in strings
line 1 line 2 etc.
Just add
"wrapText": True,
"autoHeight": True,
to column Definitions
you may use :
gridOptionsBuilder.configure_default_column(wrapText=True, autoHeight=True)
Hello @PablocFonseca , is their a way to keep wrapText = True and use Height ? It seems that if we remove autoHeight = True, the wrapText will not work. Before adding wrapText=True to .configure_default_column, I had a height parameter in the AgGrid that worked very well, but it seems once I add wrapText and autoHeight, AgGrid function will ignore the height paramter.
Thank you,