width
Optional. The width of a column
note
Note that width can't be less than 20px.
The property is ignored if the adjust
property is used.
Usage
width?: number;
Default value: 100
Example
const grid = new dhx.Grid("grid_container", {
columns: [
{ id: "country", header: [{ text: "Country" }], width: 200 },
// more columns configuration objects
],
// more options
});