Lines Matching defs:color

152      * Changes the color Palette
163 function setShadowProperties($XDistance = 1, $YDistance = 1, Color $color = null, $Alpha = 50, $Blur = 0) {
164 if($color == null) {
165 $color = new Color(60, 60, 60);
171 $color,
998 public function drawLegend($XPos, $YPos, $DataDescription, Color $color, Color $color2 = null, Color $color3 = null, $Border = TRUE) {
1000 $color2 = $color->addRGBIncrement(-30);
1043 5, $color,
1089 public function drawTitle($XPos, $YPos, $Value, Color $color, $XPos2 = -1, $YPos2 = -1, ShadowProperties $shadowProperties = null) {
1110 $color,
1127 public function drawTextBox(Point $point1, Point $point2, $Text, $Angle = 0, Color $color = null, $Align = ALIGN_LEFT, ShadowProperties $shadowProperties = null, Color $backgroundColor = null, $Alpha = 100) {
1128 if($color == null) {
1129 $color = new Color(255, 255, 255);
1194 $this->canvas->drawText($this->FontSize, $Angle, $newPosition, $color, $this->FontName, $Text, $shadowProperties);
1202 function drawTreshold($Value, Color $color, $ShowLabel = FALSE, $ShowOnRight = FALSE, $TickWidth = 4, $FreeText = NULL) {
1212 $color,
1223 $color,
1245 $color,
1256 function setLabel($Data, $DataDescription, $SerieName, $ValueName, $Caption, Color $color = null) {
1257 if($color == null) {
1258 $color = new Color(210, 210, 210);
1291 $color->addRGBIncrement(-$ShadowFactor)
1297 $color->addRGBIncrement(-$ShadowFactor),
1306 $color->addRGBIncrement(-$ShadowFactor),
1317 $color->addRGBIncrement(-$ShadowFactor),
1324 $this->canvas->drawFilledPolygon($Poly, 3, $color);
1331 $color,
1340 $color,
1350 $color,
1390 $color = $this->palette->getColor($ColorID);
1441 $color,
1481 $color = $this->palette->getColor($PaletteID);
1530 $color,
1559 function drawArea($Data, $Serie1, $Serie2, Color $color, $Alpha = 50) {
1589 $color,
2352 function drawLimitsGraph($Data, $DataDescription, Color $color = null) {
2353 if($color == null) {
2354 $color = new Color(0, 0, 0);
2406 $color,
2416 $color,
2805 * This function can be used to set the background color
2807 function drawBackground(Color $color) {
2808 $C_Background = $this->canvas->allocateColor($color);
2812 private function drawGradient(Point $point1, Point $point2, Color $color, $decay) {
2817 $color = $color->addRGBIncrement(-1);
2827 $color,
2839 $color = $color->addRGBIncrement(1);
2844 $color,
2858 * This function can be used to set the background color
2873 public function drawBackgroundGradient(Color $color, $decay) {
2877 $color,
2885 function drawEllipse($Xc, $Yc, $Height, $Width, Color $color) {
2886 $this->canvas->drawCircle(new Point($Xc, $Yc), $Height, $color, $this->shadowProperties, $Width);
2892 function drawFilledEllipse($Xc, $Yc, $Height, $Width, Color $color) {
2893 $this->canvas->drawFilledCircle(new Point($Xc, $Yc), $Height, $color, $this->shadowProperties, $Width);