Page 1 of 1

Graphic Rendering Bug with the new teechart library

Posted: Tue Mar 04, 2014 2:51 pm
by 16466850
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

Re: Graphic Rendering Bug with the new teechart library

Posted: Wed Mar 05, 2014 11:45 am
by yeray
Hello,

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;
2014-03-05_1243.png
2014-03-05_1243.png (47.79 KiB) Viewed 2913 times
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