Page 1 of 1

Problems w/2014 Pro and RAD XE2

Posted: Thu Jun 05, 2014 4:47 am
by 16469439
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

Re: Problems w/2014 Pro and RAD XE2

Posted: Thu Jun 05, 2014 9:40 am
by yeray
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.

Re: Problems w/2014 Pro and RAD XE2

Posted: Thu Jun 12, 2014 8:17 am
by 16469439
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

Re: Problems w/2014 Pro and RAD XE2

Posted: Thu Jun 12, 2014 8:21 am
by 16469439
Image

Re: Problems w/2014 Pro and RAD XE2

Posted: Thu Jun 12, 2014 9:08 am
by yeray
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);

Re: Problems w/2014 Pro and RAD XE2

Posted: Sat Jun 14, 2014 11:16 pm
by 16469439
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.

Re: Problems w/2014 Pro and RAD XE2

Posted: Sat Jun 14, 2014 11:25 pm
by 16469439
Image

Re: Problems w/2014 Pro and RAD XE2

Posted: Sun Jun 15, 2014 3:11 am
by 16469439
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.

Re: Problems w/2014 Pro and RAD XE2

Posted: Mon Jun 16, 2014 10:34 am
by yeray
Hello,

Please, try to arrange a simple example project we can run as-is to reproduce the problem here.
Thanks in advance.