TWorldSeries not available anymore

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
richo25
Newbie
Newbie
Posts: 2
Joined: Wed May 14, 2014 12:00 am

TWorldSeries not available anymore

Post by richo25 » Wed Jan 21, 2015 9:16 am

Seems that TWorldSeries is not available in the BPL's component library anymore?
We've just updated to C++ Builder XE7 with the 2014.12.140923 32bit vcl and a form that utilises a TWorldSeries will not load.
Seems that the code for TWorldChart and libs are present, just can't use it in the Gui.
Seem to be able to build it aslong as we don't open that form for editing. hence we can't change anything in the code easily without reverting the dfm file everytime..

Also tried dynamically creating it and attaching it into the chart and it barfs with a TypeCast error somewhere down in the redraw in a GetSeries call..

Any thoughts..

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Re: TWorldSeries not available anymore

Post by Narcís » Wed Jan 21, 2015 10:12 am

Hello richo25,

I'm just testing the XE7 installer for the new maintenance release, due out very soon, and I could create a chart with a TWorldSeries with the environment you mention. Does the old project give any error message? If you attach an example project I can test it here.

Thanks in advance.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

jens.mertelmeyer
Newbie
Newbie
Posts: 31
Joined: Fri Nov 21, 2014 12:00 am

Re: TWorldSeries not available anymore

Post by jens.mertelmeyer » Mon Jul 13, 2015 8:00 am

I might be a bit late to the party, but I have the exact same problem: I'm on XE7 and 2014.12 Pro and there is absolutely no trace of any kind of world map series. I faintly remember seeing them in previous versions.

TeeChart Pro v2014.12.140923 32Bit VCL
RAD Studio XE7 Enterprise Update 1 (21.0.17707.5020)

Where would I find a TWorldSeries? What should my "Add series" dialog look like?
Attachments
TeeChart_Gallery_2015-07-13_09-59-13.png
TeeChart_Gallery_2015-07-13_09-59-13.png (38.59 KiB) Viewed 11838 times

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

Re: TWorldSeries not available anymore

Post by Yeray » Mon Jul 13, 2015 11:00 am

Hello,

Using the alternate gallery in TeeChart v2015.15 for XE7 I find the World series under the "Maps" section:
alternate_maps.png
alternate_maps.png (55.4 KiB) Viewed 11858 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

jens.mertelmeyer
Newbie
Newbie
Posts: 31
Joined: Fri Nov 21, 2014 12:00 am

Re: TWorldSeries not available anymore

Post by jens.mertelmeyer » Tue Jul 14, 2015 7:29 am

I fear we have no plans of updating all our projects to a newer TeeChart version and will stick with 2014.12 for now. Do you have a machine running with 2014.12? I'd at least like to have this confirmed. I didn't find anything in the changelogs or the bugtracker

Best regards.

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

Re: TWorldSeries not available anymore

Post by Yeray » Tue Jul 14, 2015 9:19 am

Hello Jens,

I'm afraid the "Maps" section can be accessed in the gallery from v2015.14.
However, you can still add the TWorldSeries at runtime in v2014.12:

Code: Select all

uses TeeWorldSeries;

var Series1: TWorldSeries;

procedure TForm1.FormCreate(Sender: TObject);
begin
  Series1:=Chart1.AddSeries(TWorldSeries) as TWorldSeries;
  Series1.FillSampleValues();
end;
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

jens.mertelmeyer
Newbie
Newbie
Posts: 31
Joined: Fri Nov 21, 2014 12:00 am

Re: TWorldSeries not available anymore

Post by jens.mertelmeyer » Tue Jul 14, 2015 9:42 am

Excellent, thank you.

Post Reply