private function PHPExcel_Chart_GridLines::_setShadowDistance 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::_setShadowDistance()
Set Shadow Distance
Parameters
float $distance:
Return value
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Chart/ GridLines.php, line 415
Class
- PHPExcel_Chart_GridLines
- Created by PhpStorm. User: Wiktor Trzonkowski Date: 7/2/14 Time: 2:36 PM
Code
private function _setShadowDistance($distance) {
if ($distance !== NULL) {
$this->_shadow_properties['distance'] = (string) $this
->getExcelPointsWidth($distance);
}
return $this;
}