This question is locked. New answers and comments are not allowed.
Hello,
In my application i want RangeBarSeriesDefinition , I am trying with Telerik.Windows.Controls.Charting dll. But not getting RangeBarSeriesDefinition there. In which version it is included. Please give details with any sample code how to create
RangeBarSeriesDefinition.
Thanks,
Mahendra.
In my application i want RangeBarSeriesDefinition , I am trying with Telerik.Windows.Controls.Charting dll. But not getting RangeBarSeriesDefinition there. In which version it is included. Please give details with any sample code how to create
RangeBarSeriesDefinition.
Thanks,
Mahendra.
3 Answers, 1 is accepted
0
Hi Mahendra,
I've attached a simple project illustrating a sample Bar Chart.
You can find a lot of useful information in our help topics:
http://www.telerik.com/help/silverlight/radchart-getting-started-create-data-bound-chart.html
http://www.telerik.com/help/silverlight/radchart-getting-started-create-a-line-chart-with-static-data.html
http://www.telerik.com/help/silverlight/radchart-populating-with-data-creating-chart-declaratively.html
http://www.telerik.com/help/silverlight/radchart-populating-with-data-creating-chart-in-code-behind.html
You can also refer to our demo examples here.
I hope this gets you started properly.
All the best,
Peshito
the Telerik team
I've attached a simple project illustrating a sample Bar Chart.
You can find a lot of useful information in our help topics:
http://www.telerik.com/help/silverlight/radchart-getting-started-create-data-bound-chart.html
http://www.telerik.com/help/silverlight/radchart-getting-started-create-a-line-chart-with-static-data.html
http://www.telerik.com/help/silverlight/radchart-populating-with-data-creating-chart-declaratively.html
http://www.telerik.com/help/silverlight/radchart-populating-with-data-creating-chart-in-code-behind.html
You can also refer to our demo examples here.
I hope this gets you started properly.
All the best,
Peshito
the Telerik team
Register for the Q2 2011 What's New Webinar Week. Mark your calendar for the week starting July 18th and book your seat for a walk through of all the exciting stuff we will ship with the new release!
0
Mahendra
Top achievements
Rank 1
answered on 08 Jul 2011, 06:57 AM
Hello,
Please find attached image. I want same chart. Its already given in sample demo but I am not able to get RangeBarSeriesDefinition
So please tell any other option to get that type of chart. Or if I wan to use demo sample which version of dll should I use.
Let me know if any solution.
Thanks,
Mahendra
Please find attached image. I want same chart. Its already given in sample demo but I am not able to get RangeBarSeriesDefinition
So please tell any other option to get that type of chart. Or if I wan to use demo sample which version of dll should I use.
Let me know if any solution.
Thanks,
Mahendra
0
Hello Mahendra,
Please find attached the same project as I gave you earlier with the changes needed to get the same type of bar as the one used in the screenshot provided by you.
In order to get RangeBarSeriesDefinition you need to do the following in the code behind:
SeriesMapping barSeries = new SeriesMapping();
barSeries.SeriesDefinition = new RangeBarSeriesDefinition();
For more information on how to create charts declaratively please refer to:
http://www.telerik.com/help/silverlight/radchart-populating-with-data-creating-chart-declaratively.html
For more information on how to create charts in code behind, please refer to:
http://www.telerik.com/help/silverlight/radchart-populating-with-data-creating-chart-in-code-behind.html
Regarding the dll version, the one you've provided in the ticket info "2011.1 419" is good.
Greetings,
Peshito
the Telerik team
Please find attached the same project as I gave you earlier with the changes needed to get the same type of bar as the one used in the screenshot provided by you.
In order to get RangeBarSeriesDefinition you need to do the following in the code behind:
SeriesMapping barSeries = new SeriesMapping();
barSeries.SeriesDefinition = new RangeBarSeriesDefinition();
For more information on how to create charts declaratively please refer to:
http://www.telerik.com/help/silverlight/radchart-populating-with-data-creating-chart-declaratively.html
For more information on how to create charts in code behind, please refer to:
http://www.telerik.com/help/silverlight/radchart-populating-with-data-creating-chart-in-code-behind.html
Regarding the dll version, the one you've provided in the ticket info "2011.1 419" is good.
Greetings,
Peshito
the Telerik team
Register for the Q2 2011 What's New Webinar Week. Mark your calendar for the week starting July 18th and book your seat for a walk through of all the exciting stuff we will ship with the new release!
