You are here

public function PHPExcel_Chart_Layout::setShowLegendKey in Loft Data Grids 7.2

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

* Set show legend key * Specifies that legend keys should be shown in data labels. * *

Parameters

boolean $value Show legend key:

Return value

PHPExcel_Chart_Layout

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Layout.php, line 314

Class

PHPExcel_Chart_Layout
PHPExcel_Chart_Layout

Code

public function setShowLegendKey($value) {
  $this->_showLegendKey = $value;
  return $this;
}