Page 1 of 1

Error finding TChartSeries::AddArray(TArrayGrid)

Posted: Wed Jun 06, 2012 8:41 pm
by 16460011
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

Re: Error finding TChartSeries::AddArray(TArrayGrid)

Posted: Thu Jun 07, 2012 10:33 am
by yeray
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.