Page 1 of 1

How male Axis marks bigger

Posted: Mon Nov 06, 2006 9:59 am
by 9089070
Subject.

Posted: Mon Nov 06, 2006 3:35 pm
by narcis
Hi Nuzur,

Try using this:

Code: Select all

    TChart1.Axis.Bottom.Labels.Font.Size = 12

Posted: Mon Nov 06, 2006 3:39 pm
by 9089070
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 :)

Posted: Mon Nov 06, 2006 3:45 pm
by narcis
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.

Posted: Mon Nov 06, 2006 4:07 pm
by 9089070
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

Posted: Mon Nov 06, 2006 4:27 pm
by narcis
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

Posted: Wed Nov 08, 2006 9:00 am
by 9089070
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