Skip to main content
Pie Breakdown
LightPieEmail

Pie Breakdown

Clean light-background pie chart for email reports and quick share-of-voice breakdowns.

Open in Studio

Theme tokens

Background
#ffffff
Font
Inter / 12px
Mode
light

API snippet

POST this to /api/v1/render to render this template programmatically.

POST /api/v1/render
Content-Type: application/json
Authorization: Bearer YOUR_API_KEY

{
  "type": "pie",
  "width": 560,
  "height": 380,
  "format": "png",
  "data": {
    "labels": [
      "Starter",
      "Pro",
      "Business",
      "Enterprise"
    ],
    "datasets": [
      {
        "data": [
          44,
          32,
          16,
          8
        ],
        "backgroundColor": [
          "#3b82f6",
          "#6366f1",
          "#8b5cf6",
          "#06b6d4"
        ],
        "borderWidth": 2,
        "borderColor": "#ffffff",
        "hoverOffset": 6
      }
    ]
  },
  "options": {
    "color": "#334155",
    "plugins": {
      "legend": {
        "position": "right",
        "labels": {
          "color": "#334155",
          "usePointStyle": true,
          "padding": 14
        }
      },
      "title": {
        "display": true,
        "text": "Revenue by Plan",
        "color": "#0f172a",
        "font": {
          "size": 13,
          "weight": "bold"
        }
      }
    }
  },
  "theme": {
    "palette": [
      "#3b82f6",
      "#6366f1",
      "#8b5cf6",
      "#06b6d4",
      "#10b981",
      "#f59e0b"
    ],
    "backgroundColor": "#ffffff",
    "fontFamily": "Inter",
    "fontSize": 12,
    "gridColor": "rgba(30, 41, 59, 0.14)",
    "mode": "light"
  }
}

More Pie templates