Hey Guys
I would really appreciate your help as this is the first time I am using the charting controls. I have a screenshot attached here.
http://michael.dimoudis.s3.amazonaws.com/telerik-chart-help.gif
Basically on the left is the excel chart. On the right is what I so far managed to achieve, however I need help with the labels of the RadChart.
The DataSource is a list. Here it is...
public class MeanResults
{
public int QuestionId { get; set; }
public string Quadrant { get; set; }
public string StatementType { get; set; }
public double OrganisationalDelivery { get; set; }
public double PersonalNeeds { get; set; }
}
Here is the aspx page code
<telerik:RadChart ID="RadChart1" runat="server" Skin="LightBlue" Width="900px" Height="700px" SeriesOrientation="Horizontal">
<Series>
<telerik:ChartSeries DataYColumn="OrganisationalDelivery" Name="Organisational Delivery">
</telerik:ChartSeries>
<telerik:ChartSeries DataYColumn="PersonalNeeds" Name="Personal Needs">
</telerik:ChartSeries>
</Series>
</telerik:RadChart>
I basically do a RadChart1.DataSource = List<MeanResults>(the date...); RadChart1.DataBind().
Basically instead of the numbers 1-24 on the left, I need the StatementType label (only once per double bar). I also need the bottom scale to ALWAYS display 0 -10 instead of 0 - the last value of the OrganisationalDelivery or PersonalNeeds value.
Thanks in advance.
If someone is board and can help me go one step further and acheive this, I would be very grateful.
http://michael.dimoudis.s3.amazonaws.com/telerik-chart-help2.gif
Thanks, Michael
I would really appreciate your help as this is the first time I am using the charting controls. I have a screenshot attached here.
http://michael.dimoudis.s3.amazonaws.com/telerik-chart-help.gif
Basically on the left is the excel chart. On the right is what I so far managed to achieve, however I need help with the labels of the RadChart.
The DataSource is a list. Here it is...
public class MeanResults
{
public int QuestionId { get; set; }
public string Quadrant { get; set; }
public string StatementType { get; set; }
public double OrganisationalDelivery { get; set; }
public double PersonalNeeds { get; set; }
}
Here is the aspx page code
<telerik:RadChart ID="RadChart1" runat="server" Skin="LightBlue" Width="900px" Height="700px" SeriesOrientation="Horizontal">
<Series>
<telerik:ChartSeries DataYColumn="OrganisationalDelivery" Name="Organisational Delivery">
</telerik:ChartSeries>
<telerik:ChartSeries DataYColumn="PersonalNeeds" Name="Personal Needs">
</telerik:ChartSeries>
</Series>
</telerik:RadChart>
I basically do a RadChart1.DataSource = List<MeanResults>(the date...); RadChart1.DataBind().
Basically instead of the numbers 1-24 on the left, I need the StatementType label (only once per double bar). I also need the bottom scale to ALWAYS display 0 -10 instead of 0 - the last value of the OrganisationalDelivery or PersonalNeeds value.
Thanks in advance.
If someone is board and can help me go one step further and acheive this, I would be very grateful.
http://michael.dimoudis.s3.amazonaws.com/telerik-chart-help2.gif
Thanks, Michael