Hello.
Am running 2013 Pro VCL. (delphi xe5)
Can replicate this by simply dropping a TDBChart component on the form, and use the Chart Editor.
Select 'Data', and then change some of the values to zero - you will see the pie (3D) display is corrupt (edges).
If I could just add a legend for the zero value without drawing the empty slice that would be fine.
This behavior only happends on 2013 - delphi xe5 teechart standard is fine.
Pie Chart containing zero value slices corrupts the display
Pie Chart containing zero value slices corrupts the display
- Attachments
-
- teecharterror.png (35.98 KiB) Viewed 3221 times
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Pie Chart containing zero value slices corrupts the display
Hi arabica,
I'm not able to reproduce the issue here either at design-time or run-time using this code:
If the code snippet above reproduces the problem at your end then you can expect this being fixed in the next maintenance release which will be probably published next week.
I'm not able to reproduce the issue here either at design-time or run-time using this code:
Code: Select all
uses VCLTee.Series;
procedure TForm1.FormCreate(Sender: TObject);
begin
Chart1.AddSeries(TPieSeries.Create(Self)).FillSampleValues;
Chart1[0].YValues[4]:=0;
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 |