ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
PHPExcel_Chart Class Reference
+ Collaboration diagram for PHPExcel_Chart:

Public Member Functions

 __construct ($name, PHPExcel_Chart_Title $title=null, PHPExcel_Chart_Legend $legend=null, PHPExcel_Chart_PlotArea $plotArea=null, $plotVisibleOnly=true, $displayBlanksAs='0', PHPExcel_Chart_Title $xAxisLabel=null, PHPExcel_Chart_Title $yAxisLabel=null, PHPExcel_Chart_Axis $xAxis=null, PHPExcel_Chart_Axis $yAxis=null, PHPExcel_Chart_GridLines $majorGridlines=null, PHPExcel_Chart_GridLines $minorGridlines=null)
 Create a new PHPExcel_Chart. More...
 
 getName ()
 Get Name. More...
 
 getWorksheet ()
 Get Worksheet. More...
 
 setWorksheet (PHPExcel_Worksheet $pValue=null)
 Set Worksheet. More...
 
 getTitle ()
 Get Title. More...
 
 setTitle (PHPExcel_Chart_Title $title)
 Set Title. More...
 
 getLegend ()
 Get Legend. More...
 
 setLegend (PHPExcel_Chart_Legend $legend)
 Set Legend. More...
 
 getXAxisLabel ()
 Get X-Axis Label. More...
 
 setXAxisLabel (PHPExcel_Chart_Title $label)
 Set X-Axis Label. More...
 
 getYAxisLabel ()
 Get Y-Axis Label. More...
 
 setYAxisLabel (PHPExcel_Chart_Title $label)
 Set Y-Axis Label. More...
 
 getPlotArea ()
 Get Plot Area. More...
 
 getPlotVisibleOnly ()
 Get Plot Visible Only. More...
 
 setPlotVisibleOnly ($plotVisibleOnly=true)
 Set Plot Visible Only. More...
 
 getDisplayBlanksAs ()
 Get Display Blanks as. More...
 
 setDisplayBlanksAs ($displayBlanksAs='0')
 Set Display Blanks as. More...
 
 getChartAxisY ()
 Get yAxis. More...
 
 getChartAxisX ()
 Get xAxis. More...
 
 getMajorGridlines ()
 Get Major Gridlines. More...
 
 getMinorGridlines ()
 Get Minor Gridlines. More...
 
 setTopLeftPosition ($cell, $xOffset=null, $yOffset=null)
 Set the Top Left position for the chart. More...
 
 getTopLeftPosition ()
 Get the top left position of the chart. More...
 
 getTopLeftCell ()
 Get the cell address where the top left of the chart is fixed. More...
 
 setTopLeftCell ($cell)
 Set the Top Left cell position for the chart. More...
 
 setTopLeftOffset ($xOffset=null, $yOffset=null)
 Set the offset position within the Top Left cell for the chart. More...
 
 getTopLeftOffset ()
 Get the offset position within the Top Left cell for the chart. More...
 
 setTopLeftXOffset ($xOffset)
 
 getTopLeftXOffset ()
 
 setTopLeftYOffset ($yOffset)
 
 getTopLeftYOffset ()
 
 setBottomRightPosition ($cell, $xOffset=null, $yOffset=null)
 Set the Bottom Right position of the chart. More...
 
 getBottomRightPosition ()
 Get the bottom right position of the chart. More...
 
 setBottomRightCell ($cell)
 
 getBottomRightCell ()
 Get the cell address where the bottom right of the chart is fixed. More...
 
 setBottomRightOffset ($xOffset=null, $yOffset=null)
 Set the offset position within the Bottom Right cell for the chart. More...
 
 getBottomRightOffset ()
 Get the offset position within the Bottom Right cell for the chart. More...
 
 setBottomRightXOffset ($xOffset)
 
 getBottomRightXOffset ()
 
 setBottomRightYOffset ($yOffset)
 
 getBottomRightYOffset ()
 
 refresh ()
 
 render ($outputDestination=null)
 

Private Attributes

 $_name = ''
 
 $_worksheet = null
 
 $_title = null
 
 $_legend = null
 
 $_xAxisLabel = null
 
 $_yAxisLabel = null
 
 $_plotArea = null
 
 $_plotVisibleOnly = true
 
 $_displayBlanksAs = '0'
 
 $_yAxis = null
 
 $_xAxis = null
 
 $_majorGridlines = null
 
 $_minorGridlines = null
 
 $_topLeftCellRef = 'A1'
 
 $_topLeftXOffset = 0
 
 $_topLeftYOffset = 0
 
 $_bottomRightCellRef = 'A1'
 
 $_bottomRightXOffset = 10
 
 $_bottomRightYOffset = 10
 

