Hi,
In our application we display some 3d pie chart. With the new version, it seems there is a rendering problem (the 'slice' of the pie chart is visible both above and below).
I will attach a screen capture to illustrate this.
Is it a known problem? Is there a solution to this ? Do you plan to fix it soon ?
Regards
Graphic Rendering Bug with the new teechart library
Graphic Rendering Bug with the new teechart library
- Attachments
-
- As you can see the 3d effect is not ok
- pie_chart_pb.png (58.09 KiB) Viewed 2959 times
Re: Graphic Rendering Bug with the new teechart library
Hello,
I'm trying to reproduce the problem with the following simple example but the pie I get looks correct:
Could you please modify the code above (or arrange a new simple project) so we can reproduce the problem here?
Here using TeeChart Pro v2014.10
I'm trying to reproduce the problem with the following simple example but the pie I get looks correct:
Code: Select all
uses Series;
procedure TForm1.FormCreate(Sender: TObject);
begin
with Chart1.AddSeries(TPieSeries) do
begin
Add(0.56, '*PHYSCL*');
Add(6.63, 'EDUC');
Add(0.27, 'ENTACT');
Add(0.81, 'LANDMARK');
Add(0.52, 'PLTVM');
Add(1.2, 'PROD');
Add(2.6, 'SYSA');
Add(3.53, 'SYSB');
Add(3.36, 'SYSC');
Add(1.06, 'SYSD');
Add(4.22, 'SYSQ');
Add(0, 'SYSS');
Add(4.6, 'SYST');
Add(0.01, 'VMTEST');
Add(0.21, 'VSEA');
Add(0, 'VSEB');
Add(0.26, 'XSHIP');
Add(0.26, 'Z86VM');
end;
end;
Here using TeeChart Pro v2014.10
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |