Lines Matching refs:Value

411                $Value = $Data[$Key][$ColName];
413 if ( is_numeric($Value) )
415 if ( $this->VMax < $Value) { $this->VMax = $Value; }
416 if ( $this->VMin > $Value) { $this->VMin = $Value; }
433 $Value = $Data[$Key][$ColName];
434 if ( is_numeric($Value) )
435 $Sum += $Value;
543 $Value = $this->VMin + ($i-1) * (( $this->VMax - $this->VMin ) / $Divisions);
544 $Value = round($Value * pow(10,$Decimals)) / pow(10,$Decimals);
546 $Value = $Value.$DataDescription["Unit"]["Y"];
548 $Value = $this->ToTime($Value);
550 $Value = $this->ToDate($Value);
552 $Value = $this->ToMetric($Value);
554 $Value = $this->ToCurrency($Value);
556 $Position = imageftbbox($this->FontSize,0,$this->FontName,$Value);
561 …this->FontSize,0,$this->GArea_X2+10,$YPos+($this->FontSize/2),$C_TextColor,$this->FontName,$Value);
566 …ize,0,$this->GArea_X1-10-$TextWidth,$YPos+($this->FontSize/2),$C_TextColor,$this->FontName,$Value);
594 $Value = $Data[$Key][$DataDescription["Position"]];
596 $Value = $Value.$DataDescription["Unit"]["X"];
598 $Value = $this->ToTime($Value);
600 $Value = $this->ToDate($Value);
602 $Value = $this->ToMetric($Value);
604 $Value = $this->ToCurrency($Value);
606 $Position = imageftbbox($this->FontSize,$Angle,$this->FontName,$Value);
613 …$this->FontSize,$Angle,floor($XPos)-floor($TextWidth/2),$YPos,$C_TextColor,$this->FontName,$Value);
619 …icture,$this->FontSize,$Angle,floor($XPos)-$TextWidth+5,$YPos,$C_TextColor,$this->FontName,$Value);
621 …icture,$this->FontSize,$Angle,floor($XPos)+$TextWidth+5,$YPos,$C_TextColor,$this->FontName,$Value);
661 $Value = $Data[$Key][$YSerieName] + 0;
662 if ( $this->VMax < $Value) { $this->VMax = $Value; }
663 if ( $this->VMin > $Value) { $this->VMin = $Value; }
736 $Value = $this->VMin + ($i-1) * (( $this->VMax - $this->VMin ) / $Divisions);
737 $Value = round($Value * pow(10,$Decimals)) / pow(10,$Decimals);
739 $Value = $Value.$DataDescription["Unit"]["Y"];
741 $Value = $this->ToTime($Value);
743 $Value = $this->ToDate($Value);
745 $Value = $this->ToMetric($Value);
747 $Value = $this->ToCurrency($Value);
749 $Position = imageftbbox($this->FontSize,0,$this->FontName,$Value);
751 …ize,0,$this->GArea_X1-10-$TextWidth,$YPos+($this->FontSize/2),$C_TextColor,$this->FontName,$Value);
768 $Value = $Data[$Key][$XSerieName] + 0;
769 if ( $this->VXMax < $Value) { $this->VXMax = $Value; }
770 if ( $this->VXMin > $Value) { $this->VXMin = $Value; }
845 $Value = $this->VXMin + ($i-1) * (( $this->VXMax - $this->VXMin ) / $XDivisions);
846 $Value = round($Value * pow(10,$Decimals)) / pow(10,$Decimals);
848 $Value = $Value.$DataDescription["Unit"]["Y"];
850 $Value = $this->ToTime($Value);
852 $Value = $this->ToDate($Value);
854 $Value = $this->ToMetric($Value);
856 $Value = $this->ToCurrency($Value);
858 $Position = imageftbbox($this->FontSize,$Angle,$this->FontName,$Value);
865 …$this->FontSize,$Angle,floor($XPos)-floor($TextWidth/2),$YPos,$C_TextColor,$this->FontName,$Value);
871 …icture,$this->FontSize,$Angle,floor($XPos)-$TextWidth+5,$YPos,$C_TextColor,$this->FontName,$Value);
873 …icture,$this->FontSize,$Angle,floor($XPos)+$TextWidth+5,$YPos,$C_TextColor,$this->FontName,$Value);
966 foreach($DataDescription["Description"] as $Key => $Value)
968 $Position = imageftbbox($this->FontSize,0,$this->FontName,$Value);
993 foreach($DataDescription["Description"] as $Key => $Value)
995 $Position = imageftbbox($this->FontSize,0,$this->FontName,$Value);
1014 foreach($DataDescription["Description"] as $Key => $Value)
1017 …text($this->Picture,$this->FontSize,0,$XPos+22,$YPos+$YOffset,$C_TextColor,$this->FontName,$Value);
1019 $Position = imageftbbox($this->FontSize,0,$this->FontName,$Value);
1041 foreach($Data as $Key => $Value)
1043 $Value2 = $Value[$DataDescription["Position"]];
1058 foreach($Data as $Key => $Value)
1060 $Value2 = $Value[$DataDescription["Position"]];
1072 function drawTitle($XPos,$YPos,$Value,$R,$G,$B,$XPos2=-1,$YPos2=-1,$Shadow=FALSE) argument
1078 $Position = imageftbbox($this->FontSize,0,$this->FontName,$Value);
1085 $Position = imageftbbox($this->FontSize,0,$this->FontName,$Value);
1093 …os+$this->ShadowXDistance,$YPos+$this->ShadowYDistance,$C_ShadowColor,$this->FontName,$Value);
1096 …imagettftext($this->Picture,$this->FontSize,0,$XPos,$YPos,$C_TextColor,$this->FontName,$Value); …
1130 …function drawTreshold($Value,$R,$G,$B,$ShowLabel=FALSE,$ShowOnRight=FALSE,$TickWidth=4,$FreeText=N… argument
1137 $Y = $this->GArea_Y2 - ($Value - $this->VMin) * $this->DivisionRatio;
1150 { $Label = $Value; } else { $Label = $FreeText; }
1171 foreach ( $Data as $Key => $Value )
1240 $Value = $Data[$Key][$ColName];
1241 $YPos = $this->GArea_Y2 - (($Value-$this->VMin) * $this->DivisionRatio);
1247 if ( is_numeric($Value) )
1411 $Value = $Data[$Key][$Serie];
1412 $YPos = $this->GArea_Y2 - (($Value-$this->VMin) * $this->DivisionRatio);
1414 $Positions = imagettfbbox($this->FontSize,0,$this->FontName,$Value);
1419 …agettftext($this->Picture,$this->FontSize,0,$XOffset,$YOffset,$C_TextColor,$this->FontName,$Value);
1449 $Value = $Data[$Key][$ColName];
1450 $YPos = $this->GArea_Y2 - (($Value-$this->VMin) * $this->DivisionRatio);
1456 if (!is_numeric($Value)) { $XLast = -1; }
1462 if (!is_numeric($Value)) { $XLast = -1; }
1520 $Value = $Data[$Key][$ColName];
1522 $YIn[$Index] = $Value;
1523 if ( !is_numeric($Value) ) { $Missing[$Index] = TRUE; }
1567 …$Value = $a * $YIn[$klo] + $b * $YIn[$khi] + (($a*$a*$a - $a) * $Yt[$klo] + ($b*$b*$b - $b) * $Yt[…
1569 $YPos = $this->GArea_Y2 - (($Value-$this->VMin) * $this->DivisionRatio);
1618 $Value = $Data[$Key][$ColName];
1620 $YIn[$Index] = $Value;
1621 if ( !is_numeric($Value) ) { $Missing[$Index] = TRUE; }
1674 …$Value = $a * $YIn[$klo] + $b * $YIn[$khi] + (($a*$a*$a - $a) * $Yt[$klo] + ($b*$b*$b - $b) * $Yt[…
1676 $YPos = $LayerHeight - (($Value-$this->VMin) * $this->DivisionRatio);
1793 $Value = $Data[$Key][$ColName];
1794 $YPos = $LayerHeight - (($Value-$this->VMin) * $this->DivisionRatio);
1800 if ( !is_numeric($Value) )
1883 $Value = $Data[$Key][$ColName];
1884 if ( is_numeric($Value) )
1886 $YPos = $LayerHeight - (($Value-$this->VMin) * $this->DivisionRatio);
1945 $Value = $Data[$Key][$ColName];
1946 $YPos = $this->GArea_Y2 - (($Value-$this->VMin) * $this->DivisionRatio);
1998 $Value = $Data[$Key][$ColName];
2002 … $YPos = $this->GArea_Y2 - ((($Value+$LastValue[$Key])-$this->VMin) * $this->DivisionRatio);
2004 $LastValue[$Key] += $Value;
2008 $YPos = $this->GArea_Y2 - (($Value-$this->VMin) * $this->DivisionRatio);
2010 $LastValue[$Key] = $Value;
2250 $Value = $Data[$Key][$ColName];
2251 $Strength = ( $Radius / $MaxValue ) * $Value;
2313 $Value = $Data[$Key][$ColName];
2314 if ( !is_numeric($Value) ) { $Value = 0; }
2315 $Strength = ( $Radius / $MaxValue ) * $Value;
2384 foreach($iValues as $Key => $Value)
2393 $TAngle = $Angle+($Value*$SpliceRatio/2);
2395 $Caption = (round($Value * pow(10,$Decimals) * $SplicePercent)/pow(10,$Decimals))."%";
2399 …$Caption = $iLabels[$Key]."\r\n".(round($Value * pow(10,$Decimals) * $SplicePercent)/pow(10,$Deci…
2401 …$Caption = $iLabels[$Key]."\r\n".(round($Value * pow(10,$Decimals) * $SplicePercent)/pow(10,$Deci…
2422 for($iAngle=$Angle;$iAngle<=$Angle+$Value*$SpliceRatio;$iAngle=$iAngle+.5)
2439 foreach ($TopPlots as $Key => $Value)
2443 foreach ($PolyPlots as $Key => $Value)
2453 foreach ($TopPlots as $Key => $Value)
2502 foreach($iValues as $Key => $Value)
2504 $XOffset = cos(($Angle+($Value/2*$SpliceRatio)) * 3.1418 / 180 ) * $SpliceDistance;
2505 $YOffset = sin(($Angle+($Value/2*$SpliceRatio)) * 3.1418 / 180 ) * $SpliceDistance;
2521 $TAngle = $Angle+($Value*$SpliceRatio/2);
2523 $Caption = (round($Value * pow(10,$Decimals) * $SplicePercent)/pow(10,$Decimals))."%";
2527 …$Caption = $iLabels[$Key]."\r\n".(round($Value * pow(10,$Decimals) * $SplicePercent)/pow(10,$Deci…
2529 …$Caption = $iLabels[$Key]."\r\n".(round($Value * pow(10,$Decimals) * $SplicePercent)/pow(10,$Deci…
2556 for($iAngle=$Angle;$iAngle<=$Angle+$Value*$SpliceRatio;$iAngle=$iAngle+.5)
2563 …if ( $iAngle == $Angle || $iAngle == $Angle+$Value*$SpliceRatio || $iAngle +.5 > $Angle+$Value*$Sp…
2579 foreach ($PolyPlots as $Key => $Value)
2631 foreach($iValues as $Key => $Value)
2633 …$XCenterPos = cos(($Angle-$CDev+($Value*$SpliceRatio+$SpliceDistanceRatio)/2) * 3.1418 / 180 ) * $…
2634 …$YCenterPos = sin(($Angle-$CDev+($Value*$SpliceRatio+$SpliceDistanceRatio)/2) * 3.1418 / 180 ) * $…
2635 …$XCenterPos2 = cos(($Angle+$CDev+($Value*$SpliceRatio+$SpliceDistanceRatio)/2) * 3.1418 / 180 ) * …
2636 …$YCenterPos2 = sin(($Angle+$CDev+($Value*$SpliceRatio+$SpliceDistanceRatio)/2) * 3.1418 / 180 ) * …
2647 $TAngle = $Angle+($Value*$SpliceRatio/2);
2653 …$Caption = $iLabels[$Key]."\r\n".(round($Value * pow(10,$Decimals) * $SplicePercent)/pow(10,$Deci…
2674 for($iAngle=$Angle;$iAngle<=$Angle+$Value*$SpliceRatio;$iAngle=$iAngle+.5)
2694 foreach($iValues as $Key => $Value)
2709 foreach($iValues as $Key => $Value)
3265 foreach($DataDescription["Values"] as $key => $Value)
3267 $DataDescription["Description"][$Value] = $Value;
3274 foreach($DataDescription["Values"] as $key => $Value)
3276 if ( !isset($DataDescription["Description"][$Value]))
3277 $DataDescription["Description"][$Value] = $Value;
3290 foreach($Values as $key2 => $Value)
3302 foreach($DataSummary as $key => $Value)
3304 if ($Value < max($DataSummary))
3319 foreach($this->Errors as $key => $Value)
3320 echo $Value."\r\n";
3326 foreach($this->Errors as $key => $Value)
3328 $Position = imageftbbox($this->ErrorFontSize,0,$this->ErrorFontName,$Value);
3337 foreach($this->Errors as $key => $Value)
3339 …$this->ErrorFontSize,0,$this->XSize-($MaxWidth+15),$YPos,$C_TextColor,$this->ErrorFontName,$Value);
3353 function addToImageMap($X1,$Y1,$X2,$Y2,$SerieName,$Value,$CallerFunction) argument
3357 …s->ImageMap[] = round($X1).",".round($Y1).",".round($X2).",".round($Y2).",".$SerieName.",".$Value;
3367 $Value = split("\?",$Values);
3368 $FileName = $Value[0];
3408 foreach($this->ImageMap as $Key => $Value)
3409 fwrite($Handle, htmlentities($Value)."\r");
3415 function ToTime($Value) argument
3417 $Hour = floor($Value/3600);
3418 $Minute = floor(($Value - $Hour*3600)/60);
3419 $Second = floor($Value - $Hour*3600 - $Minute*60);
3429 function ToMetric($Value) argument
3431 $Go = floor($Value/1000000000);
3432 $Mo = floor(($Value - $Go*1000000000)/1000000);
3433 $Ko = floor(($Value - $Go*1000000000 - $Mo*1000000)/1000);
3434 $o = floor($Value - $Go*1000000000 - $Mo*1000000 - $Ko*1000);
3443 function ToCurrency($Value) argument
3445 $Go = floor($Value/1000000000);
3446 $Mo = floor(($Value - $Go*1000000000)/1000000);
3447 $Ko = floor(($Value - $Go*1000000000 - $Mo*1000000)/1000);
3448 $o = floor($Value - $Go*1000000000 - $Mo*1000000 - $Ko*1000);
3469 function ToDate($Value) argument
3471 return(date($this->DateFormat,$Value));
3475 function isRealInt($Value) argument
3477 if ($Value == floor($Value))