Page 1 of 1

Which components are provided with TeeChart VCL Standard?

Posted: Tue Jun 03, 2014 4:04 pm
by 17569317
Hi,

I am very new to using TeeChart but am finding it really useful.

I want to be able to access and modify chart data values and although I can do this through the editor I have realised that there is a ChartGrid component that allows direct access.
Looking at the Feature matrix on the Steema website for the TeeChart VCL / FMX products, it appears that 'ChartGrid for data editing' should be available for both the versions supplied with RAD Studio and TeeChart Standard
Commercial v2014. However, I didn't have the ChartGrid component with RAD Studio and it doesn't appear to be have been supplied with the Commercial version either.

Am I missing something here? Is this component only available with the Pro version? If so, how do I access the ChartGrid facility with the Standard version as suggested by the Feature matrix?

Thanks and apologies if this is blindingly obvious.

Re: Which components are provided with TeeChart VCL Standard?

Posted: Thu Jun 05, 2014 8:48 am
by yeray
Hello,

We're investigating where the problem resides.
Thanks for reporting it.

Re: Which components are provided with TeeChart VCL Standard?

Posted: Fri Jun 06, 2014 3:03 pm
by yeray
Hello,

We've revised and corrected the feature matrix.

Re: Which components are provided with TeeChart VCL Standard?

Posted: Fri Jun 06, 2014 3:36 pm
by 17569317
Hi Yeray

Thanks for clarifying the situation.

Was hoping that the ChartGrid component could be accessed using the TeeChart Standard Commercial version. I guess that means that there is no way to access and modify chart data values other than through the editor when using this version, is that correct, or is there some alternative?

Thanks.

Re: Which components are provided with TeeChart VCL Standard?

Posted: Fri Jun 06, 2014 8:02 pm
by narcis
Hi Rich,

Yes, that's true at design-time. However, you can do it at run-time:

Code: Select all

  Series1.YValue[10]:=100;
Or try to bind a standard Delphi TDBGrid to a TeeChart series. You'll probably need an intermediate dataset.