Stacked Area

Renders cumulative layered area chart trends utilizing overlapping translucent gradient fills and glowing series borders.

Surfaces
webmeet-stageapps-script-web
Fields
FieldType
titlestring (optional, e.g., 'SaaS Cumulative Workloads')optional
labelslist of strings representing X-axis ticks (e.g., ['Q1', 'Q2', 'Q3', 'Q4'])required
serieslist of dictionaries representing stacked layers: [{'label': 'Enterprise', 'data': [10, 25, 45, 60], 'color': '#00f2ff'}, ...]required
Example payload
{
  "type": "stacked_area",
  "labels": [
    "Category A",
    "Category B",
    "Category C",
    "Category D"
  ],
  "series": [
    {
      "label": "Series A",
      "data": [
        10,
        20,
        30,
        40
      ]
    },
    {
      "label": "Series B",
      "data": [
        5,
        15,
        25,
        35
      ]
    }
  ]
}
ARD catalog entry
{
  "identifier": "urn:air:a2uicatalog.ai:atom:stacked_area",
  "displayName": "Stacked Area",
  "type": "application/vnd.a2ui.atom+json",
  "url": "https://a2uicatalog.ai/atoms/stacked_area",
  "capabilities": [
    "web",
    "meet-stage",
    "apps-script-web"
  ],
  "description": "Renders cumulative layered area chart trends utilizing overlapping translucent gradient fills and glowing series borders.",
  "representativeQueries": [
    "show a stacked area chart with overlapping glowing translucent gradients",
    "renders cumulative layered area chart trends utilizing overlapping translucent gradient fills and gl",
    "render a stacked area"
  ]
}
← 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 →