Page 1 of 1

ISeriesAddArray clears series in V8

Posted: Sun Nov 01, 2009 10:00 am
by 15053905
Hi,
Does abybody know whether ISeries.AddArray() still clears the series data points?
Is there a way around it without using AddXY?
Thanks,
yvb

Re: ISeriesAddArray clears series in V8

Posted: Mon Nov 02, 2009 10:38 am
by yeray
Hi yvb,

AddArray method simply assigns the given array to the ValueList of the series and that's what makes this method faster than AddXY but overwrites the present data.
What you can do is to create your own array than contains the data in the series and append to it the array to be appended and then you'll be able to use AddArray.