public function PHPExcel_Chart::getTopLeftOffset in Loft Data Grids 7.2
Same name and namespace in other branches
- 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart.php \PHPExcel_Chart::getTopLeftOffset()
* Get the offset position within the Top Left cell for the chart * *
Return value
integer[]
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Chart.php, line 486
Class
- PHPExcel_Chart
- PHPExcel_Chart
Code
public function getTopLeftOffset() {
return array(
'X' => $this->_topLeftXOffset,
'Y' => $this->_topLeftYOffset,
);
}