text of invisible label

TeeChart for ActiveX, COM and ASP
Post Reply
hantom
Newbie
Newbie
Posts: 11
Joined: Thu Apr 17, 2008 12:00 am

text of invisible label

Post by hantom » Sat Jan 31, 2009 11:13 am

hi experts,


Is it anyway to get the text of an axislabel that is invisible?
I add unique text to axis labels. I have to know th x and y values and x axislabel text at a given point (a given value of valuelist)

now, the value is 12:

.xvalues.value(12) - works
.yvalues.value(12) - works

.labels.item(12).text - does not works for me because it give the 12. visible label text, but I need the text of the label of 12. value and actually the label of 12. value is invisible (it is missed from labels.item() array).


thank

Yeray
Site Admin
Site Admin
Posts: 9602
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Post by Yeray » Mon Feb 02, 2009 8:47 am

Hi hantom,

Have you tried the following?

Code: Select all

TChart1.Series(0).PointLabel(12)
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

hantom
Newbie
Newbie
Posts: 11
Joined: Thu Apr 17, 2008 12:00 am

Post by hantom » Mon Feb 02, 2009 8:58 am

thank You

Post Reply