@helix-x/datagrid-ui - v0.1.2
    Preparing search index...

    Interface ColumnLayout<T, C>

    The measured layout of every visible column.

    interface ColumnLayout<T, C = unknown> {
        items: ColumnLayoutItem<T, C>[];
        leftPinnedWidth: number;
        rightPinnedWidth: number;
        totalWidth: number;
    }

    Type Parameters

    • T

      The row type.

    • C = unknown

      The context type.

    Index
    items: ColumnLayoutItem<T, C>[]

    Visible columns in display order, each with its geometry.

    leftPinnedWidth: number

    Combined width of the left-pinned columns.

    rightPinnedWidth: number

    Combined width of the right-pinned columns.

    totalWidth: number

    Combined width of all visible columns.