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