public function PHPExcel_Chart::getChartAxisY in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart.php \PHPExcel_Chart::getChartAxisY()
Get yAxis
Return value
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Chart.php, line 366
Class
- PHPExcel_Chart
- PHPExcel_Chart
Code
public function getChartAxisY() {
if ($this->_yAxis !== NULL) {
return $this->_yAxis;
}
return new PHPExcel_Chart_Axis();
}