Does the TPieChart.Pen.... work

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
TestAlways
Advanced
Posts: 228
Joined: Tue Aug 28, 2007 12:00 am
Location: Oregon, USA

Does the TPieChart.Pen.... work

Post by TestAlways » Wed Feb 06, 2008 1:25 am

8.02

I am changing the values to the TPieSeries.Pen.Color to clWhite and the Width to '5' and the pen color is black. If I then set Pen.Visible to false, it doesn't change anything.

Is this a bug?

Thanks

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Wed Feb 06, 2008 10:39 am

Hi TestAlways,

Are you using PiePen instead of Pen as shown below? PiePen works fine for me here.

Code: Select all

  Series1.PiePen.Color:=clWhite;
  Series1.PiePen.Width:=5;
Best Regards,
Narcís Calvet / 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

TestAlways
Advanced
Posts: 228
Joined: Tue Aug 28, 2007 12:00 am
Location: Oregon, USA

Post by TestAlways » Wed Feb 06, 2008 3:44 pm

I know I was working with PiePen because I was using a run time RTTI inspector (and the PiePen is the only one publishd) and seeing some change (only when the width was 1 could the color be changed).

Re=ran the same thing today and it works fine. Sorry, don't know what was happening.

Post Reply