Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+
Row

PivotField.GroupItems(Double, Double, Double) Method

Performs numeric grouping in the current field.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v19.1.Core.dll

Declaration

void GroupItems(
    double startValue,
    double endValue,
    double interval
)

Parameters

Name Type Description
startValue Double

A Double value that is the smallest value to be grouped. If this argument is omitted or null, the smallest value in the field is used.

endValue Double

A Double value that is the largest value to be grouped. If this argument is omitted or null, the largest value in the field is used.

interval Double

A Double value that specifies an interval for each group. If this argument is omitted, the group interval is calculated automatically.

Example

Dim worksheet As Worksheet = workbook.Worksheets("Report12")
workbook.Worksheets.ActiveWorksheet = worksheet

' Access the pivot table by its name in the collection.
Dim pivotTable As PivotTable = worksheet.PivotTables("PivotTable1")
' Access the "Usual Hours Worked" field by its name in the collection.
Dim field As PivotField = pivotTable.Fields("Sales")
' Group field items from 1000 to 4000 by 1000.
field.GroupItems(1000, 4000, 1000, PivotFieldGroupByType.NumericRanges)
See Also