You are here

public function PHPExcel_Chart::getBottomRightOffset in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart.php \PHPExcel_Chart::getBottomRightOffset()

* Get the offset position within the Bottom Right cell for the chart * *

Return value

integer[]

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart.php, line 578

Class

PHPExcel_Chart
PHPExcel_Chart

Code

public function getBottomRightOffset() {
  return array(
    'X' => $this->_bottomRightXOffset,
    'Y' => $this->_bottomRightYOffset,
  );
}