Pie series options question.

TeeChart for ActiveX, COM and ASP
Post Reply
TonyVSUK
Advanced
Posts: 163
Joined: Wed Mar 01, 2006 12:00 am

Pie series options question.

Post by TonyVSUK » Thu Oct 07, 2010 2:12 pm

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.

Sandra
Site Admin
Site Admin
Posts: 3132
Joined: Fri Nov 07, 2008 12:00 am

Re: Pie series options question.

Post by Sandra » Fri Oct 08, 2010 8:50 am

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,
Best Regards,
Sandra Pazos / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

TonyVSUK
Advanced
Posts: 163
Joined: Wed Mar 01, 2006 12:00 am

Re: Pie series options question.

Post by TonyVSUK » Fri Oct 08, 2010 10:34 am

Thanks. I just couldn't find them anywhere in the code.

Tony.

Post Reply