You are here

private function PHPExcel_Chart_Axis::_setShadowAngle 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::_setShadowAngle()

Set Shadow Angle

Parameters

int $angle:

Return value

PHPExcel_Chart_Axis

File

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

Class

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

Code

private function _setShadowAngle($angle) {
  if ($angle !== NULL) {
    $this->_shadow_properties['direction'] = (string) $this
      ->getExcelPointsAngle($angle);
  }
  return $this;
}