Graphic Rendering Bug with the new teechart library

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
asg
Newbie
Newbie
Posts: 4
Joined: Tue Aug 20, 2013 12:00 am

Graphic Rendering Bug with the new teechart library

Post by asg » Tue Mar 04, 2014 2:51 pm

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
Attachments
pie_chart_pb.png
As you can see the 3d effect is not ok
pie_chart_pb.png (58.09 KiB) Viewed 2954 times

Yeray
Site Admin
Site Admin
Posts: 9602
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Graphic Rendering Bug with the new teechart library

Post by Yeray » Wed Mar 05, 2014 11:45 am

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 2916 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
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Post Reply