DarkRadarReport
Radar Skills
Single-dataset radar chart on a dark background. Great for skill matrices and performance profiles.
Open in StudioTheme tokens
- Background
- #0f172a
- Font
- Inter / 11px
- 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": "radar",
"width": 560,
"height": 480,
"format": "png",
"data": {
"labels": [
"Velocity",
"Quality",
"Reliability",
"Collaboration",
"Impact",
"Growth"
],
"datasets": [
{
"label": "Engineering Team",
"data": [
82,
91,
88,
94,
76,
85
],
"borderColor": "#818cf8",
"backgroundColor": "rgba(129, 140, 248, 0.2)",
"borderWidth": 2,
"pointBackgroundColor": "#818cf8",
"pointRadius": 4
}
]
},
"options": {
"color": "#94a3b8",
"plugins": {
"legend": {
"position": "top",
"labels": {
"color": "#94a3b8",
"usePointStyle": true
}
},
"title": {
"display": true,
"text": "Team Performance",
"color": "#e2e8f0",
"font": {
"size": 14,
"weight": "bold"
}
}
},
"scales": {
"r": {
"min": 0,
"max": 100,
"angleLines": {
"color": "rgba(148, 163, 184, 0.25)"
},
"grid": {
"color": "rgba(148, 163, 184, 0.2)"
},
"pointLabels": {
"color": "#94a3b8",
"font": {
"size": 11
}
},
"ticks": {
"display": false
}
}
}
},
"theme": {
"palette": [
"#818cf8",
"#a78bfa",
"#c084fc",
"#e879f9",
"#fb7185",
"#f472b6"
],
"backgroundColor": "#0f172a",
"fontFamily": "Inter",
"fontSize": 11,
"gridColor": "rgba(148, 163, 184, 0.18)",
"mode": "dark"
}
}