The seasonal arc of temperature reads as a single shape — peak summer bars dominate the upper arc
The seasonal arc of temperature reads as a single shape , peak summer bars dominate the upper arc Figure 60.1 , The seasonal arc of temperature reads as a single shape
A Radial Column Chart maps a standard bar chart onto a polar coordinate system. Each category is assigned an angular pos
A Radial Column Chart maps a standard bar chart onto a polar coordinate system. Each category is assigned an angular position (a radial divider), and its bar extends outward from a central baseline along that angle. The value scale is encoded by concentric circles: the innermost circle represents the lowest scale value (often zero), and each successive circle outward represents a higher value. Bar length , measured radially from the baseline to the bar's outer edge , encodes the quantitative value.
The data has 12 categories (months) with an inherent cyclical order — January follows December, the data wraps. The radi
The data has 12 categories (months) with an inherent cyclical order , January follows December, the data wraps. The radial column chart honours this cyclicality: the last bar and first bar are visually adjacent, so the viewer perceives the year as a continuous loop rather than a sequence with an arbitrary start and end.
Radial columns suffer a well-documented perceptual distortion: bars further from the centre appear longer than equally-v
Radial columns suffer a well-documented perceptual distortion: bars further from the centre appear longer than equally-valued bars closer to it, because their outer arc is physically larger. This is the same distortion that makes pie slices and donut segments hard to compare precisely. The viewer's eye misjudges bar length when bars are at different angular positions, because length-along-a-radius is harder to compare than length-along-a-shared-baseline.
A standard Bar Chart — the direct equivalent — plots the same 12 months as horizontal or vertical bars on a linear axis.
A standard Bar Chart , the direct equivalent , plots the same 12 months as horizontal or vertical bars on a linear axis. It is more precise for value retrieval and supports direct comparison between any two bars. What it loses is the cyclical wrap: December and January appear at opposite ends of the chart, breaking the visual continuity of the seasonal loop. For non-cyclical categorical data, the bar chart is always preferable. The radial form is justified only by the calendar's circularity.
Paste this into Claude Code to generate a working version of this chart, plus its data file. The result will not be a perfect replica , the goal is that the reader can run the prompt, get a chart of this type, and read its source. Generate a complete, self-contained radial column in D3 v7. Two files:
The ideas in this chapter didn't appear from nowhere. Massimo Vignelli designed the 1972 New York City subway map , a strict, geometric, topologically simplified diagram in the lineage of Harry Beck's London Underground map. His radial and grid-aware design philosophy shapes how circular and column-based charts are still composed. Massimo Vignelli, circa 1972. AI-generated portrait based on a public domain photograph (Wikimedia Commons).
Massimo Vignelli, circa 1972. AI-generated portrait based on a public domain photograph (Wikimedia Commons).
The ideas in this chapter didn't appear from nowhere. Massimo Vignelli designed the 1972 New York City subway map , a strict, geometric, topologically simplified diagram in the lineage of Harry Beck's London Underground map. His radial and grid-aware design philosophy shapes how circular and column-based charts are still composed. Massimo Vignelli, circa 1972. AI-generated portrait based on a public domain photograph (Wikimedia Commons).
Brutalist D3 × Claude · Ch.60 · Radial Column
That is the framework. Brutalist D3 times Claude, chapter 60: Radial Column. The patterns are now in place. Apply them.