Renders cumulative layered area chart trends utilizing overlapping translucent gradient fills and glowing series borders.
| Field | Type | |
|---|---|---|
| title | string (optional, e.g., 'SaaS Cumulative Workloads') | optional |
| labels | list of strings representing X-axis ticks (e.g., ['Q1', 'Q2', 'Q3', 'Q4']) | required |
| series | list of dictionaries representing stacked layers: [{'label': 'Enterprise', 'data': [10, 25, 45, 60], 'color': '#00f2ff'}, ...] | required |
{
"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
]
}
]
}
{
"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"
]
}
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 →