Page 1 of 1

Does the TPieChart.Pen.... work

Posted: Wed Feb 06, 2008 1:25 am
by 10546565
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

Posted: Wed Feb 06, 2008 10:39 am
by narcis
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;

Posted: Wed Feb 06, 2008 3:44 pm
by 10546565
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.