Page 1 of 1

PIE Chart 3d bug - depending on rotation and values

Posted: Wed May 07, 2014 8:59 am
by 16568743
We are using TeeChart Pro v2013/14.

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

Best regards,

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

Posted: Wed May 07, 2014 10:37 am
by yeray
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 4663 times

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

Posted: Wed May 07, 2014 10:44 am
by 16568743
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

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

Posted: Wed May 07, 2014 10:47 am
by yeray
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.

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

Posted: Thu May 08, 2014 2:04 pm
by 16568743
I can confirm both issues are solved in the beta.

Best regards,