HighLowSeries.Clear() dosen't work.

A forum dedicated to WPF version of LightningChart Ultimate.

Moderator: Queue Moderators

Post Reply
fukasawa
Posts: 18
Joined: Fri Sep 04, 2015 11:13 am

HighLowSeries.Clear() dosen't work.

Post by fukasawa » Fri Jul 21, 2017 1:55 am

Hello !

In Semi-Bindable Chart, HighLowSeries.Clear dosen't work.
However, Clear method of PointLineSeries and AreaSeries work.

Instead of Clear method, Reset Points Property works as Clear.

Code: Select all

//Nothing happened
HighLowSeries[0].Clear();

//Clear All Points
HighLowSeries[0].Points = new HighLowSeriesPoint[0];
So, why?

User avatar
ArctionNikolai
Posts: 38
Joined: Fri Feb 05, 2016 11:37 am
Location: Finland
Contact:

Re: HighLowSeries.Clear() dosen't work.

Post by ArctionNikolai » Tue Jul 25, 2017 11:24 am

Thank you for your message and reported problem. We will fix this. For now, you can change directly property HighLowSeries[].Points = with new array of points / empty.
The fixes will be in next release.
Nikolai Arsenov
Software developer
Arction Ltd
Microkatu 1, 70210 Kuopio, Finland

fukasawa
Posts: 18
Joined: Fri Sep 04, 2015 11:13 am

Re: HighLowSeries.Clear() dosen't work.

Post by fukasawa » Wed Jul 26, 2017 4:58 am

OK, Thank you.

Post Reply