streamlit-aggrid
streamlit-aggrid copied to clipboard
Different row height depending on the length of cell content
Is it possible to wrap longer text without splitting words?
Reference: https://www.ag-grid.com/javascript-data-grid/row-height/
Thank you!
I did a little digging and it seems that the original css style has to be updated with the following:
ag-cell-wrap-text{white-space:normal;word-break:break-word}
While it works locally, I have no idea how to implement it for a deployed web app.