How to: Create a 2D Funnel Chart
The following example demonstrates how to create a 2D Funnel chart.
For this, it's necessary to create a ChartControl, choose a SimpleDiagram2D object as its diagram and put FunnelSeries2D into its SeriesCollection. Each point of a funnel series should contain an argument and a value.
Note that in this sample the label's SeriesLabel.TextPattern and Series.LegendTextPattern properties are set to "{}{A}: {VP: ##.##%}", which allows showing a point's argument and its percentage value separated by a colon. The available placeholders are detailed below.
- {A} - Use it to display a series point's arguments.
- {VP} - Use it to display a series point's values as percent.
- {S} - Use it to display the series name.