PivotNumbericRangeGroupSettings
PivotNumbericRangeGroupSettings class
Represents the numeric range group of the pivot field.
class PivotNumbericRangeGroupSettings extends PivotNumericRangeGroupSettings;
Remarks
NOTE: This class is now obsolete. Instead, please use PivotNumericRangeGroupSettings class instead . This method will be removed 6 months later since July 2026. Aspose apologizes for any inconvenience you may have experienced.
Constructors
| Constructor | Description |
|---|---|
| constructor(PivotNumericRangeGroupSettings) | Constructs from a parent object convertible to this. |
Properties
| Property | Type | Description |
|---|---|---|
| start | number | Readonly. Gets the start number of the group. |
| end | number | Readonly. Gets the end number of the group. |
| interval | number | Readonly. Gets the interval of the group. |
Methods
| Method | Description |
|---|---|
| isNull() | Checks whether the implementation object is null. |
| getStart() | @deprecated. Please use the ‘start’ property instead. Gets the start number of the group. |
| getEnd() | @deprecated. Please use the ’end’ property instead. Gets the end number of the group. |
| getInterval() | @deprecated. Please use the ‘interval’ property instead. Gets the interval of the group. |
| getType() | Gets the group type. |
constructor(PivotNumericRangeGroupSettings)
Constructs from a parent object convertible to this.
constructor(obj: PivotNumericRangeGroupSettings);
Parameters:
| Parameter | Type | Description |
|---|---|---|
| obj | PivotNumericRangeGroupSettings | The parent object. |
start
Readonly. Gets the start number of the group.
start : number;
end
Readonly. Gets the end number of the group.
end : number;
interval
Readonly. Gets the interval of the group.
interval : number;
isNull()
Checks whether the implementation object is null.
isNull() : boolean;
getStart()
@deprecated. Please use the ‘start’ property instead. Gets the start number of the group.
getStart() : number;
getEnd()
@deprecated. Please use the ’end’ property instead. Gets the end number of the group.
getEnd() : number;
getInterval()
@deprecated. Please use the ‘interval’ property instead. Gets the interval of the group.
getInterval() : number;
getType()
Gets the group type.
getType() : PivotFieldGroupType;
Returns