Skip to main content
.NET 8.0+

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

IModelColumn.GroupInterval Property

Specifies the group interval.

Namespace: DevExpress.ExpressApp.Model

Assembly: DevExpress.ExpressApp.v24.2.dll

NuGet Package: DevExpress.ExpressApp

#Declaration

[DefaultValue(GroupInterval.None)]
GroupInterval GroupInterval { get; set; }

#Property Value

Type Default Description
GroupInterval None

A GroupInterval enumeration value specifying the group interval. The default is GroupInterval.None.

Available values:

Name Description
None

Specifies that a separate group is created for each unique DateTime value.

Day

Specifies that DateTime records are grouped by the day part of their values.

Month

Specifies that DateTime records are grouped by the month part of their values.

Year

Specifies that DateTime records are grouped by the year part of their values.

Smart

Specifies that DateTime records are grouped using Outlook style.

#Remarks

This property is considered for DateTime properties. When the GroupInterval is specified, the groups are not created for each DateTime unique value, but for specific value ranges.

See Also