-
Notifications
You must be signed in to change notification settings - Fork 561
excel chart radar
zmworm edited this page Apr 13, 2026
·
16 revisions
A dedicated page for the radar (spider) chart type. Radar charts
display multivariate data on a polar grid, with each category forming a
spoke radiating from the center. Ideal for skill assessments, feature
comparisons, and balanced scorecard visualizations.
Path: /{SheetName}/chart[N]
See also: Chart - add, Chart - set.
| Type string | Aliases |
|---|---|
radar |
spider |
| Property | Default | Notes |
|---|---|---|
radarStyle |
standard |
Visual style of the radar |
| Style | Description |
|---|---|
standard |
Lines connecting points (outlined polygon) |
filled |
Filled polygon areas |
marker |
Points with markers at each spoke |
officecli add data.xlsx /Sheet1 --type chart \
--prop chartType=radar \
--prop radarStyle=filled \
--prop title="Team Skills" \
--prop categories="Code,Design,PM,Testing,Communication" \
--prop data="Alice:8,6,7,9,8;Bob:6,9,5,7,7"
officecli set data.xlsx /Sheet1/chart[1] --prop radarStyle=marker| Feature | Preview | Notes |
|---|---|---|
| Polar grid (spokes + rings) | Yes | 5 concentric rings |
| Outlined polygon | Yes | |
| Filled polygon | Yes | |
| Markers at vertices | Yes |
Based on OfficeCLI v1.0.43