You are here

public function PHPExcel_Chart_Axis::setGlowProperties in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Axis.php \PHPExcel_Chart_Axis::setGlowProperties()

Set Glow Properties

Parameters

float $size:

string $color_value:

int $color_alpha:

string $color_type:

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Axis.php, line 510

Class

PHPExcel_Chart_Axis
Created by PhpStorm. User: Wiktor Trzonkowski Date: 6/17/14 Time: 12:11 PM

Code

public function setGlowProperties($size, $color_value = NULL, $color_alpha = NULL, $color_type = NULL) {
  $this
    ->_setGlowSize($size)
    ->_setGlowColor(is_null($color_value) ? $this->_glow_properties['color']['value'] : $color_value, is_null($color_alpha) ? (int) $this->_glow_properties['color']['alpha'] : $color_alpha, is_null($color_type) ? $this->_glow_properties['color']['type'] : $color_type);
}