Back to Devexpress

DataSourceColumnBindingBase.GroupIntervalNumericRange Property

corelibraries-devexpress-dot-pivotgrid-dot-databinding-dot-datasourcecolumnbindingbase-51905a0d.md

latest2.3 KB
Original Source

DataSourceColumnBindingBase.GroupIntervalNumericRange Property

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

Namespace : DevExpress.PivotGrid.DataBinding

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

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

Declaration

csharp
[DefaultValue(10)]
public int GroupIntervalNumericRange { get; set; }
vb
<DefaultValue(10)>
Public Property GroupIntervalNumericRange As Integer

Property Value

TypeDefaultDescription
Int3210

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.

aspx
<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

DataSourceColumnBindingBase Class

DataSourceColumnBindingBase Members

DevExpress.PivotGrid.DataBinding Namespace