ng-xtend API documentation
    Preparing search index...

    Type Alias XtGroupBy<T>

    Configuration for grouping entities by a field and computing aggregates.

    type XtGroupBy<T> = {
        display: { [key: string]: XtGroupByAggregate<T> };
        label?: string;
        of: keyof T;
        show?: XtGroupByShow;
        atLeastOneGroupIsRequested(): boolean;
        getRequiredListOfFields(): Set<keyof T>;
    }

    Type Parameters

    • T

    Implemented by

    Index

    Properties

    display: { [key: string]: XtGroupByAggregate<T> }
    label?: string
    of: keyof T

    Methods