How male Axis marks bigger
Posted: Mon Nov 06, 2006 9:59 am
Subject.
Steema Software - Customer Support Forums
http://216.92.243.79/support/
I mean not value by itself, I mean the line wgat show position of value on graphic
OKnarcis 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.
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 neednarcis 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