Total platform AUM stacked by product line, quarter-by-quarter. The composition is the story: Marketplace started as the bulk; Fund Factory and Access Vehicles are now growing the platform faster than legacy lines. Use this in board updates, investor updates, and product reviews.
Inline SVG, no D3 dependency. Edit the SERIES array — each entry needs
name, color, and values (one per period). Periods
come from X_LABELS. Hover any band for the per-quarter breakdown.
const X_LABELS = ["Q1 24", "Q2 24", "Q3 24", ...]; const SERIES = [ { name: "Marketplace", color: "#28020F", values: [340, 380, 420, 510, 620, 740, 820, 900, 960] }, // ... one entry per stacked band ];
Composition change over time. "Total grew, but here's what changed inside." Skip when individual line trends matter more than composition — use a multi-line chart instead. Skip if periods > 30 — switch to a streamgraph.
Largest band at the bottom so the baseline is most legible. The thinnest, most-volatile band sits on top where its shape is visible. Reorder by editing SERIES top-down.