Skip to main content
Polar Feature
LightPolarDashboard

Polar Feature

Light polar area chart for displaying multi-dimensional feature adoption or scoring.

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": "polarArea", "width": 560, "height": 460, "format": "png", "devicePixelRatio": 4, "theme": { "palette": [ "#3b82f6", "#6366f1", "#8b5cf6", "#06b6d4", "#10b981", "#f59e0b" ], "backgroundColor": "#ffffff", "fontFamily": "Inter", "fontSize": 16, "gridColor": "rgba(30, 41, 59, 0.14)", "mode": "light" }, "data": { "labels": [ "Analytics", "Exports", "API", "Webhooks", "Branding", "Team" ], "datasets": [ { "data": [ 82, 68, 91, 54, 73, 61 ], "backgroundColor": [ "rgba(59,130,246,0.7)", "rgba(99,102,241,0.7)", "rgba(139,92,246,0.7)", "rgba(6,182,212,0.7)", "rgba(16,185,129,0.7)", "rgba(245,158,11,0.7)" ], "borderWidth": 0 } ] }, "options": { "color": "#334155", "plugins": { "legend": { "position": "right", "labels": { "color": "#334155", "usePointStyle": true, "padding": 12 } }, "title": { "display": true, "text": "Feature Adoption Score", "color": "#0f172a", "font": { "size": 13, "weight": "bold" } } }, "scales": { "r": { "grid": { "color": "rgba(30, 41, 59, 0.4)" }, "ticks": { "color": "#94a3b8", "backdropColor": "rgba(255,255,255,0.8)", "font": { "size": 9 } } } } } }

More Polar templates