Funnel Chart
dataVisual funnel chart for conversion and pipeline data visualization.
Preview
No preview available
Check the code examples below.
Installation
npm install @launchapp/design-systemImport
import { FunnelChart } from "@launchapp/design-system";Examples
Conversion funnel
<FunnelChart data={[ { label: "Visitors", value: 10000 }, { label: "Sign-ups", value: 3500 }, { label: "Activated", value: 1200 }, { label: "Paid", value: 420 },]} />Props
| Prop | Type | Default | Description |
|---|---|---|---|
data* | FunnelChartItem[] | — | Array of funnel stages with label and value. |