resizable
Optional. Defines whether a column can be resized
Usage
resizable?: boolean;
Default value: false
Example
const grid = new dhx.Grid("grid_container", {
columns: [
{ id: "population", header: [{ text: "Population" }], resizable: false },
// more columns configuration objects
],
resizable: true,
// more options
});
Related article: Resizable columns