Heatmap Calendar

IBM Carbon-inspired calendar heatmap showing activity density by date across one or more calendar months. Data is a list of date-value pairs; cells are coloured by intensity across a configurable colour scale. Distinct from heatmap (arbitrary x/y grid) and github_activity_grid (year-spanning GitHub-specific format). Adapted from IBM Carbon AI Applications data visualisation patterns.

Surfaces
webmeet-stagepdfapps-script-web
Degraded on
SurfaceNote
emailrenders as a static colour grid; tooltips unavailable
googlechatrenders as a plain text date-count list; no visual grid
Fields
FieldType
titlestring. Heading above the calendar grid.optional
dataarray. List of {date, count} objects where date is "YYYY-MM-DD".required
monthsinteger. Number of calendar months to render. Default 3.optional
color_scalearray of strings. CSS colours from empty to maximum density. Default IBM Carbon blue scale.optional
unitstring. Unit label appended to count in tooltips, e.g. "commits".optional
Example payload
{
  "type": "heatmap_calendar",
  "data": [
    {
      "date": "2026-06-01",
      "value": 5
    },
    {
      "date": "2026-06-15",
      "value": 12
    }
  ]
}
ARD catalog entry
{
  "identifier": "urn:air:a2uicatalog.ai:atom:heatmap_calendar",
  "displayName": "Heatmap Calendar",
  "type": "application/vnd.a2ui.atom+json",
  "url": "https://a2uicatalog.ai/atoms/heatmap_calendar",
  "capabilities": [
    "web",
    "meet-stage",
    "pdf",
    "apps-script-web"
  ],
  "description": "IBM Carbon-inspired calendar heatmap showing activity density by date across one or more calendar months. Data is a list of date-value pairs; cells are coloured by intensity across a configurable colour scale. Distinct from heatmap (arbitrary x/y grid) and github_activity_grid (year-spanning GitHub-specific format). Adapted from IBM Carbon AI Applications data visualisation patterns.",
  "representativeQueries": [
    "show a calendar month heatmap with date-value density colouring",
    "ibm carbon-inspired calendar heatmap showing activity density by date across one or more calendar mo",
    "render a heatmap calendar"
  ]
}
← 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 →