Sometimes the pie chart is not drawn correctly.

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
NatSam
Newbie
Newbie
Posts: 17
Joined: Wed Nov 14, 2007 12:00 am

Sometimes the pie chart is not drawn correctly.

Post by NatSam » Sat Feb 18, 2012 1:48 pm

I´m using TeeChart Pro V2011.04.41118 for Delphi XE (update 1)

See picture:
Pizza.png
Pizza.png (22.75 KiB) Viewed 3308 times
Last edited by NatSam on Sat Feb 18, 2012 1:52 pm, edited 1 time in total.

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

Re: Sometimes the pie chart is not drawn correctly.

Post by Narcís » Mon Feb 20, 2012 10:52 am

Hi NatSam,

Thanks for reporting. I could reproduce the problem here dropping a chart into a form and using the code snippet below so I added it (TV52016045) to the defect list to be fixed.

Code: Select all

uses Series;

procedure TForm1.FormCreate(Sender: TObject);
begin
  Chart1.AddSeries(TPieSeries.Create(Self));
  Chart1[0].Add(10);
  Chart1[0].Add(10);
  Chart1[0].Add(80);
end;
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

Post Reply