Animations with label and percent error

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
jars
Newbie
Newbie
Posts: 4
Joined: Wed May 11, 2016 12:00 am

Animations with label and percent error

Post by jars » Thu Jun 02, 2016 2:27 pm

Hi,
I bought the TeeChart pro version for delphi 7. When I want to animate a pie chart with label and percent values showing each portion are erroneous. The same applies to bar series, however if the sample values show well. See the attachment!
I would also like to know the version I sign says "TRIAL" if I have com meadow (TeeChart Pro v2015.14.150120 trial)?
And every time when modify a chart show error message "property detail not found"
Thanks in advance.
Attachments
Sin título.png
Sin título.png (22.06 KiB) Viewed 7270 times

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

Re: Animations with label and percent error

Post by Yeray » Thu Jun 02, 2016 2:52 pm

Hello,

I've tried to reproduce the problem with this code but it seems to give me a correct percentage in the legend:

Code: Select all

uses Series, TeeDonut;

procedure TForm1.FormCreate(Sender: TObject);
begin
  with Chart1.AddSeries(TDonutSeries) as TDonutSeries do
  begin
    AddPie(2185.85, 'Promotores');
    AddPie(1236.47, 'Pasivos');
    AddPie(662.83, 'Detractores');
  end;

  Chart1.Legend.TextStyle:=ltsRightPercent;
end;
donut.png
donut.png (23.71 KiB) Viewed 7255 times
jars wrote:I would also like to know the version I sign says "TRIAL" if I have com meadow (TeeChart Pro v2015.14.150120 trial)?
If you mean in the aboutbox, this is a known issue we corrected in further releases.
jars wrote:And every time when modify a chart show error message "property detail not found"
Could you please arrange a simple example project we can run as-is to reproduce the problem here?

Thanks in advance.
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

jars
Newbie
Newbie
Posts: 4
Joined: Wed May 11, 2016 12:00 am

Re: Animations with label and percent error

Post by jars » Fri Jun 03, 2016 4:06 pm

Hi Yeray.
In the ErrorExample.zip attachment is the example that show after play animate button, labels percent always show 100%
In the ErrorImages.zip attachment are printscreens with the errors that was commented.
Thanks in advance.
Jorge
Attachments
ErrorImages.zip
Images that show errors
(158.38 KiB) Downloaded 467 times
ErrorExamplet.zip
Sample project
(505.16 KiB) Downloaded 488 times

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

Re: Animations with label and percent error

Post by Yeray » Mon Jun 06, 2016 8:42 am

Hello,

Thanks to your test application I could reproduce the problem with TeeChart v2015.14. I could also reproduce the problem with v2015.15.
However, it seems to work fine from 2015.16 and up. So I'd suggest you to update to the latest version available, v2016.18.
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

jars
Newbie
Newbie
Posts: 4
Joined: Wed May 11, 2016 12:00 am

Re: Animations with label and percent error

Post by jars » Mon Jun 06, 2016 6:48 pm

Hi Yeray,
This version 2016.18 is valid for Delphi 7? It not appears as option?

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

Re: Animations with label and percent error

Post by Yeray » Tue Jun 07, 2016 7:10 am

Hello,

From the v2016.18 TeeChart supports Delphi 7 only in the source code version. You'll find it in the "legacy" group.
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