@theredhead — Frontend Library - v1.0.0
    Preparing search index...

    Interface DashboardGridPlacement

    Grid placement descriptor for a single dashboard panel.

    Values map directly to CSS grid-column / grid-row span units. All values default to 1 when omitted.

    interface DashboardGridPlacement {
        colSpan?: number;
        rowSpan?: number;
    }
    Index

    Properties

    Properties

    colSpan?: number

    Number of columns the panel spans.

    rowSpan?: number

    Number of rows the panel spans.