Detailed Description

Definition at line 36 of file Chart.php.

Constructor & Destructor Documentation

◆ __construct()

PHPExcel_Chart::__construct (   $name,
PHPExcel_Chart_Title  $title = null,
PHPExcel_Chart_Legend  $legend = null,
PHPExcel_Chart_PlotArea  $plotArea = null,
  $plotVisibleOnly = true,
  $displayBlanksAs = '0',
PHPExcel_Chart_Title  $xAxisLabel = null,
PHPExcel_Chart_Title  $yAxisLabel = null,
PHPExcel_Chart_Axis  $xAxis = null,
PHPExcel_Chart_Axis  $yAxis = null,
PHPExcel_Chart_GridLines  $majorGridlines = null,
PHPExcel_Chart_GridLines  $minorGridlines = null 
)

Create a new PHPExcel_Chart.

Definition at line 180 of file Chart.php.

References $legend, $name, $plotArea, $title, $xAxisLabel, and $yAxisLabel.

181  {
182  $this->_name = $name;
183  $this->_title = $title;
184  $this->_legend = $legend;
185  $this->_xAxisLabel = $xAxisLabel;
186  $this->_yAxisLabel = $yAxisLabel;
187  $this->_plotArea = $plotArea;
188  $this->_plotVisibleOnly = $plotVisibleOnly;
189  $this->_displayBlanksAs = $displayBlanksAs;
190  $this->_xAxis = $xAxis;
191  $this->_yAxis = $yAxis;
192  $this->_majorGridlines = $majorGridlines;
193  $this->_minorGridlines = $minorGridlines;
194  }
if($format !==null) $name
Definition: metadata.php:146

Member Function Documentation

◆ getBottomRightCell()

PHPExcel_Chart::getBottomRightCell ( )

Get the cell address where the bottom right of the chart is fixed.

Returns
string

Definition at line 553 of file Chart.php.

References $_bottomRightCellRef.

553  {
555  }
$_bottomRightCellRef
Definition: Chart.php:158

◆ getBottomRightOffset()

PHPExcel_Chart::getBottomRightOffset ( )

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

Returns
integer[]

Definition at line 578 of file Chart.php.

References array.

578  {
579  return array( 'X' => $this->_bottomRightXOffset,
580  'Y' => $this->_bottomRightYOffset
581  );
582  }
Create styles array
The data for the language used.

◆ getBottomRightPosition()

PHPExcel_Chart::getBottomRightPosition ( )

Get the bottom right position of the chart.

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

Definition at line 535 of file Chart.php.

References array.

535  {
536  return array( 'cell' => $this->_bottomRightCellRef,
537  'xOffset' => $this->_bottomRightXOffset,
538  'yOffset' => $this->_bottomRightYOffset
539  );
540  }
Create styles array
The data for the language used.

◆ getBottomRightXOffset()

PHPExcel_Chart::getBottomRightXOffset ( )

Definition at line 590 of file Chart.php.

References $_bottomRightXOffset.

590  {
592  }
$_bottomRightXOffset
Definition: Chart.php:166

◆ getBottomRightYOffset()

PHPExcel_Chart::getBottomRightYOffset ( )

Definition at line 600 of file Chart.php.

References $_bottomRightYOffset.

600  {
602  }
$_bottomRightYOffset
Definition: Chart.php:174

◆ getChartAxisX()

PHPExcel_Chart::getChartAxisX ( )

Get xAxis.

Returns
PHPExcel_Chart_Axis

Definition at line 379 of file Chart.php.

References $_xAxis.

379  {
380  if($this->_xAxis !== NULL){
381  return $this->_xAxis;
382  }
383 
384  return new PHPExcel_Chart_Axis();
385  }
Created by PhpStorm.
Definition: Axis.php:11

◆ getChartAxisY()

PHPExcel_Chart::getChartAxisY ( )

Get yAxis.

Returns
PHPExcel_Chart_Axis

Definition at line 366 of file Chart.php.

References $_yAxis.

366  {
367  if($this->_yAxis !== NULL){
368  return $this->_yAxis;
369  }
370 
371  return new PHPExcel_Chart_Axis();
372  }
Created by PhpStorm.
Definition: Axis.php:11

◆ getDisplayBlanksAs()

