minWidth
Optional. The minimum width to be set for a column
Usage
minWidth?: number;
Example
const grid = new dhx.Grid("grid_container", {
columns: [
{ id: "project", header: [{ text: "Project" }], minWidth: 150 },
// more columns configuration objects
],
// more options
});
Related sample: Grid. Columns min width