Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 1.75 KB

create-funnel-chart-telerik-reporting.md

File metadata and controls

39 lines (26 loc) · 1.75 KB
title description type page_title slug tags res_type
Creating a Funnel Chart in Telerik Reporting
Learn how to create a funnel chart in Telerik Reporting.
how-to
How to Create a Funnel Chart in Telerik Reporting
create-funnel-chart-telerik-reporting
Telerik Reporting,Funnel Chart,Bar Chart,Centered Bars
kb

Environment

Property Value
Product Progress® Telerik® Reporting

Description

I would like to create a funnel chart in Telerik Reporting. How can I achieve this?

Solution

To create a bar chart that resembles a funnel chart [add two bar series]({%slug telerikreporting/designing-reports/report-structure/graph/how-to/how-to-add-series%}) that share a category group and have opposite values.

For example, if the value field is called "Value", the X-axis expression can be = Sum(Fields.Value) / 2.0 for one of the series and = - Sum(Fields.Value) / 2.0 for the other.

This will force the two series to display on both sides of the Y-axis and center the bars in the graph's surface area.

Demo

You can find a Sample Funnel Chart Report that illustrates the above in our GitHub Reporting-Samples repository.

Notes

Please note that this workaround provides a similar visual effect to a funnel chart. If Telerik Reporting implements a funnel chart type in the future, you may consider using that for a more streamlined approach.

See Also

  • [Add Series to the Graph]({%slug telerikreporting/designing-reports/report-structure/graph/how-to/how-to-add-series%})
  • Funnel Chart Report