Articles in this section
Category / Section

How to group by a column that is not in Columns collection in Xamarin.Forms DataGrid?

1 min read

SfDataGrid allows you to perform grouping by defining the GroupColumnDescription object and adding it in the SfdataGrid.GroupColumnDescriptions collection.

You can group by a column that is not in the column collection by simply adding the property to be grouped GroupColumnDescription and skip adding the column in the SfDataGrid.Columns collection.

You can skip adding a column in the SfDataGrid.Columns collections by manually defining the columns by setting SfDataGrid.AutoGenerateColumns as False. You can also skip adding a column using the AutoGeneratingColumn event for automatically generated columns.

The below code illustrates how to group by a column that is not defined in the SfDataGrid.Columns collection.

<ContentPage.Content>
<syncfusion:SfDataGrid x:Name="dataGrid"
                        ColumnSizer="Star"
                        AutoGenerateColumns="False"
                        ItemsSource="{Binding OrdersInfo}">
  <syncfusion:SfDataGrid.Columns>
    <syncfusion:GridTextColumn HeaderText="Order ID"
                                MappingName="OrderID"/>
    <syncfusion:GridTextColumn HeaderText="Employee ID"
                                MappingName="EmployeeID"/>
    <syncfusion:GridTextColumn HeaderText="Customer ID"
                                MappingName="CustomerID"/>
    <syncfusion:GridTextColumn HeaderText="Last Name"
                                MappingName="LastName"/>
  </syncfusion:SfDataGrid.Columns>
 
  <syncfusion:SfDataGrid.GroupColumnDescriptions>
    <syncfusion:GroupColumnDescription ColumnName="FirstName"/>
  </syncfusion:SfDataGrid.GroupColumnDescriptions>
    
</syncfusion:SfDataGrid>
</ContentPage.Content>

 

Screenshot:

Table

Description automatically generated

 

Sample Link:

How to group by a column that is not in Columns collection?


Conclusion

I hope you enjoyed learning about how to group by a column that is not in Columns collection.


You can refer to our Xamarin.Forms DataGrid feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications.

For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.

If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forumsDirect-Trac, or feedback portal. We are always happy to assist you!

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied