Radar
Radar charts compare 3-8 metrics on a circular layout — each axis is one metric, distance-from-center is the value. ApexCharts renders polygons (not just stroked outlines) by default for clearer "shape comparison" reads.
Basic Example — Security posture audit
Security posture across six dimensions
Multi-series — quarter-over-quarter
Security posture comparison (this quarter vs previous)
Polygon-fill emphasis
<x-wirekit-chart
type="radar"
:labels="['Speed', 'Quality', 'Cost', 'Innovation', 'Support']"
:datasets="[['label' => 'Vendor A', 'data' => [85, 78, 65, 92, 70]]]"
:options="['fill' => ['opacity' => 0.4]]"
height="320px"
/>
fill.opacity = 0.4 makes the polygon fill clearly visible without obscuring the axis lines underneath.
License note
ApexCharts is non-MIT — see the License section on the Chart overview page and apexcharts.com/license for the full terms.
See Also
- Chart.js radar + polar for the Chart.js equivalent
- Heatmap for a different multi-dimensional visualization
Design Tokens
See ApexCharts adapter — Design Tokens for the color, typography, and grid tokens shared across every ApexCharts demo.