// SLIDE 01 — HOOK

RADIAL BAR CHART.

Bars Bent Around a Center — When Polar Coordinates Earn Their Distortion

Radial Bar Chart — Figure 59.1 — Bars Bent Around a Center — When Polar Coordinates Earn Their Distortion
NARRATION

Bars Bent Around a Center , When Polar Coordinates Earn Their Distortion Figure 59.1 , Bars Bent Around a Center , When Polar Coordinates Earn Their Distortion

// SLIDE 02 — WHAT THIS CHART IS

WHAT THIS CHART IS.

A radial bar chart is a bar chart drawn on a polar coordinate system. Each category is assigned an angular position; the

What this chart is — The chart is built from three D3 primitives. An angular scale (d3.scaleBand with range ) places each category at an angl
NARRATION

A radial bar chart is a bar chart drawn on a polar coordinate system. Each category is assigned an angular position; the bar extends from a fixed inner radius outward along that angle, and the bar's radial length encodes the quantitative value. A standard bar chart and a radial bar chart represent the same information using the same encoding (bar length), but the geometry is different: the standard chart shares a common baseline, the radial chart shares a common center.

// SLIDE 03 — THE DISTORTION — WHY THIS CHAR

THE DISTORTION — WHY THIS CHART MISLEADS

The honest account begins with the mechanism. In polar coordinates, arc length equals radius times angle. Two bars with

The distortion — why this chart misleads — Stephen Few has been direct about this: a standard bar chart compares values along a shared baseline, which is the most
NARRATION

The honest account begins with the mechanism. In polar coordinates, arc length equals radius times angle. Two bars with the same angular width but different radial lengths have outer arcs of different physical lengths in pixels. A bar twice as long radially has an outer arc twice as long , but the area the bar covers on the page scales as the square of the radius. A bar at value 100 has roughly four times the visual footprint of a bar at value 50, not twice.

// SLIDE 04 — WHEN THE TRADE IS WORTH IT — A

WHEN THE TRADE IS WORTH IT — AND WHEN IT IS NOT

The radial form earns its distortion in one situation only: when the underlying data has genuine cyclical structure. Mon

When the trade is worth it — and when it — The form does not earn its distortion in any of these cases: ranking non-cyclical categories (use a standard bar chart),
NARRATION

The radial form earns its distortion in one situation only: when the underlying data has genuine cyclical structure. Months of the year, hours of the day, days of the week, compass directions, lunar phases , categories whose first and last entries are adjacent in the world, not adjacent only in the chart. A radial bar chart of monthly aid deliveries shows the December, January wrap-around as continuous; a standard bar chart splits it into the two ends of the x-axis with eleven months in between.

// SLIDE 05 — WHAT THE ALTERNATIVE DOES BETT

WHAT THE ALTERNATIVE DOES BETTER.

A horizontal bar chart of the same data, sorted by value, gives the reader length-along-a-shared-baseline — Cleveland an

NARRATION

A horizontal bar chart of the same data, sorted by value, gives the reader length-along-a-shared-baseline , Cleveland and McGill ranked this as the most accurate quantitative encoding humans can read in a static graphic. The viewer can compare any two bars by aligning their endpoints against the value axis, no arc-length distortion to correct for. For ranking, magnitude comparison, and precise value retrieval, the bar chart wins on every perceptual axis.

// SLIDE 06 — FRAMEWORK REFERENCE

FRAMEWORK REFERENCE

FRAMEWORK FT Visual Vocabulary: Comparison — Categorical (cyclical variant). Data Visualisation Catalogue: aesthetic-fir

NARRATION

FRAMEWORK FT Visual Vocabulary: Comparison , Categorical (cyclical variant). Data Visualisation Catalogue: aesthetic-first; the Catalogue's own statement is that "since our visual systems are better at interpreting straight lines, a regular Bar Chart is a better choice for comparing values. The main reason to use a Radial Bar Chart instead is aesthetic." Tufte principle: the polar coordinate system introduces non-data ink (the radial axis distortion).

// SLIDE 07 — PROMPT

PROMPT

radial-bar-chart.htmla full HTML page with inline CSS and inline D3 v7 (loaded from The chart should fill the viewport, be responsive on resi
radial-bar-chart/data.jsonthe data file the chart loads via d3.json("./radial-bar-chart/data.json"), with a fallback inline literal in the HTML if
·8–12 categories with cyclical structure (months, hours, compass directions, days of week). Each entry has a category lab
categorystring — angular position label
valuenumber — radial length
NARRATION

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 bar chart in D3 v7. Two files:

// SLIDE 08 — AI WAYBACK MACHINE

AI WAYBACK MACHINE.

Saul BassRun this:"Saul Bass"Now make the prompt better.
NARRATION

The ideas in this chapter didn't appear from nowhere. Saul Bass was a graphic designer best known for film title sequences (Vertigo, Anatomy of a Murder, Psycho) , but his work spanned corporate identity, infographics, and the kind of clean radial layouts that influence chart design to this day. He believed every design choice should carry weight. Saul Bass, circa 1965. AI-generated portrait based on a public domain photograph (Wikimedia Commons).

// SLIDE 09 — THESIS

THE CORE CLAIM.

The ideas in this chapter didn't appear from nowhere. Saul Bass was a graphic designer best known for film title sequenc

Saul Bass, circa 1965. AI-generated portrait based on a public domain photograph (Wikimedia Commons).

NARRATION

The ideas in this chapter didn't appear from nowhere. Saul Bass was a graphic designer best known for film title sequences (Vertigo, Anatomy of a Murder, Psycho) , but his work spanned corporate identity, infographics, and the kind of clean radial layouts that influence chart design to this day. He believed every design choice should carry weight. Saul Bass, circa 1965. AI-generated portrait based on a public domain photograph (Wikimedia Commons).

// SLIDE 10 — CLOSE

ASK THE QUESTION. APPLY THE FRAMEWORK.

WHAT THIS CHART IS//THE DISTORTION — WHY THIS//WHEN THE TRADE IS WORTH I

Brutalist D3 × Claude · Ch.59 · Radial Bar Chart

NARRATION

That is the framework. Brutalist D3 times Claude, chapter 59: Radial Bar Chart. The patterns are now in place. Apply them.

01 / 10
Brutalist D3 × Claude · Ch.59 · Nik Bear Brown