Skip to main content

Funnel Chart

Visualizes proportions and percentages between categories, by dividing a funnel into proportional segments.

Funnel ChartFunnel Chart
import lightningchart as lc

lc.set_license('my-license-key')

data = [
{'name': 'Prospects', 'value': 1540},
{'name': 'Contacts', 'value': 895},
{'name': 'Leads', 'value': 1240},
{'name': 'Customers', 'value': 549},
]

chart = lc.FunnelChart(
slice_mode='height',
theme=lc.Themes.White,
title='Funnel Chart'
)
chart.add_slices(data)
chart.open()