Lines Matching defs:MaxValue
2451 function drawRadarAxis($Data, $DataDescription, $Mosaic = TRUE, $BorderOffset = 10, Color $colorA = null, Color $colorS = null, $MaxValue = -1) {
2471 if($MaxValue == -1) {
2475 if($Data [$Key] [$ColName] > $MaxValue) {
2476 $MaxValue = $Data [$Key] [$ColName];
2488 $RadiusScale = $Radius / $MaxValue;
2489 for($t = 1; $t <= $MaxValue - 1; $t++) {
2528 for($t = 1; $t <= $MaxValue; $t++) {
2529 $TRadius = ($Radius / $MaxValue) * $t;
2599 for($t = 1; $t <= $MaxValue; $t++) {
2600 $TRadius = ($Radius / $MaxValue) * $t;
2651 $MaxValue = -1;
2655 if($Data [$Key] [$ColName] > $MaxValue && is_numeric($Data[$Key][$ColName])) {
2656 $MaxValue = $Data [$Key] [$ColName];
2660 return $MaxValue;
2666 function drawRadar($Data, $DataDescription, $BorderOffset = 10, $MaxValue = -1) {
2677 if($MaxValue == -1) {
2678 $MaxValue = $this->calculateMaxValue($Data, $DataDescription);
2691 $Strength = ($Radius / $MaxValue) * $Value;
2735 function drawFilledRadar($Data, $DataDescription, $Alpha = 50, $BorderOffset = 10, $MaxValue = -1) {
2746 if($MaxValue == -1) {
2747 $MaxValue = $this->calculateMaxValue($Data, $DataDescription);
2763 $Strength = ($Radius / $MaxValue) * $Value;