Unplanned
Last Updated: 30 Mar 2016 10:47 by ADMIN
ADMIN
Ivan Petrov
Created on: 21 Jul 2014 11:40
Category: RangeSelector
Type: Bug Report
0
FIX. RadRangeSelector - when associating a RadChartView with lots of data points the range selector takes a lot of time to render.
Use the following sample code to reproduce the issue:

LineSeries series = new LineSeries();
series.ValueMember = "Value";
series.CategoryMember = "Category";
this.radChartView1.Series.Add(series);

DataTable table = new DataTable();

table.Columns.Add("Category", typeof(int));
table.Columns.Add("Value", typeof(int));
double value = 100;

for (int i = 0; i < 1000; i++)
{
    value += rnd.Next(-3, +4);

    table.Rows.Add(i, value);
}

series.DataSource = table;

this.radRangeSelector1.AssociatedControl = this.radChartView1;
0 comments