Sometimes the pie chart is not drawn correctly.
Posted: Sat Feb 18, 2012 1:48 pm
I´m using TeeChart Pro V2011.04.41118 for Delphi XE (update 1)
See picture:
See picture:
Steema Software - Customer Support Forums
http://216.92.101.67/support/
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;