Page 1 of 1

Sometimes the pie chart is not drawn correctly.

Posted: Sat Feb 18, 2012 1:48 pm
by 10547371
I´m using TeeChart Pro V2011.04.41118 for Delphi XE (update 1)

See picture:
Pizza.png
Pizza.png (22.75 KiB) Viewed 3309 times

Re: Sometimes the pie chart is not drawn correctly.

Posted: Mon Feb 20, 2012 10:52 am
by narcis
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;