public function PHPExcel_Chart_GridLines::setGlowProperties in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/GridLines.php \PHPExcel_Chart_GridLines::setGlowProperties()
Set Glow Properties
Parameters
float $size:
string $color_value:
int $color_alpha:
string $color_type:
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Chart/ GridLines.php, line 198
Class
- PHPExcel_Chart_GridLines
- Created by PhpStorm. User: Wiktor Trzonkowski Date: 7/2/14 Time: 2:36 PM
Code
public function setGlowProperties($size, $color_value = NULL, $color_alpha = NULL, $color_type = NULL) {
$this
->_activateObject()
->_setGlowSize($size)
->_setGlowColor($color_value, $color_alpha, $color_type);
}