<MaturityRadar>
Radar chart of dimensions (axes) vs. maturity score (radial). Optional target overlay.
When to use: Use to show a multi-dimensional capability assessment, typically in 'current state' or 'executive summary' sections. Works for SEO maturity too (e.g. Technical, Content, Authority, Measurement, Governance as axes), where the pillar bars of <PillarScoreCard> would be too coarse.
Preview
Acme automation maturity — current vs. 6-month target
Scores from 11 stakeholder interviews using the Lunnoa maturity framework (1 = ad hoc, 5 = optimised).
| Prop | Type | Notes |
|---|---|---|
| dimensions | string[] | Required. Axis labels, in order.Example: ["Data", "Tooling", "Process", "Governance", "Skills"] |
| current | number[] | Required. Current scores, same order as dimensions.Example: [3, 2, 3, 2, 2] |
| target | number[] | Optional. Optional target scores, drawn as a dashed overlay. |
| max | number | Optional. Default: 5. Maximum value on the radial axis. |
| title | string | Optional. Chart title. |
| description | string | Optional. Subtitle / methodology note. |
Examples
<MaturityRadar
dimensions={["Data quality", "Tooling", "Process clarity", "Governance", "Automation skills"]}
current={[3, 2, 3, 2, 2]}
target={[4, 4, 4, 4, 3]}
title="Acme automation maturity — current vs. 6-month target"
description="Scores from 11 stakeholder interviews using the Lunnoa maturity framework (1 = ad hoc, 5 = optimised)."
/>