Rows Arrayedit

rows are where panels are usually placed, and the only place they can be added via the browser UI.

"rows": [
    {
      "title": "Charts",
      "height": "150px",
      "editable": true,
      "collapse": false,
      "collapsable": true,

Row objects contain a panel array as well as several other properties describing the row:

  • title: The row title
  • height: The height of the row, in pixels, with the px designation
  • editable: true/false describing whether or not the panel is editable
  • collapse: true/false describing whether or not the row is collapse
  • collapsable:true/false describing whether or not the user is allowed to collapse the row

Panels Arrayedit

The panels array property of a row contains a list of panel objects in the order in which they appear in the row. For a list of common panel properties and documentation for specific panels see Kibana Panels

      "panels": [
        {
          "error": false,
          "span": 8,
          "editable": true,
          "type": "terms",
          "loadingEditor": false,
          "field": "speech_number",
          "exclude": [],
          "missing": false,
          "other": false,
          "size": 10,
          "order": "count",
          "style": {
            "font-size": "10pt"
          },
          "donut": false,
          "tilt": false,
          "labels": true,
          "arrangement": "horizontal",
          "chart": "bar",
          "counter_pos": "above",
          "spyable": true,
          "queries": {
            "mode": "all",
            "ids": [
              0
            ]
          },
          "tmode": "terms",
          "tstat": "total",
          "valuefield": "",
          "title": "Longest Speeches"
        },
        {
          "error": false,
          "span": 4,
          "editable": true,
          "type": "goal",
          "loadingEditor": false,
          "donut": true,
          "tilt": false,
          "legend": "none",
          "labels": true,
          "spyable": true,
          "query": {
            "goal": 111397
          },
          "queries": {
            "mode": "all",
            "ids": [
              0
            ]
          },
          "title": "Percentage of Total"
        }
      ]
    }
  ],