blazor-devexpress-dot-blazor-bb1ddffc.md
Contains values that specify how the values of a column or row field are combined into groups.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
public enum PivotGridGroupInterval
| Name | Description |
|---|---|
NotSet |
Unique field values are displayed as is.
|
| Year |
This option is in effect only for fields that store date/time values.
Field values are grouped by the year. Examples : 2003, 2004, 2005.
|
| Quarter |
This option is in effect only for fields that store date/time values.
Field values are grouped by the quarterly intervals of the year. Each quarter includes three months. Examples : 1, 2, 3, and 4.
|
| Month |
This option is in effect only for fields that store date/time values.
Field values are grouped by the month part. Examples : January, February, March (the actual names of the months are determined by the current culture).
|
The following properties accept/return PivotGridGroupInterval values:
The control doesn’t group the values of column and row fields by default and displays all their unique values. You can use the GroupInterval property to combine values of these fields into groups.
For instance, you can set GroupInterval to Year for a field that displays date/time values. The field combines values belonging to the same year and displays them grouped by year.
See Also