Completed
Last Updated: 12 Mar 2018 09:28 by Dimitar
ADMIN
Hristo
Created on: 05 Mar 2018 13:16
Category: ChartView
Type: Bug Report
0
FIX. RadChartView - when the chart view is associated with RadPivotGrid setting the datasource property of the chart to null is not reflected by the pivot
How to reproduce: check the attached project

Workaround: 
private void button1_Click(object sender, EventArgs e)
{
    this.radChartView1.DataSource = null;
    foreach (ChartSeries series in this.radChartView1.Series)
    {
        series.DataSource = null;
    }

    this.radChartView1.Series.Clear();
}
Attached Files:
0 comments