PHPExcel_Chart::getDisplayBlanksAs ( )

Get Display Blanks as.

Returns
string

Definition at line 346 of file Chart.php.

References $_displayBlanksAs.

346  {
348  }

◆ getLegend()

PHPExcel_Chart::getLegend ( )

Get Legend.

Returns
PHPExcel_Chart_Legend

Definition at line 253 of file Chart.php.

References $_legend.

253  {
254  return $this->_legend;
255  }

◆ getMajorGridlines()

PHPExcel_Chart::getMajorGridlines ( )

Get Major Gridlines.

Returns
PHPExcel_Chart_GridLines

Definition at line 392 of file Chart.php.

References $_majorGridlines.

392  {
393  if($this->_majorGridlines !== NULL){
394  return $this->_majorGridlines;
395  }
396 
397  return new PHPExcel_Chart_GridLines();
398  }
Created by PhpStorm.
Definition: GridLines.php:10

◆ getMinorGridlines()

PHPExcel_Chart::getMinorGridlines ( )

Get Minor Gridlines.

Returns
PHPExcel_Chart_GridLines

Definition at line 405 of file Chart.php.

References $_minorGridlines.

405  {
406  if($this->_minorGridlines !== NULL){
407  return $this->_minorGridlines;
408  }
409 
410  return new PHPExcel_Chart_GridLines();
411  }
Created by PhpStorm.
Definition: GridLines.php:10

◆ getName()

PHPExcel_Chart::getName ( )

Get Name.

Returns
string

Definition at line 201 of file Chart.php.

References $_name.

201  {
202  return $this->_name;
203  }

◆ getPlotArea()

PHPExcel_Chart::getPlotArea ( )

Get Plot Area.

Returns
PHPExcel_Chart_PlotArea

Definition at line 316 of file Chart.php.

References $_plotArea.

316  {
317  return $this->_plotArea;
318  }

◆ getPlotVisibleOnly()

PHPExcel_Chart::getPlotVisibleOnly ( )

Get Plot Visible Only.

Returns
boolean

Definition at line 325 of file Chart.php.

References $_plotVisibleOnly.

325  {
327  }

◆ getTitle()

PHPExcel_Chart::getTitle ( )

Get Title.

Returns
PHPExcel_Chart_Title

Definition at line 232 of file Chart.php.

References $_title.

232  {
233  return $this->_title;
234  }

◆ getTopLeftCell()

PHPExcel_Chart::getTopLeftCell ( )

Get the cell address where the top left of the chart is fixed.

Returns
string

Definition at line 449 of file Chart.php.

References $_topLeftCellRef.

449  {
450  return $this->_topLeftCellRef;
451  }

◆ getTopLeftOffset()

PHPExcel_Chart::getTopLeftOffset ( )

Get the offset position within the Top Left cell for the chart.

Returns
integer[]

Definition at line 486 of file Chart.php.

References array.

486  {
487  return array( 'X' => $this->_topLeftXOffset,
488  'Y' => $this->_topLeftYOffset
489  );
490  }
Create styles array
The data for the language used.

◆ getTopLeftPosition()

PHPExcel_Chart::getTopLeftPosition ( )

Get the top left position of the chart.

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

Definition at line 437 of file Chart.php.

References array.

437  {
438  return array( 'cell' => $this->_topLeftCellRef,
439  'xOffset' => $this->_topLeftXOffset,
440  'yOffset' => $this->_topLeftYOffset
441  );
442  }
Create styles array
The data for the language used.

◆ getTopLeftXOffset()

PHPExcel_Chart::getTopLeftXOffset ( )

Definition at line 498 of file Chart.php.

References $_topLeftXOffset.

498  {
499  return $this->_topLeftXOffset;
500  }

◆ getTopLeftYOffset()

PHPExcel_Chart::getTopLeftYOffset ( )

Definition at line 508 of file Chart.php.

References $_topLeftYOffset.

508  {
509  return $this->_topLeftYOffset;
510  }

◆ getWorksheet()

PHPExcel_Chart::getWorksheet ( )

Get Worksheet.

Returns
PHPExcel_Worksheet

Definition at line 210 of file Chart.php.

References $_worksheet.

210  {
211  return $this->_worksheet;
212  }

◆ getXAxisLabel()

PHPExcel_Chart::getXAxisLabel ( )

Get X-Axis Label.

Returns
PHPExcel_Chart_Title

Definition at line 274 of file Chart.php.

References $_xAxisLabel.

