PIE Chart 3d bug - depending on rotation and values

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
PatrikS
Newbie
Newbie
Posts: 3
Joined: Tue Mar 11, 2014 12:00 am

PIE Chart 3d bug - depending on rotation and values

Post by PatrikS » Wed May 07, 2014 8:59 am

We are using TeeChart Pro v2013/14.

Everything is ok:
Pie ok.jpg
All is fine...
Pie ok.jpg (53.78 KiB) Viewed 4706 times
Changing the last slice value:
Pie not ok.jpg
3d "effect is gone"
Pie not ok.jpg (48.14 KiB) Viewed 4716 times
Changing rotation fixes 3d effect:
Pie ok again.jpg
Changing rotation fixes it
Pie ok again.jpg (55.36 KiB) Viewed 4704 times
Changing the first pie value to 0 will also remove the 3d effect.

Best regards,

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

Re: PIE Chart 3d bug - depending on rotation and values

Post by Yeray » Wed May 07, 2014 10:37 am

Hello Patrik,

I've reproduced this problem with the following code and TeeChart v2014.10.

Code: Select all

uses Series;

procedure TForm1.FormCreate(Sender: TObject);
begin
  with Chart1.AddSeries(TPieSeries) do
  begin
    Add(174000, 'Svenska Aktier');
    Add(1409238, 'Default');
    Add(1600000, 'Kassa');

    Marks.Visible:=false;
  end;
end;
However, the same code above seems to work fine for me here with the actual sources and also with v2014.11 SourceCode Beta, so I'd expect this to be fixed with the next maintenance release. This is what I get with them:
2014-05-07_1225.png
2014-05-07_1225.png (22.99 KiB) Viewed 4666 times
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

PatrikS
Newbie
Newbie
Posts: 3
Joined: Tue Mar 11, 2014 12:00 am

Re: PIE Chart 3d bug - depending on rotation and values

Post by PatrikS » Wed May 07, 2014 10:44 am

Excellent,

Do you have a fix I could access to now and change in our source code? This issue is stopping our ability to release with the latest TeeChart.

Best regards

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

Re: PIE Chart 3d bug - depending on rotation and values

Post by Yeray » Wed May 07, 2014 10:47 am

Hi Patrik,

Being a SourceCode customer gives you access to the SourceCode v2014.11 Beta installer from the client access page. However, I'm afraid this Beta hasn't been tested for all the IDEs.
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

PatrikS
Newbie
Newbie
Posts: 3
Joined: Tue Mar 11, 2014 12:00 am

Re: PIE Chart 3d bug - depending on rotation and values

Post by PatrikS » Thu May 08, 2014 2:04 pm

I can confirm both issues are solved in the beta.

Best regards,

Post Reply