Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 501 Bytes

funnel.rst

File metadata and controls

16 lines (12 loc) · 501 Bytes

Funnel

Basic

Funnel chart:

funnel_chart = pygal.Funnel() funnel_chart.title = 'V8 benchmark results' funnel_chart.x_labels = ['Richards', 'DeltaBlue', 'Crypto', 'RayTrace', 'EarleyBoyer', 'RegExp', 'Splay', 'NavierStokes'] funnel_chart.add('Opera', [3472, 2933, 4203, 5229, 5810, 1828, 9013, 4669]) funnel_chart.add('Firefox', [7473, 8099, 11700, 2651, 6361, 1044, 3797, 9450]) funnel_chart.add('Chrome', [6395, 8212, 7520, 7218, 12464, 1660, 2123, 8607])