Title doesn't display

A forum dedicated to WinForms version of LightningChart Ultimate.

Moderator: Queue Moderators

Post Reply
lukoprovandrey
Posts: 29
Joined: Fri Sep 04, 2015 2:30 pm

Title doesn't display

Post by lukoprovandrey » Tue Nov 17, 2015 2:25 pm

Hi all.

If i use :

Code: Select all

chart.ViewXY.AxisLayout.YAxesLayout = YAxesLayout.Stacked;
and for each dataseries:

Code: Select all

SampleDataSeries.LimitYToStackSegment = false;
SampleDataSeries.Title.Visible = true;
my charts are overlapped(see screenshots bellow)
s1.png
s1.png (24.93 KiB) Viewed 6341 times
but if I change LimitYToStackSegment to TRUE, then my titles are overlapped:
s2.png
s2.png (19.9 KiB) Viewed 6341 times
how can I display titles and cutted charts?
Expected results:
s3.png
s3.png (19.79 KiB) Viewed 6341 times
Thanks.

User avatar
ArctionPasi
Posts: 1367
Joined: Tue Mar 26, 2013 10:57 pm
Location: Finland
Contact:

Re: Title doesn't display

Post by ArctionPasi » Tue Nov 17, 2015 2:51 pm

Clipping mask clips also the series titles.

Please use Annotations instead. You can use ViewXY.GetGraphSegmentInfo() to learn where the segments are in screen coordinates, and position the annotations accordingly.
LightningChart Support Team, PT

lukoprovandrey
Posts: 29
Joined: Fri Sep 04, 2015 2:30 pm

Re: Title doesn't display

Post by lukoprovandrey » Tue Nov 17, 2015 3:13 pm

Thanks.

Post Reply