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