New to Kendo UI for Angular? Start a free 30-day trial
ResizeMode
Updated on Oct 30, 2025
Defines the type for the resizable property. See example
The possible values are:
- constrained—Adjacent columns resize only up to their outer borders.
- unconstrained—Columns resize relative to the entire component.
html
<kendo-grid [kendoGridBinding]="gridData" [height]="370" resizable="constrained">
    <kendo-grid-column field="ProductID" title="ID"></kendo-grid-column>
    ...
</kendo-grid>type ResizeMode = "unconstrained" | "constrained";