streamlit-aggrid icon indicating copy to clipboard operation
streamlit-aggrid copied to clipboard

how to make text wrap in aggrid cells?

Open fredzannarbor opened this issue 3 years ago • 2 comments

Hi,

Two goals:

  1. simple wrap of "abcdefghijkl"

abcdef ghijkl

  1. respect line feeds/cr in strings

line 1 line 2 etc.

fredzannarbor avatar May 17 '22 05:05 fredzannarbor

Just add

    "wrapText": True,
    "autoHeight": True, 

to column Definitions

you may use :

gridOptionsBuilder.configure_default_column(wrapText=True, autoHeight=True)

PablocFonseca avatar May 20 '22 01:05 PablocFonseca

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,

rhajou avatar Aug 31 '22 10:08 rhajou