DataGridView.IsGrouped Property
Returns whether the grid’s data is grouped.
Namespace: DevExpress.Maui.DataGrid
Assembly: DevExpress.Maui.DataGrid.dll
NuGet Package: DevExpress.Maui.DataGrid
Declaration
public bool IsGrouped { get; }
Property Value
Type | Description |
---|---|
Boolean |
|
Remarks
The grid allows you to group data by a single column. To group grid rows by a column’s values, set the column’s IsGrouped property to True
.
Groups of data rows (rows that have identical values in the specified column) are separated with group rows that a user can tap to expand or collapse groups. You can also display summary information about groups (for example, sum of values, the number of records, the minimum or maximum value, etc.) in group rows.
Refer to the following help topic for more information on how to group grid rows: How to Group Rows in DevExpress Data Grid for .NET MAUI.