@jsfkit/types
    Preparing search index...

    Type Alias PivotCacheRangePr

    Range grouping properties that define how a cache field's values are grouped into intervals.

    type PivotCacheRangePr = {
        autoEnd?: boolean;
        autoStart?: boolean;
        endDate?: string;
        endNum?: number;
        groupBy?: PivotGroupBy;
        groupInterval?: number;
        startDate?: string;
        startNum?: number;
    }
    Index

    Properties

    autoEnd?: boolean

    Whether the end value is determined automatically from source data.

    true
    
    autoStart?: boolean

    Whether the start value is determined automatically from source data.

    true
    
    endDate?: string

    End date for date range grouping (ISO 8601 datetime string).

    endNum?: number

    End value for numeric range grouping.

    groupBy?: PivotGroupBy

    The grouping unit.

    'range'
    
    groupInterval?: number

    The interval size for each group.

    1
    
    startDate?: string

    Start date for date range grouping (ISO 8601 datetime string).

    startNum?: number

    Start value for numeric range grouping.