Hi all,
I have to display year in X axis . For each year there is more than 2 series(company names) and for each company their Appraisal in y Axis.
How can i implement multiple series.I tried "RadChart1.DataGroupColumn " But more than 2 companies not listing for each year..
Eg: Year: 2009 -------Comp:comp1,comp2,comp3---- Appraisal: comp1-->2,comp2-->5,comp3-->8
And for year 2010 ------Comp:comp1---- Appraisal: comp1-->2
etc...
Please reply,,,
Lekha
I have to display year in X axis . For each year there is more than 2 series(company names) and for each company their Appraisal in y Axis.
How can i implement multiple series.I tried "RadChart1.DataGroupColumn " But more than 2 companies not listing for each year..
Eg: Year: 2009 -------Comp:comp1,comp2,comp3---- Appraisal: comp1-->2,comp2-->5,comp3-->8
And for year 2010 ------Comp:comp1---- Appraisal: comp1-->2
etc...
Please reply,,,
Lekha
7 Answers, 1 is accepted
0
Hi,
Have you taken a look at our help topic here. It demonstrates a scenario that is similar to yours. I have also attached a data grouping sample that you could refer to.
Hope this helps.
Regards,
Peshito
the Telerik team
Have you taken a look at our help topic here. It demonstrates a scenario that is similar to yours. I have also attached a data grouping sample that you could refer to.
Hope this helps.
Regards,
Peshito
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0

lekha
Top achievements
Rank 1
answered on 07 Apr 2012, 05:14 AM
hi
thanku
its very helpfull.
thanku
its very helpfull.
0

Jittu
Top achievements
Rank 1
answered on 15 Jan 2013, 03:10 PM
I would like to have a chart as the attached picture. I am all new to these chart and the stuff present here is very confusing . I need to show the value on top befoew I need to display the chart hopefully with a collection.Please help me
0
Hello Jittu,
As you are new to our controls, I would suggest you to take a look at our online help topics here:
http://www.telerik.com/help/aspnet-ajax/chart-building-data-bind-list-complex.html
We also have number of online demo examples that could help you:
http://demos.telerik.com/aspnet-ajax/chart/examples/skinning/bars/defaultcs.aspx
http://demos.telerik.com/aspnet-ajax/chart/examples/databinding/lists/defaultcs.aspx
Hope this will help you get started.
Regards,
Peshito
the Telerik team
As you are new to our controls, I would suggest you to take a look at our online help topics here:
http://www.telerik.com/help/aspnet-ajax/chart-building-data-bind-list-complex.html
We also have number of online demo examples that could help you:
http://demos.telerik.com/aspnet-ajax/chart/examples/skinning/bars/defaultcs.aspx
http://demos.telerik.com/aspnet-ajax/chart/examples/databinding/lists/defaultcs.aspx
Hope this will help you get started.
Regards,
Peshito
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0

Jittu
Top achievements
Rank 1
answered on 18 Jan 2013, 01:55 PM
I am so sorry I should have specified about the requirement clearly while posting. It should be using Radchart for Silverlight not Ajax and it uses MVVM pattern.
How can I change the values of Y axis specific to the collection value. I mean I am not sure about the range of values that should get displayed it would be different with different input values?
How can I change the values of Y axis specific to the collection value. I mean I am not sure about the range of values that should get displayed it would be different with different input values?
0
0
Hi Jittu,
In order to start your Y axis from 0, you will need to manually specify its range like this for example:
Note that the AutoRange should be disabled first.
More about customizing the axis can be found here:
http://www.telerik.com/help/silverlight/radchart-features-axes-overview.html
As you are also new to our controls and you intend to use the Silverlight's RadChart, I would suggest you to take a look at the newer RadChartView control as well.
Hope this helps.
Regards,
Peshito
the Telerik team
In order to start your Y axis from 0, you will need to manually specify its range like this for example:
radChart.DefaultView.ChartArea.AxisY.AutoRange =
false
;
radChart.DefaultView.ChartArea.AxisY.MinValue = 0;
radChart.DefaultView.ChartArea.AxisY.MaxValue = 100;
radChart.DefaultView.ChartArea.AxisY.Step = 25;
More about customizing the axis can be found here:
http://www.telerik.com/help/silverlight/radchart-features-axes-overview.html
As you are also new to our controls and you intend to use the Silverlight's RadChart, I would suggest you to take a look at the newer RadChartView control as well.
Hope this helps.
Regards,
Peshito
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.