Inner minor ticks

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
franckgar
Advanced
Posts: 109
Joined: Thu Nov 04, 2004 5:00 am

Inner minor ticks

Post by franckgar » Wed Apr 20, 2005 2:51 pm

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
franckgar

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Thu Apr 21, 2005 8:35 am

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.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

franckgar
Advanced
Posts: 109
Joined: Thu Nov 04, 2004 5:00 am

Post by franckgar » Fri Apr 22, 2005 7:21 am

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

Marjan
Site Admin
Site Admin
Posts: 745
Joined: Fri Nov 07, 2003 5:00 am
Location: Slovenia
Contact:

Post by Marjan » Fri Apr 22, 2005 7:32 am

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;
Marjan Slatinek,
http://www.steema.com

Post Reply