Wordwrap text in Grid cells

Hi there,
I am using Grid and find that some cells are overflowing and the text is hidden.
Is there a configuration option to set so that text will wrap within the cell?

Thanks!

Please, try to use the “autoHeight:true” property:
https://snippet.dhtmlx.com/zkcsyazg

Is there any way to make the wrap on “autoHeight:true” preserve work boundaries?

Could you please, clarify your request?

Should have been “word” boundaries - i.e. only wrap on whitespace

I see.
Please, try to use the following css:

<style>
    .dhx_grid-cell__content_auto-height{
        word-break: normal
    }
</style>