Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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

C#
public bool IsGrouped { get; }

#Property Value

Type Description
Boolean

true if data grouping is applied; otherwise, false.

#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.

Grid 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.

See Also