MinimalPieReport
Mono Pie
Monochromatic slate-grey pie chart. Clean enough to sit in any PDF or white-label report.
Open in StudioTheme 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": [
"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"
}
}
}
},
"theme": {
"palette": [
"#1e293b",
"#334155",
"#475569",
"#64748b",
"#94a3b8",
"#cbd5e1"
],
"backgroundColor": "#ffffff",
"fontFamily": "Inter",
"fontSize": 12,
"gridColor": "rgba(30, 41, 59, 0.14)",
"mode": "light"
}
}