Lines Matching refs:style

221 	private function drawGraphArea(BackgroundStyle $style) {  argument
224 $style->getBackgroundColor(),
228 $style->getBackgroundColor()->addRGBIncrement(-40),
229 $style->getBorderWidth(),
230 $style->getBorderDotSize(),
233 if ($style->useStripe()) {
234 $color2 = $style->getBackgroundColor()->addRGBIncrement(-15);
264 public function drawGraphBackground(BackgroundStyle $style) { argument
265 $this->drawGraphArea($style);
266 $this->drawGraphAreaGradient($style);
300 …function drawRightScale(pData $data, ScaleStyle $style, $Angle = 0, $Decimals = 1, $WithMargin = F… argument
301 $this->drawScale($data, $style, $Angle, $Decimals, $WithMargin, $SkipLabels, TRUE );
307 …function drawScale(pData $Data, ScaleStyle $style, $Angle = 0, $Decimals = 1, $WithMargin = FALSE,… argument
313 $style->getColor(),
314 $style->getLineWidth(),
315 $style->getLineDotSize(),
319 $style->getColor(),
320 $style->getLineWidth(),
321 $style->getLineDotSize(),
325 $Divisions = $this->calculateDivisions($Data, $style);
354 if ($style->getDrawTicks() == FALSE)
363 $style->getColor(),
364 $style->getLineWidth(),
365 $style->getLineDotSize(),
370 $style->getColor(),
371 $style->getLineWidth(),
372 $style->getLineDotSize(),
388 $style->getColor(),
400 $style->getColor(),
422 $style->getColor(), $this->FontName,
430 $style->getColor(), $this->FontName,
444 $style->getColor(),
445 $style->getLineWidth(),
446 $style->getLineDotSize(),
463 $style->getColor(),
474 $style->getColor(),
484 $style->getColor(),
509 $style->getColor(), $this->FontName,
527 private function calculateDivisions(pData $Data, ScaleStyle $style) { argument
541 if ($style->getScaleMode() == SCALE_NORMAL
542 || $style->getScaleMode() == SCALE_START0) {
543 if ($style->getScaleMode() == SCALE_START0) {
563 …} elseif ($style->getScaleMode() == SCALE_ADDALL || $style->getScaleMode() == SCALE_ADDALLSTART0 )…
564 if ($style->getScaleMode() == SCALE_ADDALLSTART0) {
617 …function drawXYScale(pData $Data, ScaleStyle $style, $YSerieName, $XSerieName, $Angle = 0, $Decima… argument
623 $style->getColor(),
624 $style->getLineWidth(),
625 $style->getLineDotSize(),
629 $style->getColor(),
630 $style->getLineWidth(),
631 $style->getLineDotSize(),
671 $style->getColor(),
672 $style->getLineWidth(),
673 $style->getLineDotSize(),
687 $style->getColor(),
734 $style->getColor(),
735 $style->getLineWidth(),
736 $style->getLineDotSize(),
756 $style->getColor(),
767 $style->getColor(),
777 $style->getColor(),
801 $style->getColor(),
808 $this->writeScaleXAxisCaption($Data, $style, $YMax);
811 private function drawGridMosaic(GridStyle $style, $divisionCount, $divisionHeight) { argument
833 $style->getAlpha());
841 private function writeScaleXAxisCaption(pData $data, ScaleStyle $style, $YMax) { argument
850 $style->getColor(),
861 function drawGrid(GridStyle $style) { argument
863 if ($style->getMosaic()) {
864 $this->drawGridMosaic($style, $this->DivisionCount, $this->DivisionHeight);
873 $style->getLineWidth(),
875 $style->getColor(),
899 $style->getLineWidth(),
901 $style->getcolor(),
2658 private function drawGraphAreaGradient(BackgroundStyle $style) { argument
2659 if (!$style->useGradient()) {
2665 $style->getGradientStartColor(),
2666 $style->getGradientDecay());