Chart Syntax

To insert charts in your template, add a placeholder chart to the template, place a tag in the chart's title and provide the chart data in the expected format.

Simple Example

Lets see how to use the chart syntax to create a simple sales performance report:

  1. Add a placeholder chart to the template.
  2. Place a tag in the chart's title.

In this example we've added the {{ SalesChart }} tag in the placeholder chart's title:

Sales Performance Report

The chart below shows our sales trends over the past 6 months. As we can see, there has been consistent growth in our overall revenue.

Chart Placeholder Example

We've set the chart data for this example to:

{
  "SalesChart": {
    "_type": "chart",
    "title": "Sales Overview",
    "categories": ["Jan", "Feb", "Mar", "Apr", "May", "Jun"],
    "series": [
      {
        "name": "Sales",
        "color": "#34d399",
        "values": [65, 59, 80, 84, 82, 90]
      }
    ]
  }
}

The resulting document contains the populated "Sales Overview" chart:

Sales Performance Report

The chart below shows our sales trends over the past 6 months. As we can see, there has been consistent growth in our overall revenue.

Sales Bar Chart Example

Chart Options

Chart data format varies depending on the chart type. The common properties are:

PropertyTypeDescription
_typestringMust be set to "chart" for all chart types
titlestringOptional. The title to use instead of the tag name. If not provided the tag will be replaced with an empty string.

Chart Styling

Charts preserve their original settings from the template, including:

  • Font styles and sizes
  • Axis formatting
  • Grid lines
  • Legend position and style
  • Chart dimensions and layout

You can customize the following aspects through the input JSON data:

  • Chart title
  • Series colors (using hex color codes)
  • Series names for the legend
  • Data values and labels

Chart Types

Bar Chart

Example

Bar Chart Example
{
  "MyChart": {
    "_type": "chart",
    "title": "Monthly Sales",
    "categories": ["Jan", "Feb", "Mar", "Apr", "May", "Jun"],
    "series": [
      {
        "name": "Revenue",
        "color": "#34d399",
        "values": [65, 59, 80, 81, 56, 55]
      },
      {
        "name": "Expenses",
        "color": "#f87171",
        "values": [45, 49, 60, 71, 46, 45]
      }
    ]
  }
}

Bar Chart Properties

PropertyTypeDescription
_typestringMust be set to "chart"
titlestringOptional. The title to use instead of the tag name
categoriesstring[]Array of labels for the x-axis
seriesobject[]Array of data series objects
series[].namestringOptional. Legend label for the series
series[].colorstringOptional. Hex color code for the bars
series[].valuesnumber[]Array of numeric values matching categories

Line Chart

Example

Line Chart Example
{
  "LineChart": {
    "_type": "chart",
    "title": "Temperature Trends",
    "categories": ["05/01", "05/07", "05/14", "05/25", "05/31"],
    "series": [
      {
        "name": "May",
        "values": [20, 22, 25, 23, 27]
      }
    ]
  }
}

Line Chart Properties

PropertyTypeDescription
_typestringMust be set to "chart"
titlestringOptional. The title to use instead of the tag name
categoriesstring[]Array of labels for the x-axis
seriesobject[]Array of data series objects
series[].namestringOptional. Legend label for the series
series[].colorstringOptional. Hex color code for the bars
series[].valuesnumber[]Array of numeric values matching categories

Pie Chart

Both pie and doughnut charts are supported. They have the same properties.

Example

Pie Chart Example
{
  "PieChart": {
    "_type": "chart",
    "title": "Revenue Distribution",
    "series": [
      {
        "name": "Electronics",
        "value": 300,
      },
      {
        "name": "Books",
        "value": 50
      },
      {
        "name": "Clothing",
        "value": 100
      }
    ]
  }
}

Pie Chart Properties

PropertyTypeDescription
_typestringMust be set to "chart"
titlestringOptional. The title to use instead of the tag name
seriesobject[]Array of value objects
series[].namestringOptional. Label for the value
series[].valuenumberNumeric value

Scatter Chart

Example

Scatter Chart Example
{
  "ScatterChart": {
    "_type": "chart",
    "title": "Height vs Weight",
    "series": [
      {
        "name": "Males",
        "color": "#10b981",
        "values": [
          { "x": 165, "y": 65 },
          { "x": 168, "y": 70 },
          { "x": 170, "y": 68 },
          { "x": 172, "y": 75 },
          { "x": 175, "y": 73 },
          { "x": 178, "y": 78 },
          { "x": 180, "y": 82 },
          { "x": 182, "y": 85 }
        ]
      },
      {
        "name": "Females",
        "color": "#8b5cf6",
        "values": [
          { "x": 160, "y": 55 },
          { "x": 165, "y": 58 },
          { "x": 168, "y": 73 },
          { "x": 170, "y": 63 },
          { "x": 172, "y": 77 },
          { "x": 175, "y": 68 },
          { "x": 178, "y": 70 },
          { "x": 165, "y": 61 }
        ]
      }
    ]
  }
}

Scatter Chart Properties

PropertyTypeDescription
_typestringMust be set to "chart"
titlestringOptional. The title to use instead of the tag name
seriesobject[]Array of data series objects
series[].namestringOptional. Legend label for the series
series[].colorstringOptional. Hex color code for the series
series[].valuesobject[]Array of value objects
series[].values[].xnumberX-axis value
series[].values[].ynumberY-axis value

Bubble Chart

Example

Bubble Chart Example
{
  "BubbleChart": {
    "_type": "chart",
    "title": "Sales vs Marketing",
    "series": [
      {
        "name": "Marketing Effort",
        "color": "#fbbf24",
        "values": [
          { "x": 1, "y": 10, "size": 10 },
          { "x": 2, "y": 15, "size": 20 },
          { "x": 3, "y": 8, "size": 40 },
          { "x": 4, "y": 12, "size": 30 }
        ]
      }
    ]
  }
}

Bubble Chart Properties

PropertyTypeDescription
_typestringMust be set to "chart"
titlestringOptional. The title to use instead of the tag name
seriesobject[]Array of data series objects
series[].namestringOptional. Legend label for the series
series[].colorstringOptional. Hex color code for the series
series[].valuesobject[]Array of value objects
series[].values[].xnumberX-axis value
series[].values[].ynumberY-axis value
series[].values[].sizenumberSize of the bubble