Skip to main content
A simple text label card that displays static text within a data form. Use this card to add headings, descriptions, or any static text content to your form layout.

Type

type: "label"

Properties

Required Properties

PropertyTypeDescription
labelstringThe text content to display

Optional Properties

None

Layout

  • Default Width: 3 columns
  • Default Height: 2 rows
  • Supports Children: No

Configuration Example

- type: label
  id: myLabel
  properties:
    label: "Customer Information"
  layout:
    x: 0
    y: 0
    w: 3
    h: 2

Usage Examples

Section Header

- type: label
  id: section-header
  properties:
    label: "Personal Details"
  layout:
    x: 0
    y: 0
    w: 12
    h: 1

Field Label

- type: label
  id: field-label
  properties:
    label: "Email Address:"
  layout:
    x: 0
    y: 1
    w: 3
    h: 1

Notes

  • This is a display-only component with no interactive elements
  • The label text is rendered as plain text without any formatting or HTML support
  • Best used for section headers, field labels, or instructional text within forms
  • If no label property is provided, it will display “No label set” as a fallback