Completed
Last Updated: 07 Jul 2015 12:30 by ADMIN
ADMIN
Hristo
Created on: 24 Jun 2015 14:29
Category: ChartView
Type: Bug Report
1
FIX RadChartView - Application hangs if you add a PieSeries having all of its data points with zero values and set ShowSmartLabels to true
How to reproduce: 
public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();

        this.radChartView1.AreaType = ChartAreaType.Pie;
        PieSeries series = new PieSeries();
        series.DataPoints.Add(new PieDataPoint(0, "Germany"));
        series.DataPoints.Add(new PieDataPoint(0, "United States"));
        series.DataPoints.Add(new PieDataPoint(0, "France"));
        series.DataPoints.Add(new PieDataPoint(0, "United Kingdom"));
        series.ShowLabels = true;
        this.radChartView1.Series.Add(series);
        this.radChartView1.ShowSmartLabels = true;
    }
}

Workaround: 
this.radChartView1.ShowSmartLabels = false;
0 comments