Data Grid Column Sizing - How to apply Flex Width

Hey everyone,

I’m encountering an issue with binding the column widths in my data grid. I’m trying to achieve the following configuration for each column:

width: flex
flex: 1
minWidth: 130px

Currently, only the minWidth property seems to be taking effect, while the width: flex and flex: 1 settings are not working as expected.

Could anyone offer some guidance or suggestions on how to properly implement flexible column widths with a minimum size in this scenario? Any help would be greatly appreciated.

Thanks!

Find the issue, the data grid expected the next format when column binding is flex:
widthAlgo: “flex”,
flex: 1,
minWidth: “120px”,

It’s not “width,” and unfortunately, it is unclear in the documentation.