Index

From: Christopher Ireland
Subject: Re: Left axis label on tower series
Date: Tue, 4 May 2004 09:06:17 +0200
Newsgroup: steema.public.teechart6.activex  

Hi Nina,

> How can you customize the left axis label on a tower series?

Try:

Private Sub Form_Load()
With TChart1
.AddSeries scTower
.Series(0).FillSampleValues 20
.Panel.MarginLeft = 10
End With
End Sub

Private Sub TChart1_OnGetAxisLabel(ByVal Axis As Long, ByVal SeriesIndex As
Long, ByVal ValueIndex As Long, LabelText As String)
If Axis = atLeft Then
If LabelText = "0.2" Then
LabelText = "My Custom Label"
End If
End If
End Sub


--
Best Regards,

Christopher Ireland
http://support.steema.com

"Important note: If you are a TeeChart registered customer, please post your
support questions at Steema's Support monitored Forums for customers:
http://support.steema.com for a prompter reply."