This is a migrated thread and some comments may be shown as answers.

Can't remove light rendered series

1 Answer 32 Views
ChartView
This is a migrated thread and some comments may be shown as answers.
Alex
Top achievements
Rank 1
Alex asked on 01 Mar 2013, 03:19 PM
Pseudo code to reproduce the problem.
1. void OnFirstButtonClick(){
  Chart.Series.Clear();
  var series = new LineSeries()  {RenderMode = SeriesRenderMode.Light};
  Chart.Series.Add(series);
 }
// I can see added series, it's OK
2.  void OnSecondButtonClick(){
  Chart.Series.Clear();
  var series = new LineSeries();
  Chart.Series.Add(series);
 }
// I see new series and series from the first step. Why?
// If the first series are rendered with Full RenderMode, I see only the second.

1 Answer, 1 is accepted

Sort by
0
Petar Kirov
Telerik team
answered on 06 Mar 2013, 11:32 AM
Hi Alex,

If been able to successfully reproduce the bug. I have logged this in our Public Issue Tracker on this link. There you can follow the progress of this problem.

Thanks for reporting. I have updated your Telerik points respectively.
 
Regards,
Petar Kirov
the Telerik team

Explore the entire Telerik portfolio by downloading Telerik DevCraft Ultimate.

Tags
ChartView
Asked by
Alex
Top achievements
Rank 1
Answers by
Petar Kirov
Telerik team
Share this question
or