@jsfkit/types
    Preparing search index...

    Type Alias PivotTableStyle

    Presentation style settings for a pivot table.

    type PivotTableStyle = {
        name?: PivotTableStyleName | null;
        showColumnHeaders?: boolean;
        showColumnStripes?: boolean;
        showLastColumn?: boolean;
        showRowHeaders?: boolean;
        showRowStripes?: boolean;
    }
    Index

    Properties

    name?: PivotTableStyleName | null

    The name of the pivot table style (e.g. "PivotStyleMedium9").

    If the value is null or omitted the table should not be rendered with any special styling (note that this only applies if the style object itself is present).

    null
    
    showColumnHeaders?: boolean

    Whether column header formatting should be applied.

    false
    
    showColumnStripes?: boolean

    Whether column stripe formatting should be applied.

    false
    
    showLastColumn?: boolean

    Whether the last column's formatting from the named style is applied to the grand total column.

    false
    
    showRowHeaders?: boolean

    Whether row header formatting should be applied.

    false
    
    showRowStripes?: boolean

    Whether row stripe formatting should be applied.

    false