[]
Gets or sets the first number included in the grouped range.
When AutoStart is true, this value is ignored and the first number is determined from the PivotCache.
public double? Start { get; set; }
Public Property Start As Double?
PivotFieldNumberGroupOptions options = new PivotFieldNumberGroupOptions();
options.AutoStart = false;
options.Start = 0;
double? start = options.Start;