PivotField.GroupItems(Double, Double, Double) Method
Performs numeric grouping in the current field.
Namespace: DevExpress.Spreadsheet
Assembly: DevExpress.Spreadsheet.v24.1.Core.dll
NuGet Package: DevExpress.Spreadsheet.Core
Declaration
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
Worksheet worksheet = workbook.Worksheets["Report12"];
workbook.Worksheets.ActiveWorksheet = worksheet;
// Access the pivot table by its name in the collection.
PivotTable pivotTable = worksheet.PivotTables["PivotTable1"];
// Access the "Usual Hours Worked" field by its name in the collection.
PivotField field = pivotTable.Fields["Sales"];
// Group field items from 1000 to 4000 by 1000.
field.GroupItems(1000, 4000, 1000, PivotFieldGroupByType.NumericRanges);
See Also