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.
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.
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.
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"
}
]
]
}
}
}
Updated on: 04/07/2025
Thank you!