Overlapping SampleDataSeries

A forum dedicated to WinForms version of LightningChart Ultimate.

Moderator: Queue Moderators

Post Reply
AlexanderEmelyanenko
Posts: 6
Joined: Thu Aug 09, 2018 4:37 pm

Overlapping SampleDataSeries

Post by AlexanderEmelyanenko » Fri Jul 05, 2019 2:16 pm

After the latest 8.4.2.1 update, series doesn't clip inside segment if we set YAxis range smaller. I attach 2 screenshot with full view and with zoomed. LimitYToStackSegment is already set to series. YAxis has logrithmic scaletype. The same issue is for Segmented and Stacked. What can I set in the new version for the series clipping inside segments?

Thanks.
Attachments
full_view.jpg
full_view.jpg (55.32 KiB) Viewed 6424 times
zoomed.jpg
zoomed.jpg (47.54 KiB) Viewed 6424 times

Arction_LasseP
Posts: 141
Joined: Wed Mar 27, 2019 1:05 pm

Re: Overlapping SampleDataSeries

Post by Arction_LasseP » Mon Jul 08, 2019 9:55 am

Hello,

We have had issues similar to this earlier. Usually the cause for this kind of behaviour is that there are certain properties which don't work well together, in this case LimitYToStackSegment and RenderBehindSeries (GraphBordersOverSeries in LightningChart versions before 8.4). In any of these two settings are used, LimitYToStackSegment stops working properly.

Code: Select all

_chart.ViewXY.Border.RenderBehindSeries = true;

_chart.ViewXY.GraphBordersOverSeries = false;
Therefore we recommend making sure that these properties are not used in your application (or alternatively set RenderBehindSeries false). This is a known bug and will be fixed in our next release version.

AlexanderEmelyanenko
Posts: 6
Joined: Thu Aug 09, 2018 4:37 pm

Re: Overlapping SampleDataSeries

Post by AlexanderEmelyanenko » Mon Jul 08, 2019 1:54 pm

Your solution helped me. Thank you very much.

elfridaauston87
Posts: 1
Joined: Tue Nov 05, 2019 5:38 am

Re: Overlapping SampleDataSeries

Post by elfridaauston87 » Tue Nov 05, 2019 5:39 am

Very helpful first reply.

Post Reply