From da6b18a48133e09c1299df1720e7b59354cee32d Mon Sep 17 00:00:00 2001 From: Naveen S P Date: Mon, 4 May 2026 10:45:36 +0530 Subject: [PATCH] Documentation(1019522): Grid column width Auto --- blazor/datagrid/columns.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/blazor/datagrid/columns.md b/blazor/datagrid/columns.md index 528e7cf6cf..e327980783 100644 --- a/blazor/datagrid/columns.md +++ b/blazor/datagrid/columns.md @@ -158,10 +158,14 @@ The Syncfusion® Blazor DataGrid supports th **1. Auto** -The column width is automatically calculated based on the content within its cells. If the content exceeds the `Width` setting, it is truncated with an ellipsis (...). +The column width is automatically calculated based on the content within the column cells. If the content exceeds the specified width in the `GridColumn`, it is truncated with an ellipsis (…) at the end. To allow a column to adjust its width dynamically based on content, set the Width property of the `GridColumn` to "auto". + +A Grid can combine both flexible and fixed-width columns to create a balanced layout. For example, consider three columns: "Order ID", "Customer Name", and "Freight". The "Customer Name" column automatically adjusts its width based on the length of the names, while the "Order ID" and "Freight" columns remain fixed. This ensures that numeric fields stay consistent while text fields expand as needed. ```cshtml - + + + ``` **2. Percentage**