Member Junction
    Preparing search index...

    Interface MJUserViewEntity_IGridAggregateDisplay

    Display settings for the aggregate panel and pinned summary row.

    Used inside MJUserViewEntity_IGridAggregatesConfig.display to control where and how aggregate values are rendered — as pinned rows under columns, as summary cards in a side/bottom panel, or both.

    interface MJUserViewEntity_IGridAggregateDisplay {
        cardGridColumns?: number;
        cardLayout?: "horizontal" | "vertical" | "grid";
        cardPanelCollapsible?: boolean;
        cardPanelStartCollapsed?: boolean;
        cardPanelTitle?: string;
        cardPanelWidth?: number;
        cardPosition?: "right" | "bottom";
        columnPosition?: "top" | "bottom";
        showCardAggregates?: boolean;
        showColumnAggregates?: boolean;
    }
    Index

    Properties

    cardGridColumns?: number

    Number of columns for 'grid' layout

    cardLayout?: "horizontal" | "vertical" | "grid"

    Card layout style

    cardPanelCollapsible?: boolean

    Whether card panel is collapsible

    cardPanelStartCollapsed?: boolean

    Whether card panel starts collapsed

    cardPanelTitle?: string

    Card panel title

    cardPanelWidth?: number

    Card panel width in pixels (for 'right' position)

    cardPosition?: "right" | "bottom"

    Where to show the card panel

    columnPosition?: "top" | "bottom"

    Where to show column aggregates: pinned top or bottom row

    showCardAggregates?: boolean

    Whether to show card aggregates in a panel

    showColumnAggregates?: boolean

    Whether to show column-bound aggregates in pinned row