You are here

public function PHPExcel_Chart_Title::setCaption in Loft Data Grids 7.2

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

* Set caption * *

Parameters

string $caption:

Return value

PHPExcel_Chart_Title

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Title.php, line 77

Class

PHPExcel_Chart_Title
PHPExcel_Chart_Title

Code

public function setCaption($caption = null) {
  $this->_caption = $caption;
  return $this;
}