Skip to content

Horizontal Funnel

Code

ts
export const config: ChartConfiguration<'funnel'> = {
  type: 'funnel',
  data: {
    labels: ['Step 1', 'Step 2', 'Step 3', 'Step 4'],
    datasets: [
      {
        data: [0.7, 0.66, 0.61, 0.01],
        shrinkAnchor: 'top',
      },
    ],
  },
  plugins: [ChartDataLabels],
};