DarkLineDashboard
Gradient Line
Filled-area line chart on a deep dark background. Classic MRR growth visualization.
Open in StudioTheme tokens
- Background
- #0f172a
- Font
- Inter / 12px
- Mode
- dark
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": 800,
"height": 400,
"format": "png",
"data": {
"labels": [
"Jan",
"Feb",
"Mar",
"Apr",
"May",
"Jun",
"Jul",
"Aug",
"Sep"
],
"datasets": [
{
"label": "MRR ($)",
"data": [
12500,
15800,
18200,
22400,
27100,
31600,
37200,
43800,
51000
],
"borderColor": "#818cf8",
"backgroundColor": "rgba(129, 140, 248, 0.15)",
"fill": true,
"tension": 0.4,
"borderWidth": 2,
"pointRadius": 3,
"pointBackgroundColor": "#818cf8"
}
]
},
"options": {
"color": "#94a3b8",
"plugins": {
"legend": {
"display": false
},
"title": {
"display": true,
"text": "Monthly Recurring Revenue",
"color": "#e2e8f0",
"font": {
"size": 14,
"weight": "bold"
}
}
},
"scales": {
"x": {
"grid": {
"display": false
},
"border": {
"display": false
},
"ticks": {
"color": "#64748b"
}
},
"y": {
"grid": {
"color": "rgba(148, 163, 184, 0.18)"
},
"border": {
"display": false
},
"ticks": {
"color": "#64748b"
}
}
}
},
"theme": {
"palette": [
"#818cf8",
"#a78bfa",
"#c084fc",
"#e879f9",
"#fb7185",
"#f472b6"
],
"backgroundColor": "#0f172a",
"fontFamily": "Inter",
"fontSize": 12,
"gridColor": "rgba(148, 163, 184, 0.18)",
"mode": "dark"
}
}