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

Incorrect behavior of the line at the beginning and at the end at identical values

1 Answer 25 Views
Chart (obsolete as of Q1 2013)
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Slawa
Top achievements
Rank 1
Slawa asked on 28 Sep 2016, 09:48 AM
Incorrect behavior of the line at the beginning and at the end at identical values

1 Answer, 1 is accepted

Sort by
0
Dess | Tech Support Engineer, Principal
Telerik team
answered on 30 Sep 2016, 12:14 PM
Hello ,

Thank you for writing.  

Since RadChart is obsolete, I would recommend you to use RadChartView which renders the equal values in an AreaSeries as in the attached screenshot.
public Form1()
{
    InitializeComponent();
 
    AreaSeries areaSeries = new AreaSeries();
    for (int i = 0; i < 5; i++)
    {
        areaSeries.DataPoints.Add(new CategoricalDataPoint(10, i));
    }
     
    this.radChartView1.Series.Add(areaSeries);
}

I hope this information helps. Should you have further questions I would be glad to help.

Regards,
Dess
Telerik by Progress
Check out the Windows Forms project converter, which aids the conversion process from standard Windows Forms applications written in C# or VB to Telerik UI for WinForms.For more information check out this blog post and share your thoughts.
Tags
Chart (obsolete as of Q1 2013)
Asked by
Slawa
Top achievements
Rank 1
Answers by
Dess | Tech Support Engineer, Principal
Telerik team
Share this question
or