Page 1 of 1

Pie series options question.

Posted: Thu Oct 07, 2010 2:12 pm
by 9530487
Hello again,

On a pie series, if you edit the series and click Format->Marks, there are options for "Vertical centre callout" and "callout leg size".

How do I get at these values in code? I just cannot seem to find them.

Tony.

Re: Pie series options question.

Posted: Fri Oct 08, 2010 8:50 am
by 10050769
Hello Tony,

If you want modify values of "Vertical centre callout" and "callout leg size" in runtime as do next lines of code:

Code: Select all

TChart1.Series(0).asPie.PieMarks.LegSize = 25
TChart1.Series(0).asPie.PieMarks.VertCenter = True
I hope will helps.

Thanks,

Re: Pie series options question.

Posted: Fri Oct 08, 2010 10:34 am
by 9530487
Thanks. I just couldn't find them anywhere in the code.

Tony.