Skip to main content

DataSourceColumnBindingBase.GroupIntervalNumericRange Property

Gets or sets the length of group intervals for certain group types.

Namespace: DevExpress.PivotGrid.DataBinding

Assembly: DevExpress.PivotGrid.v23.2.Core.dll

NuGet Packages: DevExpress.PivotGrid.Core, DevExpress.Win.Navigation

Declaration

[DefaultValue(10)]
public int GroupIntervalNumericRange { get; set; }

Property Value

Type Default Description
Int32 10

An integer that specifies the length of group intervals.

Remarks

When you set the GroupInterval property to Numeric, use the GroupIntervalNumericRange property to specify the length of the intervals. For instance, if the GroupIntervalNumericRange property is set to 100, the values are combined into the following intervals: 0-100, 101-200, 201-300, and so on.

<dx:PivotGridField ID="fieldOrderID" Area="ColumnArea" Caption="Order ID" Name="fieldOrderID">
    <DataBindingSerializable>
        <dx:DataSourceColumnBinding ColumnName="OrderID" GroupIntervalNumericRange="100" GroupInterval="Numeric" />
    </DataBindingSerializable>
</dx:PivotGridField>

See the following help topic for details: Grouping.

See Also