[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.PivotFieldNumberGroupOptions.Interval

Interval Property

Interval

Gets or sets the numeric interval used to create each generated group.

The interval must be greater than 0 and finite when grouping is applied. The effective start value must also be less than the effective end value. The default value is 1.

Declaration
public double Interval { get; set; }
Public Property Interval As Double
Examples
PivotFieldNumberGroupOptions options = new PivotFieldNumberGroupOptions();
options.Interval = 10;
double interval = options.Interval;