rx-datatable API
    Preparing search index...

    Interface TableMetrics

    interface TableMetrics {
        cellPadding?: string;
        itemPadding?: string;
        stripeBackground?: string;
        treeIndent?: string | number;
    }

    Hierarchy (View Summary)

    Index
    cellPadding?: string

    Padding of table cells, unless the noPadding item prop is set (--dtbl-cell-padding).

    itemPadding?: string

    Padding of list/tree items outside tables (--dtbl-item-padding).

    stripeBackground?: string

    Tint drawn over every other table row — the 1st, 3rd, 5th... (--dtbl-stripe-bg; default: transparent, i.e. no striping). Although this is a color, it lives in TableMetrics because a translucent value (see the stripedRows preset) reads correctly over any color scheme, making striping an independent layout choice. Selection and hover tints replace the stripe on their row. Note: with virtualize, off-screen rows collapse into placeholders, so stripe parity is relative to the rendered rows and can shift while scrolling.

    treeIndent?: string | number

    Indent per level of tree nesting (--dtbl-indent). A number means pixels. This is ignored by tables/trees that have an explicit indentPerLevel prop.