Skip to content

SimpleTable

Description

Display a table with configured records.

Attributes

  • tile : simpleTable
  • title
  • data: [Object]
    • rows: [Array of string items]

Example

{
  "tile": "simpleTable",
  "title": "simple Table Tile Testing",
  "data": {
    "rows": [
      [
        "Dessert (100g serving)",
        "Calories",
        "Fat (g)",
        "Carbs (g)",
        "Protein (g)"
      ],
      [
        "Frozen yoghurt",
        "159",
        "6",
        "24",
        "4"
      ]
    ]
  }
}