Page 1 of 1

Inner minor ticks

Posted: Wed Apr 20, 2005 2:51 pm
by 9339785
Hello,

It is possible to draw inner minor ticks for the graph ?
I know that it is possible to draw inner ticks but they are only displayed for main ticks, not for minor ticks....

Thanks
Franck

Posted: Thu Apr 21, 2005 8:35 am
by narcis
Hi Franck,

Yes, this is possible. Just run the chart editor, select "Axis" tab. There you will have "Ticks" and "Minor" tabs to do what you request.

Posted: Fri Apr 22, 2005 7:21 am
by 9339785
yes, you are right, but what I want to do is to display minor ticks on the right of the left axis .... and on the left of the right axis .....
The graph v7.04 only do the oppposite (i.e minor ticks on the left of the left axis .... and on the right of the right axis)....

Franck

Posted: Fri Apr 22, 2005 7:32 am
by Marjan
Hi, Franck.

This can be easily solved by setting minor ticks length to negative value. This can be done at design time (Object Inspector) or at runtime via code:

Code: Select all

tChart1.Axes.Left.MinorTickLength := -3;
tChart1.Axes.Right.MinorTickLength := -3;