Unplanned
Last Updated: 29 Mar 2016 10:41 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 01 May 2015 06:33
Category: ChartView
Type: Bug Report
1
FIX. RadChartView - improve the performance when the ShowSmartLabels property is set to true and you resize the chart
To reproduce:

public Form1()
{
    InitializeComponent();
    this.radChartView1.AreaType = ChartAreaType.Polar;
    Random rand = new Random();
    for (int i = 0; i < 80; i++)
    {
        RadarLineSeries s = new RadarLineSeries();
        s.ShowLabels = true;
        for (int j = 0; j < 8; j++)
        {
            s.DataPoints.Add(new CategoricalDataPoint(rand.Next(1, 100), "X" + j));
        }
       
        this.radChartView1.Series.Add(s);
    }
    this.radChartView1.ShowSmartLabels = true;
}
0 comments