MinimalLineEmail
Minimal Trend
Stripped-back single line with no grid clutter — designed to live inside email newsletters without noise.
Open in StudioTheme tokens
- Background
- #ffffff
- Font
- Inter / 11px
- 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": "line",
"width": 560,
"height": 240,
"format": "png",
"data": {
"labels": [
"Jan",
"Feb",
"Mar",
"Apr",
"May",
"Jun"
],
"datasets": [
{
"label": "Churn Rate (%)",
"data": [
4.8,
4.2,
3.9,
3.6,
3.2,
2.9
],
"borderColor": "#1e293b",
"backgroundColor": "transparent",
"tension": 0.3,
"borderWidth": 2,
"pointRadius": 4,
"pointBackgroundColor": "#1e293b"
}
]
},
"options": {
"color": "#475569",
"plugins": {
"legend": {
"display": false
},
"title": {
"display": true,
"text": "Churn Rate Trend",
"color": "#0f172a",
"font": {
"size": 12,
"weight": "bold"
}
}
},
"scales": {
"x": {
"grid": {
"display": false
},
"border": {
"display": false
},
"ticks": {
"color": "#94a3b8",
"font": {
"size": 10
}
}
},
"y": {
"grid": {
"display": false
},
"border": {
"display": false
},
"ticks": {
"color": "#94a3b8",
"font": {
"size": 10
}
}
}
}
},
"theme": {
"palette": [
"#1e293b",
"#334155",
"#475569",
"#64748b",
"#94a3b8",
"#cbd5e1"
],
"backgroundColor": "#ffffff",
"fontFamily": "Inter",
"fontSize": 11,
"gridColor": "rgba(0,0,0,0)",
"mode": "light"
}
}