private function PHPExcel_Chart_Axis::_setGlowSize in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Axis.php \PHPExcel_Chart_Axis::_setGlowSize()
Set Glow Color
Parameters
float $size:
Return value
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Chart/ Axis.php, line 539
Class
- PHPExcel_Chart_Axis
- Created by PhpStorm. User: Wiktor Trzonkowski Date: 6/17/14 Time: 12:11 PM
Code
private function _setGlowSize($size) {
if (!is_null($size)) {
$this->_glow_properties['size'] = $this
->getExcelPointsWidth($size);
}
return $this;
}