You are here

public function PHPExcel_Chart::setBottomRightOffset 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::setBottomRightOffset()

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

Parameters

integer $xOffset: * @param integer $yOffset * @return PHPExcel_Chart

File

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

Class

PHPExcel_Chart
PHPExcel_Chart

Code

public function setBottomRightOffset($xOffset = null, $yOffset = null) {
  if (!is_null($xOffset)) {
    $this
      ->setBottomRightXOffset($xOffset);
  }
  if (!is_null($yOffset)) {
    $this
      ->setBottomRightYOffset($yOffset);
  }
  return $this;
}