Skip to main content
A newer version of this page is available. .

XRPivotGrid.CustomGroupInterval Event

Allows you to custom group values of column and row fields.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v19.1.dll

NuGet Packages: DevExpress.Reporting.Core, DevExpress.WindowsDesktop.Core

Declaration

public event EventHandler<PivotCustomGroupIntervalEventArgs> CustomGroupInterval

Event Data

The CustomGroupInterval event's data class is DevExpress.XtraReports.UI.PivotGrid.PivotCustomGroupIntervalEventArgs.

Remarks

Values of column and row fields can be grouped into bigger ranges. You can select one of the predefined group modes available via the PivotGridFieldBase.GroupInterval property. If none of these group modes match your requirements, you can implement custom grouping.

To custom group a field’s values, set the PivotGridFieldBase.GroupInterval property to Custom and handle the CustomGroupInterval event to implement custom grouping logic. The event fires for each value of a field. While handling the event, use the GroupValue parameter to specify the group that will own the currently processed value. For values to be displayed in a single group, provide the same value for the GroupValue parameter.

Note

Custom grouping is not supported in OLAP mode.

See Also