MinimalBarEmail
Clean Bar
Minimal white-background bar chart optimized for email and PDF reports.
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": "bar",
"width": 600,
"height": 320,
"format": "png",
"data": {
"labels": [
"Q1",
"Q2",
"Q3",
"Q4"
],
"datasets": [
{
"label": "Revenue ($k)",
"data": [
142,
198,
231,
274
],
"backgroundColor": "#3b82f6",
"borderRadius": 4,
"borderSkipped": false
}
]
},
"options": {
"color": "#334155",
"plugins": {
"legend": {
"display": false
},
"title": {
"display": true,
"text": "Quarterly Revenue",
"color": "#0f172a",
"font": {
"size": 13,
"weight": "bold"
}
}
},
"scales": {
"x": {
"grid": {
"display": false
},
"border": {
"display": false
},
"ticks": {
"color": "#64748b"
}
},
"y": {
"grid": {
"color": "rgba(30, 41, 59, 0.14)"
},
"border": {
"display": false
},
"ticks": {
"color": "#64748b"
}
}
}
},
"theme": {
"palette": [
"#3b82f6",
"#6366f1",
"#8b5cf6",
"#06b6d4",
"#10b981",
"#f59e0b"
],
"backgroundColor": "#ffffff",
"fontFamily": "Inter",
"fontSize": 12,
"gridColor": "rgba(30, 41, 59, 0.14)",
"mode": "light"
}
}