You are here

public function PHPExcel_Chart::getBottomRightPosition in Loft Data Grids 6.2

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

* Get the bottom right position of the chart * *

Return value

array an associative array containing the cell address, X-Offset and Y-Offset from the top left of that cell

File

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

Class

PHPExcel_Chart
PHPExcel_Chart

Code

public function getBottomRightPosition() {
  return array(
    'cell' => $this->_bottomRightCellRef,
    'xOffset' => $this->_bottomRightXOffset,
    'yOffset' => $this->_bottomRightYOffset,
  );
}