Custom tick grid line color

Questions or problems related to updating projects from v.6 to v.7

Moderator: Queue Moderators

Post Reply
matus
Posts: 24
Joined: Mon Sep 12, 2016 7:52 am

Custom tick grid line color

Post by matus » Mon Sep 19, 2016 6:10 am

Hello,
in V7, it seems that the gridline is always the same color as the custom tick.

Code: Select all

axis.CustomTicks.Add(new CustomAxisTick(axis, point.Value, point.Label ?? string.Empty)
                        {
                            Color = Colors.Black,
                            Style = CustomTickStyle.TickAndGrid,
                            Length = 5,
                        });
I would like to set the gridline color to light grey, but I cannot find a way to set that.
In v6 the custom ticks and gridlines settings were taken from the normal ticks.

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

Re: Custom tick grid line color

Post by ArctionPasi » Tue Sep 20, 2016 5:52 am

Hi matus,

v.7 allows controlling grid and tick colors individually. You can give specific colors to tick and grid by adding two custom ticks. One tick for the tick (customTick.Style = Tick), and one tick for the grid (customTick.Style = Grid).
LightningChart Support Team, PT

matus
Posts: 24
Joined: Mon Sep 12, 2016 7:52 am

Re: Custom tick grid line color

Post by matus » Tue Sep 20, 2016 10:22 am

Thanks, that worked.

It would be useful to have a list of all changes for a release.

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

Re: Custom tick grid line color

Post by ArctionPasi » Tue Sep 20, 2016 6:16 pm

Hello,

you are not receiving our version release notes? Please send your e-mail address to arction [at] arction.com, and we'll keep you informed in the future.

When we released v.7, we new version features letter to all customers signed up for the release notes. It was also shown here:
http://forum.arction.com/viewtopic.php?f=25&t=796

7.1 here:
http://forum.arction.com/viewtopic.php?f=25&t=914

In there you can find pdf summary.
LightningChart Support Team, PT

matus
Posts: 24
Joined: Mon Sep 12, 2016 7:52 am

Re: Custom tick grid line color

Post by matus » Thu Sep 22, 2016 3:09 pm

Thank you, it was indeed there.
I subscribed to the newsletter.

Post Reply