> ## Knowledge Base Index
> Fetch the complete knowledge base index at: https://docs.groupalarm.com/sitemap.xml
> Use this file to discover available pages before exploring further.
> Pure-Markdown content can be obtained by appending a '.md' suffix to the content URLs listed in the sitemap (without the trailing slash).

# Monitor - Panel Table

The `Table` panel allows you to display data in table form on the monitor. The table itself must be created and filled via the GroupAlarm API interface.

| 💡 The use of the GroupAlarm API interface requires knowledge of how to use Rest API interfaces.

1️⃣ In addition to a title for the panel, you can adjust the font size and colour of the font and background for optimum display on your monitor.

| 💡 You can find information on the advanced formatting options [here](https://docs.groupalarm.com/en/article/edit-monitor-6fw9kh/#6-formatting-the-monitor).

2️⃣ The table ID is mandatory and must be provided when transferring the data via API. This ID and the ID of the monitor enable the system to assign the transmitted data to the corresponding monitor and panel.

![](https://storage.crisp.chat/users/helpdesk/website/-/9/1/f/e/91fefd8b4b0ac000/monitortabelleen_6qvvxy.png)

**JSON used for the table in the screenshot**

```
{
  "tables": {
    "testid": {
      "columns": [
        {
          "name": "Spalte 1",
          "align": "left"
        },
        {
          "name": "Spalte 2",
          "align": "center"
        }
      ],
      "rows": [
        [
          {
            "column": "Spalte 1",
            "value": "Wert 1"
          },
          {
            "column": "Spalte 2",
            "value": "Wert 2"
          }
        ],
        [
          {
            "column": "Spalte 1",
            "value": "Wert 3"
          },
          {
            "column": "Spalte 2",
            "value": "Wert 4"
          }
        ]
      ]
    }
  }
}
```

