Skip to content

Waterfall

const Waterfall: ForwardRefExoticComponent<WaterfallComponentProps & RefAttributes<ChartRef>>

Defined in: index.tsx:419

Waterfall chart React component for incremental positive/negative changes.

Example

<Waterfall
data={[
{ label: 'Q1', value: 120 },
{ label: 'Q2', value: 45 },
{ label: 'Q3', value: -22 },
{ label: 'Q4', value: 67 },
]}
/>