Skip to content

RowPanel🔗

Row panel

Definition🔗

export interface RowPanel {
    // The panel type
    type: "row";
    // Whether this row should be collapsed or not.
    collapsed: boolean;
    // Row title
    title?: string;
    // Name of default datasource for the row
    datasource?: dashboard.DataSourceRef;
    // Row grid position
    gridPos?: dashboard.GridPos;
    // Unique identifier of the panel. Generated by Grafana when creating a new panel. It must be unique within a dashboard, but not globally.
    id: number;
    // List of panels in the row
    panels: dashboard.Panel[];
    // Name of template variable to repeat for.
    repeat?: string;
}

Methods🔗

No methods.

See also🔗