Skip to main content
Minimal Trend
MinimalLineEmail

Minimal Trend

Stripped-back single line with no grid clutter — designed to live inside email newsletters without noise.

Theme 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 HTTP/1.1 Content-Type: application/json Authorization: Bearer YOUR_API_KEY { "type": "line", "width": 560, "height": 240, "format": "png", "devicePixelRatio": 4, "theme": { "palette": [ "#1e293b", "#334155", "#475569", "#64748b", "#94a3b8", "#cbd5e1" ], "backgroundColor": "#ffffff", "fontFamily": "Inter", "fontSize": 16, "gridColor": "rgba(0,0,0,0)", "mode": "light" }, "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 } } } } } }

More Line templates