@jsfkit/types
    Preparing search index...

    Type Alias PivotFieldItem

    An item within a pivot field. Items represent individual values, subtotals, or other special entries in a row or column field.

    type PivotFieldItem = {
        expanded?: boolean;
        hidden?: boolean;
        itemIndex?: integer;
        itemType?: PivotItemType;
        missing?: boolean;
        name?: string;
    }
    Index

    Properties

    expanded?: boolean

    Whether this item's children are expanded (visible).

    true
    
    hidden?: boolean

    Whether this item is hidden (filtered out).

    false
    
    itemIndex?: integer

    Index into the corresponding cache field's sharedItems array. Absent for non-data items (subtotals, grand totals, blanks).

    itemType?: PivotItemType

    The type of this item.

    'data'
    
    missing?: boolean

    Whether this item refers to a value that is no longer in the source data (a "missing" item).

    false
    
    name?: string

    Display name override for this item. When absent, the item's name is derived from the cache field's shared items.