layout
Grafana Cloud Enterprise Open source

layout

There are four layout options offering two types of panel control:

Panel layout options

These options control the size and position of panels:

  • GridLayoutKind - Corresponds to the Custom option in the UI. You define panel size and panel positions using x- and y- settings.
  • AutoGridLayoutKind - Corresponds to the Auto grid option in the UI. Panel size and position are automatically set based on column and row parameters.

Panel grouping options

These options control the grouping of panels:

GridLayoutKind

The grid layout allows you to manually size and position grid items by setting the height, width, x, and y of each item. This layout corresponds to the Custom option in the UI.

Following is the JSON for a default grid layout, a grid layout item, and a grid layout row:

json
    "kind": "GridLayout",
    "spec": {
      "items": [
        {
          "kind": "GridLayoutItem",
          "spec": {
            "element": {...},
            "height": 0,
            "width": 0,
            "x": 0,
            "y": 0
          }
        },
        {
          "kind": "GridLayoutRow",
          "spec": {
            "collapsed": false,
            "elements": [],
            "title": "",
            "y": 0
          }
        },
      ]
    }

GridLayoutKind consists of:

  • kind: “GridLayout”
  • spec: GridLayoutSpec
    • items: GridLayoutItemKind or GridLayoutRowKind

GridLayoutItemSpec

The following table explains the usage of the grid layout item JSON fields:

NameUsage
xinteger. Position of the item x-axis.
yinteger. Position of the item y-axis.
widthWidth of the item in pixels.
heightHeight of the item in pixels.
elementElementReference. Reference to a PanelKind from dashboard.spec.elements expressed as JSON Schema reference.
repeat?RepeatOptions. Configured repeat options, if any

RepeatOptions

The following table explains the usage of the repeat option JSON fields:

NameUsage
modeRepeatMode - “variable”
valuestring
direction?Options are h for horizontal and v for vertical.
maxPerRow?integer

GridLayoutRowSpec

The following table explains the usage of the grid layout row JSON fields:

NameUsage
yinteger. Position of the row y-axis
collapsedbool. Whether or not the row is collapsed
titleRow title
elements[...GridLayoutItemKind]. Grid items in the row will have their y value be relative to the row’s y value. This means a panel positioned at y: 0 in a row with y: 10 will be positioned at y: 11 (row header has a height of 1) in the dashboard.
repeat?RowRepeatOptions Configured row repeat options, if any

RowRepeatOptions

NameUsage
modeRepeatMode - “variable”
valuestring

AutoGridLayoutKind

With an auto grid, Grafana sizes and positions your panels for the best fit based on the column and row constraints that you set. This layout corresponds to the Auto grid option in the UI.

Following is the JSON for a default auto grid layout and a grid layout item:

json
    "kind": "AutoGridLayout",
    "spec": {
      "columnWidthMode": "standard",
      "fillScreen": false,
      "items": [
        {
          "kind": "AutoGridLayoutItem",
          "spec": {
            "element": {...},
          }
        }
      ],
      "maxColumnCount": 3,
      "rowHeightMode": "standard"
    }

AutoGridLayoutKind consists of:

AutoGridLayoutSpec

The following table explains the usage of the auto grid layout JSON fields:

NameUsage
maxColumnCount?number. Default is 3.
columnWidthModeOptions are: narrow, standard, wide, and custom. Default is standard.
columnWidth?number
rowHeightModeOptions are: short, standard, tall, and custom. Default is standard.
rowHeight?number
fillScreen?bool. Default is false.
itemsAutoGridLayoutItemKind. Consists of:

AutoGridLayoutItemSpec

The following table explains the usage of the auto grid layout item JSON fields:

NameUsage
elementElementReference. Reference to a PanelKind from dashboard.spec.elements expressed as JSON Schema reference.
repeat?AutoGridRepeatOptions. Configured repeat options, if any.
conditionalRendering?ConditionalRenderingGroupKind. Rules for hiding or showing panels, if any. Consists of:
AutoGridRepeatOptions

The following table explains the usage of the auto grid repeat option JSON fields:

NameUsage
modeRepeatMode - “variable”
valueString
ConditionalRenderingGroupSpec
NameUsage
visibilityOptions are show and hide
conditionOptions are and and or
itemsOptions are:
ConditionalRenderingVariableSpec
NameUsage
variablestring
operatorOptions are equals and notEquals
valuestring
ConditionalRenderingDataSpec
NameType
valuebool
ConditionalRenderingTimeRangeSizeSpec
NameType
valuestring

RowsLayoutKind

The RowsLayoutKind is one of two options that you can use to group panels. You can nest any other kind of layout inside a layout row. Rows can also be nested in auto grids or tabs.

Following is the JSON for a default rows layout row:

json
    "kind": "RowsLayout",
    "spec": {
      "rows": [
        {
          "kind": "RowsLayoutRow",
          "spec": {
            "layout": {
              "kind": "GridLayout", // Can also be AutoGridLayout or TabsLayout
              "spec": {...}
            },
            "title": ""
          }
        }
      ]
    }

RowsLayoutKind consists of:

  • kind: RowsLayout
  • spec: RowsLayoutSpec

RowsLayoutRowSpec

The following table explains the usage of the rows layout row JSON fields:

NameUsage
title?Title of the row.
collapsebool. Whether or not the row is collapsed.
hideHeader?bool. Whether the row header is hidden or shown.
fullScreen?bool. Whether or not the row takes up the full screen.
conditionalRendering?ConditionalRenderingGroupKind. Rules for hiding or showing rows, if any. Consists of:
repeat?RowRepeatOptions. Configured repeat options, if any.
layoutSupported layouts are:

TabsLayoutKind

The TabsLayoutKind is one of two options that you can use to group panels. You can nest any other kind of layout inside a tab. Tabs can also be nested in auto grids or rows.

Following is the JSON for a default tabs layout tab and a tab:

json
    "kind": "TabsLayout",
    "spec": {
      "tabs": [
        {
          "kind": "TabsLayoutTab",
          "spec": {
            "layout": {
              "kind": "GridLayout", // Can also be AutoGridLayout or RowsLayout
              "spec": {...}
            },
            "title": "New tab"
          }
        }
      ]
    }

TabsLayoutKind consists of:

  • kind: TabsLayout
    • spec: TabsLayoutSpec

TabsLayoutTabSpec

The following table explains the usage of the tabs layout tab JSON fields:

NameUsage
title?The title of the tab.
layoutSupported layouts are:
conditionalRendering?ConditionalRenderingGroupKind. Rules for hiding or showing panels, if any. Consists of: