Flow Pulse Pipeline
A funnel whose volume streams through as particles — denser where more converts, thinning at each drop-off — so the pipeline literally flows, and the narrative names the steepest leak.
Activation funnel
12%
end-to-end · 5 stages
12% complete the 5-stage flow — steepest drop Integration → Production (−63%).
| Stage | Volume (accounts) | From prev |
|---|---|---|
| Trial signup | 5,400 | — |
| Onboarded | 3,200 | 59% |
| Integration | 1,840 | 57% |
| Production | 680 | 37% |
| Retained 90d+ | 640 | 94% |
Source: product analytics · updated every 6 hours
Demo data is illustrative. Replace with your own typed data prop.
Use it with your data
Data contract
Passed via the data prop — an object: validated at runtime, so a bad shape degrades to the error state rather than crashing.
| Field | Type | Required |
|---|---|---|
| stages | array | yes |
| unit | string | no |
Static props
import { ChartFlowPulse } from "@/components/blocks/chart-flow-pulse/chart-flow-pulse";
<ChartFlowPulse data={myData} />Client fetch (SWR)
const { data, isLoading, error } = useSWR("/api/metric", fetcher);
// route isLoading/error through <ChartStates>, then:
<ChartFlowPulse data={data} />Server component (RSC)
const data = await fetch(url, {
next: { revalidate: 3600 },
}).then((r) => r.json());
<ChartFlowPulse data={data} />Map arbitrary rows
import { mapRows } from "@/lib/sextant/column-map";
const out = mapRows(rows, { /* contractKey: "yourColumn" */ }, dataSchema);
if (out.ok) <ChartFlowPulse data={out.data} />;Make it yours
Every customization below is an optional prop — omit them all and you get the defaults shown above. Recolor, reformat, restyle, or drop the card chrome without forking the component.
Recolor or rename a series (flow)
<ChartFlowPulse
series={{ flow: { color: "var(--chart-3)", label: "…" } }}
/>Format numbers (currency / locale)
const eur = new Intl.NumberFormat("de-DE", {
style: "currency",
currency: "EUR",
notation: "compact",
});
<ChartFlowPulse valueFormatter={(n) => eur.format(n)} />Replace or hide the narrative
<ChartFlowPulse narrative="Your own one-liner." />
// …or hide it entirely:
<ChartFlowPulse narrative={false} />Restyle any region
<ChartFlowPulse
className="max-w-xl"
classNames={{ body: "bg-muted/20" }}
/>Drop the card chrome (headless plot)
import { ChartFlowPulsePlot } from "@/components/blocks/chart-flow-pulse/chart-flow-pulse";
// Just the chart body — bring your own card/layout:
<ChartFlowPulsePlot data={data} config={config} />