Page 1 of 1

Font Size for PointLabel?

Posted: Thu Apr 05, 2007 8:21 pm
by 9524907
Is there a way to adjust the font size for the PointLabels in a series?

Posted: Tue Apr 10, 2007 12:09 pm
by narcis
Hi ASM,

You can do something like this:

Code: Select all

    TChart1.Series(0).Marks.Font.Size = 12

Posted: Wed Apr 11, 2007 6:31 pm
by 9524907
I have tried that, but it doesn't seem to work. I'm looking to adjust the font size of the label for a point:

TChart.Series(0).AddXY(xValue, yValue, label, color)

The label that is added in the statement above doesn't seem to have a way to change the font size. Is the marks font size supposed to apply to this as well?

Posted: Wed Apr 11, 2007 6:56 pm
by 9524907
Nevermind, I was able to fix it. What I thought was the point label being displayed was actually an annotation. Thanks for the help, though!