Error finding TChartSeries::AddArray(TArrayGrid)

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
KenW
Newbie
Newbie
Posts: 6
Joined: Thu Aug 18, 2011 12:00 am

Error finding TChartSeries::AddArray(TArrayGrid)

Post by KenW » Wed Jun 06, 2012 8:41 pm

I'm not sure about this error.
[BCC32 Error] GenericPlot.cpp(179): E2285 Could not find a match for 'TChartSeries::AddArray(TArrayGrid)'
I would like a hint or two in resolving this error.
In the header, I use #include <VCLTee.TeeSurfa.hpp>
Thanks.
Ken

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

Re: Error finding TChartSeries::AddArray(TArrayGrid)

Post by Yeray » Thu Jun 07, 2012 10:33 am

Hi Ken,

The AddArray function that accepts a TArrayGrid is a TCustom3DSeries function:

Code: Select all

Procedure TCustom3DSeries.AddArray(Const Values:TArrayGrid);
So it should work with any series inheriting from TCustom3DSeries: TPoint3DSeries, TErrorPoint3DSeries, TBubble3DSeries, TSurfaceSeries, TWaterFallSeries, TIsoSurfaceSeries, TContourSeries, TColorGridSeries, TTowerSeries and TVector3DSeries.
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