Page 1 of 1

text of invisible label

Posted: Sat Jan 31, 2009 11:13 am
by 15048895
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

Posted: Mon Feb 02, 2009 8:47 am
by yeray
Hi hantom,

Have you tried the following?

Code: Select all

TChart1.Series(0).PointLabel(12)

Posted: Mon Feb 02, 2009 8:58 am
by 15048895
thank You