This is a migrated thread and some comments may be shown as answers.

Funnel Chart

3 Answers 67 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Sinna
Top achievements
Rank 1
Sinna asked on 06 Sep 2010, 05:52 AM

Hi Telrik,

I’m in the process of evaluating the suitability of the Telrik tools for our development and very happy with the outcome.  There is one more critical control that we need is the Funnel Chart.  Is it available for WPF?  If it is, how do I use it please?

Thanks,
Bramen.

3 Answers, 1 is accepted

Sort by
0
Vladimir Milev
Telerik team
answered on 08 Sep 2010, 10:45 AM
Hi Sinna,

We have funnel chart for WPF RadChart as a 3D chart type.

Best wishes,
Vladimir Milev
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Chan
Top achievements
Rank 1
answered on 03 May 2013, 01:52 PM
Helo !
Can we have Funnel chart for winforms ?
I m using Visual Studio 2012.I dont have radchart controls group in toolbox. So, I started creating it programatically.

                 RadChart radChart = new RadChart();            
            radChart.ChartTitle.TextBlock.Text = "Opportunity";
            this.radPanelChart.Controls.Add(radChart);
            Telerik.Charting.ChartSeries chartSeries = new Telerik.Charting.ChartSeries();
            chartSeries.Name = "Sales";
            chartSeries.Type = ChartSeriesType.Pie;
 
            chartSeries.AddItem(120, "Internet");
            chartSeries.AddItem(140, "Retail");
            chartSeries.AddItem(35, "Wholesale");
 
            radChart.Series.Add(chartSeries);

The above code snippet taken from help forum (Programatically create RadChart), I could not find ChartSeriesType as Funnel, however, i found types as pie, bar, area, etc but could not find any option for Funnel. It is a mandatory requirement to display the sales data on funnel chart.

Please help me out on this issue. How to get funnel chart?

Thanks

Chan
0
Ves
Telerik team
answered on 08 May 2013, 06:54 AM
Hi Chan,

I am afraid funnel chart type is not supported in RadChart for winforms. A possible workaround here would be to use ElementHost to include WPF content in a winforms application and use our 3D funnel chart within it.

Best regards,
Ves
the Telerik team

Explore the entire Telerik portfolio by downloading Telerik DevCraft Ultimate.

Tags
General Discussions
Asked by
Sinna
Top achievements
Rank 1
Answers by
Vladimir Milev
Telerik team
Chan
Top achievements
Rank 1
Ves
Telerik team
Share this question
or