New to Telerik UI for WinForms? Download free 30-day trial

Funnel

A funnel chart displays a single series of data in progressively decreasing or increasing proportions, organized in segments, where each segment represents the value for the particular item from the series. The items' values can also influence the height and the shape of the corresponding segments.

Figure 1: FunnelSeries

WinForms RadChartView FunnelSeries Initial Setup

The funnel series has several properties that control the way a chart's segments are rendered.

  • SegmentSpacing: Specifies the space between the different segments of the funnel chart in pixels.

  • DynamicHeight: A Boolean property that indicates whether all the segments will share the same size (when DynamicHeightEnabled=false) or the height of each segment is determined according to its value (when DynamicHeightEnabled=true). Default value is true.

  • DynamicSlope: A Boolean property that indicates whether the form of each segment will be based on the ratio between the value from the current and the next segment. Default value is false.

  • NeckRatio: The property specifies the ratio between the top and the bottom bases of the whole funnel series The property can take effect only if the DynamicSlope property is set to false.

The following example shows how you can add funnel series in code.

Initial Setup

radChartView1.AreaType = Telerik.WinControls.UI.ChartAreaType.Funnel;
FunnelSeries funnelSeries = new FunnelSeries();
funnelSeries.DataPoints.Add(new FunnelDataPoint(5442, "Visited the website"));
funnelSeries.DataPoints.Add(new FunnelDataPoint(1519, "Watched the demos"));
funnelSeries.DataPoints.Add(new FunnelDataPoint(1131, "Downloaded a trial"));
funnelSeries.DataPoints.Add(new FunnelDataPoint(811, "Purchased a license"));
funnelSeries.DataPoints.Add(new FunnelDataPoint(704, "Renewed a license"));
funnelSeries.ShowLabels = true;
radChartView1.ShowLegend = true;
radChartView1.Series.Add(funnelSeries);

radChartView1.AreaType = Telerik.WinControls.UI.ChartAreaType.Funnel
Dim funnelSeries As New FunnelSeries()
funnelSeries.DataPoints.Add(New FunnelDataPoint(5442, "Visited the website"))
funnelSeries.DataPoints.Add(New FunnelDataPoint(1519, "Watched the demos"))
funnelSeries.DataPoints.Add(New FunnelDataPoint(1131, "Downloaded a trial"))
funnelSeries.DataPoints.Add(New FunnelDataPoint(811, "Purchased a license"))
funnelSeries.DataPoints.Add(New FunnelDataPoint(704, "Renewed a license"))
funnelSeries.ShowLabels = True
radChartView1.ShowLegend = True
radChartView1.Series.Add(funnelSeries)

See Also

In this article