For the complete documentation index, see llms.txt. This page is also available as Markdown.

Send graph

Action — Renders data as a chart image directly in the chat window.

What it does

Displays numeric data visually as a chart — bar, line, or pie — so a person can see trends or breakdowns without leaving the conversation.

When to use it

To show a person their spending breakdown, a trend over time, or any numeric result from an earlier Send API or SQL query action.

Settings

Setting
Description

Graph type

The chart style: Bar, Grouped bar, Stacked bar, Line, Multi-line, or Pie.

Chart data input

A variable or JSON resolving to a list of {x, y, series} rows. Entered as a chat script expression.

Graph title

The chart's heading.

X-axis label

Label for the horizontal axis.

Y-axis label

Label for the vertical axis.

Colour scheme

Default, Blue, Green, Grey, Orange, Rose, Violet, Yellow, Neutral, Distinct, Vivid, or Mild.

Show grid lines

Toggles grid lines on the chart.

Press Save to confirm edits.

Chart data format

The Chart data input is always an array of row objects with three fields:

Field
Description

x

The category, time point, or slice label.

y

The numeric value for that row.

series

Groups rows into separate bars/lines. Required for Grouped bar, Stacked bar, and Multi-line; omit it for single-series Bar and Line; ignored for Pie.

The expected shape per graph type:

A single series — one bar per x value. Omit series.

Example

Send APISQL query

Last updated