Page 1 of 1

Overlapping SampleDataSeries

Posted: Fri Jul 05, 2019 2:16 pm
by AlexanderEmelyanenko
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.

Re: Overlapping SampleDataSeries

Posted: Mon Jul 08, 2019 9:55 am
by Arction_LasseP
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.

Re: Overlapping SampleDataSeries

Posted: Mon Jul 08, 2019 1:54 pm
by AlexanderEmelyanenko
Your solution helped me. Thank you very much.

Re: Overlapping SampleDataSeries

Posted: Tue Nov 05, 2019 5:39 am
by elfridaauston87
Very helpful first reply.