Sign In

Chart

A display-only data visualization field supporting bar, line, and pie chart types.

The Chart field renders a data visualization directly on the form canvas. It does not collect user input. Use it to display statistics, survey results, performance metrics, or any data that benefits from a visual representation.

Configuration

PropertyTypeDefaultDescription
labelstring--Heading text displayed above the chart
widthLayoutWidth"full"Horizontal space the field occupies
chartTypestring--Chart visualization type: "bar", "line", or "pie"
xLabelstring--Label for the X axis (bar and line charts)
yLabelstring--Label for the Y axis (bar and line charts)
dataChartDatum[]--Array of data points (see below)
dataJsonstring--Raw JSON string of the data array, editable in the chart editor

ChartDatum Object

Each data point in the data array has the following properties:

PropertyTypeDescription
xstring or numberThe X-axis value or category label
ynumberThe Y-axis numeric value

Chart Types

  • bar -- Vertical bar chart. Best for comparing discrete categories.
  • line -- Line chart with connected data points. Best for showing trends over time.
  • pie -- Pie chart showing proportions. Best for part-to-whole relationships.

Example Usage

A bar chart showing monthly signups:

{
  "type": "chart",
  "label": "Monthly Signups",
  "chartType": "bar",
  "xLabel": "Month",
  "yLabel": "Users",
  "data": [
    { "x": "Jan", "y": 120 },
    { "x": "Feb", "y": 185 },
    { "x": "Mar", "y": 240 },
    { "x": "Apr", "y": 310 }
  ]
}

On this page

Chart | Buildorado