Scatter Trend

Renders a coordinate scatter grid representing discrete data points intersected by a prominent glowing linear regression line.

Surfaces
webmeet-stageapps-script-web
Fields
FieldType
titlestring (optional, e.g., 'CSAT vs. Support Response Time')optional
data_pointslist of [x, y] coordinates: [[1.2, 95], [2.5, 88], [3.1, 75]]required
label_xstring (optional, e.g., 'Response Time (Hours)')optional
label_ystring (optional, e.g., 'CSAT Score')optional
Example payload
{
  "type": "scatter_trend",
  "data_points": [
    {
      "x": 10,
      "y": 20
    },
    {
      "x": 30,
      "y": 45
    },
    {
      "x": 50,
      "y": 35
    }
  ]
}
ARD catalog entry
{
  "identifier": "urn:air:a2uicatalog.ai:atom:scatter_trend",
  "displayName": "Scatter Trend",
  "type": "application/vnd.a2ui.atom+json",
  "url": "https://a2uicatalog.ai/atoms/scatter_trend",
  "capabilities": [
    "web",
    "meet-stage",
    "apps-script-web"
  ],
  "description": "Renders a coordinate scatter grid representing discrete data points intersected by a prominent glowing linear regression line.",
  "representativeQueries": [
    "show a coordinate scatter plot with regression trend line",
    "renders a coordinate scatter grid representing discrete data points intersected by a prominent glowi",
    "render a scatter trend"
  ]
}
← Full ARD catalog Try it live →
Deploy your own renderer

The renderer is open source. Deploy your own instance in 4 commands — you own the URL, no dependency on the demo endpoint.

git clone https://github.com/a2uicatalog/a2ui
cd apps-script-surface/gas-schema-renderer
clasp push && clasp deploy
Full deploy guide →