Page 1 of 1

Custom tick grid line color

Posted: Mon Sep 19, 2016 6:10 am
by matus
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.

Re: Custom tick grid line color

Posted: Tue Sep 20, 2016 5:52 am
by ArctionPasi
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).

Re: Custom tick grid line color

Posted: Tue Sep 20, 2016 10:22 am
by matus
Thanks, that worked.

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

Re: Custom tick grid line color

Posted: Tue Sep 20, 2016 6:16 pm
by ArctionPasi
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.

Re: Custom tick grid line color

Posted: Thu Sep 22, 2016 3:09 pm
by matus
Thank you, it was indeed there.
I subscribed to the newsletter.