Funnel Chart

data

Visual funnel chart for conversion and pipeline data visualization.

Preview

No preview available

Check the code examples below.

Installation

npm install @launchapp/design-system
Import
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

PropTypeDefaultDescription
data*
FunnelChartItem[]Array of funnel stages with label and value.