274  {
275  return $this->_xAxisLabel;
276  }

◆ getYAxisLabel()

PHPExcel_Chart::getYAxisLabel ( )

Get Y-Axis Label.

Returns
PHPExcel_Chart_Title

Definition at line 295 of file Chart.php.

References $_yAxisLabel.

295  {
296  return $this->_yAxisLabel;
297  }

◆ refresh()

PHPExcel_Chart::refresh ( )

Definition at line 605 of file Chart.php.

Referenced by render().

605  {
606  if ($this->_worksheet !== NULL) {
607  $this->_plotArea->refresh($this->_worksheet);
608  }
609  }
+ Here is the caller graph for this function:

◆ render()

PHPExcel_Chart::render (   $outputDestination = null)

Definition at line 611 of file Chart.php.

References $rendererName, PHPExcel_Settings\getChartRendererName(), PHPExcel_Settings\getChartRendererPath(), and refresh().

611  {
613  if (is_null($libraryName)) {
614  return false;
615  }
616  // Ensure that data series values are up-to-date before we render
617  $this->refresh();
618 
620  $includePath = str_replace('\\','/',get_include_path());
621  $rendererPath = str_replace('\\','/',$libraryPath);
622  if (strpos($rendererPath,$includePath) === false) {
623  set_include_path(get_include_path() . PATH_SEPARATOR . $libraryPath);
624  }
625 
626  $rendererName = 'PHPExcel_Chart_Renderer_'.$libraryName;
627  $renderer = new $rendererName($this);
628 
629  if ($outputDestination == 'php://output') {
630  $outputDestination = null;
631  }
632  return $renderer->render($outputDestination);
633  }
static getChartRendererName()
Return the Chart Rendering Library that PHPExcel is currently configured to use (e.g.
Definition: Settings.php:258
$rendererName
Include PHPExcel.
static getChartRendererPath()
Return the directory path to the Chart Rendering Library that PHPExcel is currently configured to use...
Definition: Settings.php:270
+ Here is the call graph for this function:

◆ setBottomRightCell()

PHPExcel_Chart::setBottomRightCell (   $cell)

Definition at line 542 of file Chart.php.

542  {
543  $this->_bottomRightCellRef = $cell;
544 
545  return $this;
546  }

◆ setBottomRightOffset()

PHPExcel_Chart::setBottomRightOffset (   $xOffset = null,
  $yOffset = null 
)

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

Parameters
integer$xOffset
integer$yOffset
Returns
PHPExcel_Chart

Definition at line 564 of file Chart.php.

References setBottomRightXOffset(), and setBottomRightYOffset().

564  {
565  if (!is_null($xOffset))
566  $this->setBottomRightXOffset($xOffset);
567  if (!is_null($yOffset))
568  $this->setBottomRightYOffset($yOffset);
569 
570  return $this;
571  }
setBottomRightXOffset($xOffset)
Definition: Chart.php:584
setBottomRightYOffset($yOffset)
Definition: Chart.php:594
+ Here is the call graph for this function:

◆ setBottomRightPosition()

PHPExcel_Chart::setBottomRightPosition (   $cell,
  $xOffset = null,
  $yOffset = null 
)

Set the Bottom Right position of the chart.

Parameters
string$cell
integer$xOffset
integer$yOffset
Returns
PHPExcel_Chart

Definition at line 520 of file Chart.php.

References setBottomRightXOffset(), and setBottomRightYOffset().

520  {
521  $this->_bottomRightCellRef = $cell;
522  if (!is_null($xOffset))
523  $this->setBottomRightXOffset($xOffset);
524  if (!is_null($yOffset))
525  $this->setBottomRightYOffset($yOffset);
526 
527  return $this;
528  }
setBottomRightXOffset($xOffset)
Definition: Chart.php:584
setBottomRightYOffset($yOffset)
Definition: Chart.php:594
+ Here is the call graph for this function:

◆ setBottomRightXOffset()

PHPExcel_Chart::setBottomRightXOffset (   $xOffset)

Definition at line 584 of file Chart.php.

Referenced by setBottomRightOffset(), and setBottomRightPosition().

584  {
585  $this->_bottomRightXOffset = $xOffset;
586 
587  return $this;
588  }
+ Here is the caller graph for this function:

◆ setBottomRightYOffset()

PHPExcel_Chart::setBottomRightYOffset (   $yOffset)

Definition at line 594 of file Chart.php.

Referenced by setBottomRightOffset(), and setBottomRightPosition().

594  {
595  $this->_bottomRightYOffset = $yOffset;
596 
597  return $this;
598  }
+ Here is the caller graph for this function:

◆ setDisplayBlanksAs()

PHPExcel_Chart::setDisplayBlanksAs (   $displayBlanksAs = '0')

Set Display Blanks as.

Parameters
string$displayBlanksAs
Returns
PHPExcel_Chart

Definition at line 356 of file Chart.php.

356  {
357  $this->_displayBlanksAs = $displayBlanksAs;
358  }

◆ setLegend()

PHPExcel_Chart::setLegend ( PHPExcel_Chart_Legend  $legend)

Set Legend.

Parameters
PHPExcel_Chart_Legend$legend
Returns
PHPExcel_Chart

Definition at line 263 of file Chart.php.

References $legend.

263  {
264  $this->_legend = $legend;
265 
266  return $this;
267  }

◆ setPlotVisibleOnly()

PHPExcel_Chart::setPlotVisibleOnly (   $plotVisibleOnly = true)

Set Plot Visible Only.

Parameters
boolean$plotVisibleOnly
Returns
PHPExcel_Chart

Definition at line 335 of file Chart.php.

335  {
336  $this->_plotVisibleOnly = $plotVisibleOnly;
337 
338  return $this;
339  }

◆ setTitle()

PHPExcel_Chart::setTitle ( PHPExcel_Chart_Title  $title)

Set Title.

Parameters
PHPExcel_Chart_Title$title
Returns
PHPExcel_Chart

Definition at line 242 of file Chart.php.

References $title.

242  {
243  $this->_title = $title;
244 
245  return $this;
246  }

◆ setTopLeftCell()

PHPExcel_Chart::setTopLeftCell (   $cell)

Set the Top Left cell position for the chart.

Parameters
string$cell
Returns
PHPExcel_Chart

Definition at line 459 of file Chart.php.

459  {
460  $this->_topLeftCellRef = $cell;
461 
462  return $this;
463  }

◆ setTopLeftOffset()

PHPExcel_Chart::setTopLeftOffset (   $xOffset = null,
  $yOffset = null 
)

Set the offset position within the Top Left cell for the chart.

Parameters
integer$xOffset
integer$yOffset
Returns
PHPExcel_Chart

Definition at line 472 of file Chart.php.

References setTopLeftXOffset(), and setTopLeftYOffset().

472  {
473  if (!is_null($xOffset))
474  $this->setTopLeftXOffset($xOffset);
475  if (!is_null($yOffset))
476  $this->setTopLeftYOffset($yOffset);
477 
478  return $this;
479  }
setTopLeftYOffset($yOffset)
Definition: Chart.php:502
setTopLeftXOffset($xOffset)
Definition: Chart.php:492
+ Here is the call graph for this function:

◆ setTopLeftPosition()

PHPExcel_Chart::setTopLeftPosition (   $cell,
  $xOffset = null,
  $yOffset = null 
)

Set the Top Left position for the chart.

Parameters
string$cell
integer$xOffset
integer$yOffset
Returns
PHPExcel_Chart

Definition at line 422 of file Chart.php.

References setTopLeftXOffset(), and setTopLeftYOffset().

422  {
423  $this->_topLeftCellRef = $cell;
424  if (!is_null($xOffset))
425  $this->setTopLeftXOffset($xOffset);
426  if (!is_null($yOffset))
427  $this->setTopLeftYOffset($yOffset);
428 
429  return $this;
430  }
setTopLeftYOffset($yOffset)
Definition: Chart.php:502
setTopLeftXOffset($xOffset)
Definition: Chart.php:492
+ Here is the call graph for this function:

◆ setTopLeftXOffset()

PHPExcel_Chart::setTopLeftXOffset (   $xOffset)

Definition at line 492 of file Chart.php.

Referenced by setTopLeftOffset(), and setTopLeftPosition().

492  {
493  $this->_topLeftXOffset = $xOffset;
494 
495  return $this;
496  }
+ Here is the caller graph for this function:

◆ setTopLeftYOffset()

PHPExcel_Chart::setTopLeftYOffset (   $yOffset)

Definition at line 502 of file Chart.php.

Referenced by setTopLeftOffset(), and setTopLeftPosition().

502  {
503  $this->_topLeftYOffset = $yOffset;
504 
505  return $this;
506  }
+ Here is the caller graph for this function:

◆ setWorksheet()

PHPExcel_Chart::setWorksheet ( PHPExcel_Worksheet  $pValue = null)

Set Worksheet.

Parameters
PHPExcel_Worksheet$pValue
Exceptions
PHPExcel_Chart_Exception
Returns
PHPExcel_Chart

Definition at line 221 of file Chart.php.

221  {
222  $this->_worksheet = $pValue;
223 
224  return $this;
225  }

◆ setXAxisLabel()

PHPExcel_Chart::setXAxisLabel ( PHPExcel_Chart_Title  $label)

Set X-Axis Label.

Parameters
PHPExcel_Chart_Title$label
Returns
PHPExcel_Chart

Definition at line 284 of file Chart.php.

284  {
285  $this->_xAxisLabel = $label;
286 
287  return $this;
288  }

◆ setYAxisLabel()

PHPExcel_Chart::setYAxisLabel ( PHPExcel_Chart_Title  $label)

Set Y-Axis Label.

Parameters
PHPExcel_Chart_Title$label
Returns
PHPExcel_Chart

Definition at line 305 of file Chart.php.

305  {
306  $this->_yAxisLabel = $label;
307 
308  return $this;
309  }

Field Documentation

◆ $_bottomRightCellRef

PHPExcel_Chart::$_bottomRightCellRef = 'A1'
private

Definition at line 158 of file Chart.php.

Referenced by getBottomRightCell().

◆ $_bottomRightXOffset

PHPExcel_Chart::$_bottomRightXOffset = 10
private

Definition at line 166 of file Chart.php.

Referenced by getBottomRightXOffset().

◆ $_bottomRightYOffset

PHPExcel_Chart::$_bottomRightYOffset = 10
private

Definition at line 174 of file Chart.php.

Referenced by getBottomRightYOffset().

◆ $_displayBlanksAs

PHPExcel_Chart::$_displayBlanksAs = '0'
private

Definition at line 99 of file Chart.php.

Referenced by getDisplayBlanksAs().

◆ $_legend

PHPExcel_Chart::$_legend = null
private

Definition at line 64 of file Chart.php.

Referenced by getLegend().

◆ $_majorGridlines

PHPExcel_Chart::$_majorGridlines = null
private

Definition at line 120 of file Chart.php.

Referenced by getMajorGridlines().

◆ $_minorGridlines

PHPExcel_Chart::$_minorGridlines = null
private

Definition at line 127 of file Chart.php.

Referenced by getMinorGridlines().

◆ $_name

PHPExcel_Chart::$_name = ''
private

Definition at line 43 of file Chart.php.

Referenced by getName().

◆ $_plotArea

PHPExcel_Chart::$_plotArea = null
private

Definition at line 85 of file Chart.php.

Referenced by getPlotArea().

◆ $_plotVisibleOnly

PHPExcel_Chart::$_plotVisibleOnly = true
private

Definition at line 92 of file Chart.php.

Referenced by getPlotVisibleOnly().

◆ $_title

PHPExcel_Chart::$_title = null
private

Definition at line 57 of file Chart.php.

Referenced by getTitle().

◆ $_topLeftCellRef

PHPExcel_Chart::$_topLeftCellRef = 'A1'
private

Definition at line 134 of file Chart.php.

Referenced by getTopLeftCell().

◆ $_topLeftXOffset

PHPExcel_Chart::$_topLeftXOffset = 0
private

Definition at line 142 of file Chart.php.

Referenced by getTopLeftXOffset().

◆ $_topLeftYOffset

PHPExcel_Chart::$_topLeftYOffset = 0
private

Definition at line 150 of file Chart.php.

Referenced by getTopLeftYOffset().

◆ $_worksheet

PHPExcel_Chart::$_worksheet = null
private

Definition at line 50 of file Chart.php.

Referenced by getWorksheet().

◆ $_xAxis

PHPExcel_Chart::$_xAxis = null
private

Definition at line 113 of file Chart.php.

Referenced by getChartAxisX().

◆ $_xAxisLabel

PHPExcel_Chart::$_xAxisLabel = null
private

Definition at line 71 of file Chart.php.

Referenced by getXAxisLabel().

◆ $_yAxis

PHPExcel_Chart::$_yAxis = null
private

Definition at line 106 of file Chart.php.

Referenced by getChartAxisY().

◆ $_yAxisLabel

PHPExcel_Chart::$_yAxisLabel = null
private

Definition at line 78 of file Chart.php.

Referenced by getYAxisLabel().


The documentation for this class was generated from the following file: