Completed
Last Updated: 01 Oct 2014 12:13 by ADMIN
ADMIN
George
Created on: 10 Apr 2014 14:31
Category: ChartView
Type: Bug Report
0
FIX. RadChartView - LineSeries do not visually show correct values
To reproduce:

Use the following code with RadChartView: 

this.Chart.Series.Add(new LineSeries());


for (int i = 0; i < 50; i++)
{
    if (i == 10)
    {
        this.Chart.Series[0].DataPoints.Add(new CategoricalDataPoint(1));
        continue;
    }


    this.Chart.Series[0].DataPoints.Add(new CategoricalDataPoint(0));
}

this.Chart.ShowGrid = true;

You will see that the point will not be rendered correctly and will be taller than 1.

0 comments