Lines Matching refs:XPos

51     public function drawPieLegend($XPos, $YPos, $Data, $DataDescription, Color $color, ShadowProperties $shadowProperties = null) {
81 new Point($XPos + 1, $YPos + 1),
82 new Point($XPos + $MaxWidth + 1,
92 new Point($XPos, $YPos),
93 new Point($XPos + $MaxWidth,
108 new Point($XPos + 10,
110 new Point($XPos + 14,
119 new Point($XPos + 22,
145 public function drawBasicPieGraph($Data, $DataDescription, $XPos, $YPos, $Radius = 100, $DrawLabels = PIE_NOLABEL, Color $color = null, $Decimals = 0, ShadowProperties $shadowProperties = null) {
188 $TopPlots [$Key] [] = $XPos;
192 $this->processLabelsPositionAndSize($DrawLabels, $Angle, $Value, $SpliceRatio, $SplicePercent, 0, $Decimals, $Radius, $XPos, $YPos, $shadowProperties);
196 $TopX = cos($iAngle * M_PI / 180) * $Radius + $XPos;
203 $TopPlots [$Key] [] = $XPos;
228 new Point($XPos - .5, $YPos - .5),
234 new Point($XPos - .5, $YPos - .5),
261 private function processLabelsPositionAndSize($DrawLabels, $Angle, $Value, $SpliceRatio, $SplicePercent, $SpliceDistance, $Decimals, $Radius, $XPos, $YPos, ShadowProperties $shadowProperties) {
278 $TX = cos(($TAngle) * M_PI / 180) * ($Radius + 10 + $SpliceDistance) + $XPos;
314 public function drawFlatPieGraphWithShadow($Data, $DataDescription, $XPos, $YPos, $Radius = 100, $DrawLabels = PIE_NOLABEL, $SpliceDistance = 0, $Decimals = 0, ShadowProperties $shadowProperties = NULL) {
331 $XPos + $shadowProperties->xDistance,
339 $Data, $DataDescription, $XPos, $YPos, $Radius, $DrawLabels, $SpliceDistance, $Decimals, FALSE,
359 public function drawFlatPieGraph($Data, $DataDescription, $XPos, $YPos, $Radius = 100, $DrawLabels = PIE_NOLABEL, $SpliceDistance = 0, $Decimals = 0, $AllBlack = FALSE, ShadowProperties $shadowProperties = null) {
400 $TopPlots [$Key] [] = round($XPos + $XOffset);
410 $this->processLabelsPositionAndSize($DrawLabels, $Angle, $Value, $SpliceRatio, $SplicePercent, $SpliceDistance, $Decimals, $Radius, $XPos, $YPos, $shadowProperties);
413 $this->processPieSlices($Angle, $SpliceRatio, $Value, $Radius, $XPos, $YPos, $XOffset, $YOffset, $color, $TopPlots[$Key], $shadowProperties);
415 $TopPlots [$Key] [] = round($XPos + $XOffset);
451 public function drawPieGraph(pData $data, $XPos, $YPos,
511 $XCenterPos = cos(($Angle - $CDev + ($Value * $SpliceRatio + $SpliceDistanceRatio) / 2) * M_PI / 180) * $SpliceDistance + $XPos;
513 $XCenterPos2 = cos(($Angle + $CDev + ($Value * $SpliceRatio + $SpliceDistanceRatio) / 2) * M_PI / 180) * $SpliceDistance + $XPos;
540 $TX = cos(($TAngle) * M_PI / 180) * ($Radius + 10) + $XPos;
563 $TopX = cos($iAngle * M_PI / 180) * $Radius + $XPos;
610 private function processPieSlices(& $Angle, $SpliceRatio, $Value, $Radius, $XPos, $YPos, $XOffset, $YOffset, Color $color, array & $plotArray, ShadowProperties $shadowProperties) {
614 $PosX = cos($iAngle * M_PI / 180) * $Radius + $XPos + $XOffset;
624 new Point($XPos + $XOffset, $YPos + $YOffset),