BUG: column width settlement error

step 1: online samples for DHTMLX Grid.
step 2: Grid. Auto empty row
step 3: Replace JavaScript content with the following steps
step 4: Observe the contents of the project column, which is not complete

document.documentElement.style.setProperty("--dhx-font-size-normal", "17px");

const data = [
    {
        "project": "Real Estate1 Real Estate2 Real Estate3 Real Estate4,Real Estate5,Real Estate6,Real Estate7,",
        'status':'sssssssssssssssssssssss'
    }
    
];
const grid = new dhx.Grid("grid", {
    columns: [
        {
            id: "project",
            header: [{ text: "Project" }],
        },
        {
            id: "status", header: [{ text: "Status" }],
        },
        
    ],
    autoWidth:false,
    adjust: 'data',
    data: data,
});

Hi,

When using a grid with the adjust: “data” property enabled, the cell width is calculated based on the content using the default font size of 14px. If the font size is changed, the grid not recalculate the cell width accordingly, which can result in the content not fitting properly inside the cells.

I’ve passed your feedback to the development team — perhaps in a one of the future update, we’ll be able to introduce a more flexible calculation that takes font size into account. Thank you for your report!