Lines Matching defs:Y

90     protected $DateFormat = "d/m/Y";
423 /* Write the Y Axis caption if set */
543 * Calculate the number of divisions that the Y axis will be
544 * divided into. This is a function of the range of Y values the
643 * Compute and draw the scale for X/Y charts
666 /* Process Y scale */
842 /* Write the Y Axis caption if set */
1203 $Y = $this->GArea_Y2 - ($Value - $this->VMin) * $this->DivisionRatio;
1205 if($Y <= $this->GArea_Y1 || $Y >= $this->GArea_Y2)
1210 new Point($this->GArea_X1, $Y),
1211 new Point($this->GArea_X2, $Y),
1219 new Point($this->GArea_X1, $Y),
1220 new Point($this->GArea_X2, $Y),
1236 $Y + ($this->FontSize / 2));
1239 $Y - ($this->FontSize / 2));
1478 * @brief This function draw a plot graph in an X/Y space
1489 $Y = $Values[$YSerieName];
1491 $Y = $this->GArea_Y2 - (($Y - $this->VMin) * $this->DivisionRatio);
1511 new Point($X + 2, $Y + 2),
1519 new Point($X + 2, $Y + 2),
1528 new Point($X + 1, $Y + 1),
1536 new Point($X + 1, $Y + 1),
1545 new Point($X + 1, $Y + 1),
1646 * @brief Draws a line graph where the data gives Y values for a
1703 * X position and another the Y position
1714 $Y = $Values[$YSerieName];
1716 $Y = $this->GArea_Y2 - (($Y - $this->VMin) * $this->DivisionRatio);
1719 $currentPoint = new Point($X, $Y);
1883 /* This Y value will nearly always be negative, thanks to
2535 $Y = sin($Angle * M_PI / 180) * $TRadius + $YCenter;
2540 new Point($X, $Y),
2546 $LastY = $Y;
2554 $Y = sin($Angle * M_PI / 180) * $Radius + $YCenter;
2558 new Point($X, $Y),
2589 new Point($X + $XOffset, $Y + $YOffset),
2613 $Y = $YPos + $this->FontSize;
2617 $Y + $Positions [7] - 1),
2619 $Y + $Positions [3] + 1),
2629 $Y + $Positions [7] - 1),
2631 $Y + $Positions [3] + 1),
2641 new Point($X, $Y),
2899 function drawFromPNG($FileName, $X, $Y, $Alpha = 100) {
2900 $this->drawFromPicture(1, $FileName, $X, $Y, $Alpha);
2906 function drawFromGIF($FileName, $X, $Y, $Alpha = 100) {
2907 $this->drawFromPicture(2, $FileName, $X, $Y, $Alpha);
2913 function drawFromJPG($FileName, $X, $Y, $Alpha = 100) {
2914 $this->drawFromPicture(3, $FileName, $X, $Y, $Alpha);
2920 function drawFromPicture($PicType, $FileName, $X, $Y, $Alpha = 100) {
2935 imagecopymerge($this->canvas->getPicture(), $Raster, $X, $Y, 0, 0, $Width, $Height, $Alpha);
3006 $this->Errors [] = "[Warning] ".$FunctionName." - Y Labels are not set.";
3349 return date('Y-m-d', $value); //todo: might be wrong, needs to go into converseion helper and needs a test