Lightweight SVG chart primitives — not a full charting library, but enough for most dashboards.
Tiny inline line or area chart.
<Sparkline data={[10, 12, 11, 14, 18, 16, 22]} />Circular progress with optional center slot.
<ProgressRing value={72} severity="primary" showValue />Half-circle gauge with optional multi-colour segments.
<Gauge value={82} severity="success" showValue />Inline micro bar chart. Optional last-bar highlight.
<MiniBarChart data={[4, 8, 12, 6, 9, 15]} highlightLast />Dashboard-sized trend with optional axis labels.
<TrendChart data={series} severity="primary" showAxis />Area-only variant of TrendChart. Useful for KPI tiles.
<AreaChartMini data={series} severity="primary" />