Pie chart slices to do not update (D2007, TC v7.11 Pro)
Pie chart slices to do not update (D2007, TC v7.11 Pro)
The slices of the pie chart do not update in D2007 TC7.11 PRO. The AddPie function works to initially add slices to the chart, but then updates to the values are not reflected except by the chart labels and legend.
This occurs in code and through the chart editor in both run and design times, and on several computers.
Plugging in a bar chart into the same form/code (changing the addpie call to addbar) works fine.
The code was recently migrated from Delphi 7 (TC 7.04 PRO) where it was working and stable for a number of years.
Delphi version - 11.0.2709.7128
Platform - XP SP2
I've tried quite a few tacts to try and work this one out so any help/advice would be greatly appreciated.
Regards,
Daniel
This occurs in code and through the chart editor in both run and design times, and on several computers.
Plugging in a bar chart into the same form/code (changing the addpie call to addbar) works fine.
The code was recently migrated from Delphi 7 (TC 7.04 PRO) where it was working and stable for a number of years.
Delphi version - 11.0.2709.7128
Platform - XP SP2
I've tried quite a few tacts to try and work this one out so any help/advice would be greatly appreciated.
Regards,
Daniel
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Daniel,
I could reproduce the issue here using v7.12 and this code:
I've also checked that this code works fine with TeeChart Pro v8 VCL.
I could reproduce the issue here using v7.12 and this code:
Code: Select all
procedure TForm1.FormCreate(Sender: TObject);
var i: Integer;
begin
for i:=1 to 5 do
Series1.AddPie(i);
end;
procedure TForm1.Button1Click(Sender: TObject);
begin
Series1.AddPie(random*10);
end;
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Dan,
I think it's most unlikely that a new TeeChart v7 release will be published.
I think it's most unlikely that a new TeeChart v7 release will be published.
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
-
- Newbie
- Posts: 21
- Joined: Mon Jan 23, 2006 12:00 am
The code works in Delphi 2006, but this did not work:narcis wrote:Hi Daniel,
I could reproduce the issue here using v7.12 and this code:
I've also checked that this code works fine with TeeChart Pro v8 VCL.Code: Select all
procedure TForm1.FormCreate(Sender: TObject); var i: Integer; begin for i:=1 to 5 do Series1.AddPie(i); end; procedure TForm1.Button1Click(Sender: TObject); begin Series1.AddPie(random*10); end;
procedure TForm1.FormCreate(Sender: TObject);
var i: Integer;
begin
for i:=1 to 5 do
begin
Series1.AddPie(i);
update;
end;
end;
procedure TForm1.Button1Click(Sender: TObject);
begin
Series1.AddPie(random*10);
end;
Could it be verified that this code works in v. 8?
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi achristouio,
Yes, I've checked that this works fine using v8.
Yes, I've checked that this works fine using v8.
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
I would expect that an update or patch is released. Steema has released an update that has stopped the pie chart from working entirely. I'm not seeking new functionality (which might warrant an upgrade to the next major release). I'm just expecting that previously working v7 functionality be fixed so that it is working again.
Regards,
Daniel
Regards,
Daniel
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hello Daniel,
We have just posted an update build for Delphi 2007 fixing this issue at the client area.
We have just posted an update build for Delphi 2007 fixing this issue at the client area.
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Daniel,
You're welcome. I'm glad to hear that.
You're welcome. I'm glad to hear that.
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |