I need to draw a very simple pie chart with
- different color fills,
- separated by lines in one color different to that of the pie pieces,
- no shadow,
- with no line around the pie.
I used
Series.ColorEachPoint:=true;
Series.Pen.Visible:=false;
Series.Shadow.Visible:=false;
Series.Dark3D:=false;
Series.PiePen.Visible:=false;
Series.Color:=Color;
The resulting pie shows still a line around that seems to be a "trace" of a shadow.
What can I do?
Thanks for all help!
Matthias
Simple Pie
Hi Matthias,
I cannot see any shadow line using applying your code to a new pie series.
However, you could try without 3d view or setting the pie circled. Maybe it looks better for you.
Also note that the separation line you mention is the same as the border. So, if you want a separation line in one color, it will be the same in the border.
And could you please tell us what TeeChart version are you using?
Thank you in advance.
I cannot see any shadow line using applying your code to a new pie series.
However, you could try without 3d view or setting the pie circled. Maybe it looks better for you.
Code: Select all
Chart1.View3D := false;
Series.Circled := true;
Code: Select all
Series.PiePen.Visible:=true;
Series.PiePen.Color := clBtnShadow;
Series.PiePen.Width := 2;
Thank you in advance.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi matthias,
Yes, I see the problem now. It only happens with AntiAlias tool. This seems a bug to me and I've added it (TV52012605) to our defect list to be fixed for future releases.
Yes, I see the problem now. It only happens with AntiAlias tool. This seems a bug to me and I've added it (TV52012605) to our defect list to be fixed for future releases.
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |