Skip to main content
Mono Pie
MinimalPieReport

Mono Pie

Monochromatic slate-grey pie chart. Clean enough to sit in any PDF or white-label report.

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 HTTP/1.1 Content-Type: application/json Authorization: Bearer YOUR_API_KEY { "type": "pie", "width": 560, "height": 380, "format": "png", "devicePixelRatio": 4, "theme": { "palette": [ "#1e293b", "#334155", "#475569", "#64748b", "#94a3b8", "#cbd5e1" ], "backgroundColor": "#ffffff", "fontFamily": "Inter", "fontSize": 16, "gridColor": "rgba(30, 41, 59, 0.14)", "mode": "light" }, "data": { "labels": [ "Infrastructure", "Salaries", "Marketing", "R&D", "Other" ], "datasets": [ { "data": [ 18, 52, 14, 11, 5 ], "backgroundColor": [ "#1e293b", "#334155", "#475569", "#94a3b8", "#cbd5e1" ], "borderWidth": 2, "borderColor": "#ffffff", "hoverOffset": 5 } ] }, "options": { "color": "#334155", "plugins": { "legend": { "position": "right", "labels": { "color": "#334155", "usePointStyle": true, "padding": 14 } }, "title": { "display": true, "text": "Operating Expense Breakdown", "color": "#0f172a", "font": { "size": 13, "weight": "bold" } } } } }

More Pie templates