Skip to main content
v2.2

Pyramid Chart

Pyramid ChartPyramid Chart
import lightningchart as lc

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

data = [
{'name': '2018 - 2019', 'value': 17},
{'name': '2017 - 2018', 'value': 10},
{'name': '2016 - 2017', 'value': 5},
{'name': '2015 - 2016', 'value': 3},
]

chart = lc.PyramidChart(
slice_mode='height',
theme=lc.Themes.Light,
title='Pyramid Chart',
legend={
'title': 'Company staff growth',
'position': 'RightCenter'
}
)
chart.add_slices(data)
chart.open()