PivotItemCollection

PivotItemCollection class

Represents all the PivotItem objects in the PivotField.

class PivotItemCollection;

Methods

MethodDescription
get(number)Gets the PivotItem Object at the specific index.
get(string)Gets the PivotItem by the specific name.
hideAllDetail(boolean)Sets whether to hide all detail of all PivotItems in a pivot field. That is collapse/expand this field.
swapItem(number, number)Directly swap two items.

get(number)

Gets the PivotItem Object at the specific index.

get(index: number) : PivotItem;

Parameters:

ParameterTypeDescription
indexnumber

Returns

PivotItem

get(string)

Gets the PivotItem by the specific name.

get(itemValue: string) : PivotItem;

Parameters:

ParameterTypeDescription
itemValuestring

Returns

PivotItem

hideAllDetail(boolean)

Sets whether to hide all detail of all PivotItems in a pivot field. That is collapse/expand this field.

hideAllDetail(isHiddenDetail: boolean) : void;

Parameters:

ParameterTypeDescription
isHiddenDetailbooleanWhether hide the detail of the pivot field.

swapItem(number, number)

Directly swap two items.

swapItem(index1: number, index2: number) : void;

Parameters:

ParameterTypeDescription
index1number
index2number