<ColumnChartSlide>
expressiveChartPresentation
Vertical bar chart for comparing categories on a 0–100 scale; bars animate in on slide enter (client).
When to use: Quarterly KPIs, segment growth, or survey scores where each bar is an independent category. Prefer StatBarChart when you need multi-series report charts.
Preview
| Prop | Type | Notes |
|---|---|---|
| label | string | Optional. HUD pill above the title. |
| title | string | Optional. Section headline (cyan). |
| subtitle | string | Optional. Mono pink subtitle under the title. |
| items | { label: string; value: number; display?: string; tone?: "cyan" | "pink" | "yellow" }[] | Required. Bars; value is 0–100 height percentage. |
| tween | object | Optional. Optional GSAP vars for bar growth. |
Examples
<ColumnChartSlide
label="Analytics Core"
title="Quarterly Growth Metrics"
subtitle="Fiscal performance across four sectors"
items={[
{ label: "Alpha", value: 78 },
{ label: "Beta", value: 92 },
{ label: "Gamma", value: 64 },
{ label: "Delta", value: 85 },
{ label: "Epsilon", value: 56 }
]}
/>