Source for file ManySeries.php
Documentation is available at ManySeries.php
* <p>Title: ManySeries class</p>
* <p>Description: Internal use. Base class for multiple Series function
* <p>Copyright (c) 2005-2008 by Steema Software SL. All Rights
* <p>Company: Steema Software SL</p>
* Performs function operation on list of series (SourceSeriesList).<br>
* The ValueIndex parameter defines ValueIndex of point in each Series
* You can override CalculateMany function to perform customized
* calculation on list of SourceSeries. <br>
* @param sourceSeries ArrayList
for($t = 0; $t < sizeof($sourceSeries); $t++ ) {
if($v->count > $valueIndex){
$result = $v->value[$valueIndex];
|