Library/Data Viz/Sunburst
Hierarchy · Radial · Part-of-whole

AUM, radially.

Strategy → sub-strategy → fund. Each ring is one level of the hierarchy; each arc's angular span is its share of the parent. Best when you want to show two or three levels of decomposition without a 50-row table. Slightly more compact than a treemap for shallow hierarchies.

Platform AUM · 3-level breakdown

4 strategies · 3 levels
Center total
$84B
platform AUM
Largest strategy
PE
$42B · 48%
Depth
3
strategy → type → fund
Leaves
22
individual funds

Fork & ship

D3 v7's d3.partition. Edit the ROOT object — nested children with value on leaves.

const ROOT = {
  name: "Aqua",
  children: [
    { name: "Private Equity", children: [
      { name: "Buyout", children: [...] },
      { name: "Growth", children: [...] },
    ]},
    // ... etc
  ]
};

When to use this

2-3 level hierarchies. More elegant than treemap for shallow, balanced trees. Avoid for very deep trees (4+ levels) — labels get cramped. Use a collapsible tree instead.

Reading notes

Inner ring = strategy (largest); outer rings = sub-strategy then fund. Angular span = AUM share. Hover any arc for the segment's path and value.