How male Axis marks bigger

TeeChart for ActiveX, COM and ASP
Post Reply
Nuzur
Newbie
Newbie
Posts: 32
Joined: Thu Nov 03, 2005 5:00 am
Contact:

How male Axis marks bigger

Post by Nuzur » Mon Nov 06, 2006 9:59 am

Subject.

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

Post by Narcís » Mon Nov 06, 2006 3:35 pm

Hi Nuzur,

Try using this:

Code: Select all

    TChart1.Axis.Bottom.Labels.Font.Size = 12
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

Nuzur
Newbie
Newbie
Posts: 32
Joined: Thu Nov 03, 2005 5:00 am
Contact:

Post by Nuzur » Mon Nov 06, 2006 3:39 pm

narcis wrote:Hi Nuzur,

Try using this:

Code: Select all

    TChart1.Axis.Bottom.Labels.Font.Size = 12
I mean not value by itself, I mean the line wgat show position of value on graphic :)

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

Post by Narcís » Mon Nov 06, 2006 3:45 pm

Hi Nuzur,

Sorry but I don't understand what do you exactly mean. Could you please elaborate on that or send us an image so that we can see what you really want.

You can post your files at news://www.steema.net/steema.net/steema.public.attachments newsgroup.

Thanks in advance.
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

Nuzur
Newbie
Newbie
Posts: 32
Joined: Thu Nov 03, 2005 5:00 am
Contact:

Post by Nuzur » Mon Nov 06, 2006 4:07 pm

narcis wrote:Hi Nuzur,

Sorry but I don't understand what do you exactly mean. Could you please elaborate on that or send us an image so that we can see what you really want.

You can post your files at news://www.steema.net/steema.net/steema.public.attachments newsgroup.

Thanks in advance.
OK

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

Post by Narcís » Mon Nov 06, 2006 4:27 pm

Hi Nuzur,

Thanks for the files. You can use something like this:

Code: Select all

    With TChart1.Axis.Bottom
        .Ticks.Width = 5
        .TickLength = 10
        .Ticks.Color = vbBlue
        
        .TicksInner.Width = 5
        .TickInnerLength = 5
        .TicksInner.Color = vbBlue
    End With
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

Nuzur
Newbie
Newbie
Posts: 32
Joined: Thu Nov 03, 2005 5:00 am
Contact:

Post by Nuzur » Wed Nov 08, 2006 9:00 am

narcis wrote:Hi Nuzur,

Thanks for the files. You can use something like this:

Code: Select all

    With TChart1.Axis.Bottom
        .Ticks.Width = 5
        .TickLength = 10
        .Ticks.Color = vbBlue
        
        .TicksInner.Width = 5
        .TickInnerLength = 5
        .TicksInner.Color = vbBlue
    End With
Thanks You its what I need

Post Reply