Problems w/2014 Pro and RAD XE2

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
9secz
Newbie
Newbie
Posts: 6
Joined: Wed Jun 04, 2014 12:00 am

Problems w/2014 Pro and RAD XE2

Post by 9secz » Thu Jun 05, 2014 4:47 am

I have RAD XE2, Update 4. I just ordered and attempted to install 2014 TeeChart Pro. Prior to this, I had the sampler charts that were included w/XE2 and they worked fine.
I also download Standard and it installed. Wondering why the install package list says Firemonkey. Is that the say lib as regular builder?

After downloading 2014 Pro and attempting to install, the installer states the library was installed. Done it several times.
However, I get no options for TeeChart in the XE2 Tool Palette. Also, when I try to install the packages directly, I get the following error.
Can someone point me in a direction to get this up and running?

Thank you,


Image

Image

Image

Image

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

Re: Problems w/2014 Pro and RAD XE2

Post by Yeray » Thu Jun 05, 2014 9:40 am

Hello,

These "entry point" exceptions are usually fixed reinstalling the product.
If this doesn't work, try repairing the IDE and reinstalling the component after it.
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

9secz
Newbie
Newbie
Posts: 6
Joined: Wed Jun 04, 2014 12:00 am

Re: Problems w/2014 Pro and RAD XE2

Post by 9secz » Thu Jun 12, 2014 8:17 am

Got it installed. Now it the tool palette indicates I have TeeChart STD. I look to add a surface chart and it allows me. Then, when I look for the
XYZ add function no where to be found. Numerous out of memory errors and all kind of problems.

Right now, I'll just hope its stable enough to work. What happened to AddXYZ data? I used this some years back and it was there.

Am I really using Tee Chat Pro?? I download TeeChartPro2014.

Image

SERIES 2 is a SURFACE Chart.
Image

9secz
Newbie
Newbie
Posts: 6
Joined: Wed Jun 04, 2014 12:00 am

Re: Problems w/2014 Pro and RAD XE2

Post by 9secz » Thu Jun 12, 2014 8:21 am

Image

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

Re: Problems w/2014 Pro and RAD XE2

Post by Yeray » Thu Jun 12, 2014 9:08 am

Hello,
9secz wrote:Image
The image above indicates you are indeed using TeeChart Pro.
However, in the image below I see you are accessing the series through Chart1->Series[1]
9secz wrote:Image
This makes you get a TChartSeries and access to the properties and methods of this class. However, note AddXYZ method is declared at TCustom3DSeries (that inherits from TChartSeries).
If you want to get access to a property/method particular of a series type, you need to access to its class through a dynamic cast, or through a variable when you create the series:

Code: Select all

  TSurfaceSeries *surface1 = new TSurfaceSeries(this);
  Chart1->AddSeries(surface1);
  surface1->AddXYZ(x, y, z);
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

9secz
Newbie
Newbie
Posts: 6
Joined: Wed Jun 04, 2014 12:00 am

Re: Problems w/2014 Pro and RAD XE2

Post by 9secz » Sat Jun 14, 2014 11:16 pm

Getting no Z data on graph. have x and y and a 3d shape, with nothing for data. how do I fix this?
debugging Zvalues indicates data is in the Z axis.

9secz
Newbie
Newbie
Posts: 6
Joined: Wed Jun 04, 2014 12:00 am

Re: Problems w/2014 Pro and RAD XE2

Post by 9secz » Sat Jun 14, 2014 11:25 pm

Image

9secz
Newbie
Newbie
Posts: 6
Joined: Wed Jun 04, 2014 12:00 am

Re: Problems w/2014 Pro and RAD XE2

Post by 9secz » Sun Jun 15, 2014 3:11 am

I had none of these probs w/ver7. Has anyone actually created a surface series and it worked? Is so, please post a few code snippets. I'm not sure I'm missing.

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

Re: Problems w/2014 Pro and RAD XE2

Post by Yeray » Mon Jun 16, 2014 10:34 am

Hello,

Please, try to 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

Post Reply