I´m using TeeChart Pro V2011.04.41118 for Delphi XE (update 1)
See picture:
Sometimes the pie chart is not drawn correctly.
Sometimes the pie chart is not drawn correctly.
Last edited by NatSam on Sat Feb 18, 2012 1:52 pm, edited 1 time in total.
-
- 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.
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.
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 |
Instructions - How to post in this forum |