ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
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.

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 }

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

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.

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

References $_bottomRightCellRef.

◆ 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.

578 {
579 return array( 'X' => $this->_bottomRightXOffset,
580 'Y' => $this->_bottomRightYOffset
581 );
582 }

◆ 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.

535 {
536 return array( 'cell' => $this->_bottomRightCellRef,
537 'xOffset' => $this->_bottomRightXOffset,
538 'yOffset' => $this->_bottomRightYOffset
539 );
540 }

◆ getBottomRightXOffset()

PHPExcel_Chart::getBottomRightXOffset ( )

Definition at line 590 of file Chart.php.

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

References $_bottomRightXOffset.

◆ getBottomRightYOffset()

PHPExcel_Chart::getBottomRightYOffset ( )

Definition at line 600 of file Chart.php.

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

References $_bottomRightYOffset.

◆ getChartAxisX()

PHPExcel_Chart::getChartAxisX ( )

Get xAxis.

Returns
PHPExcel_Chart_Axis

Definition at line 379 of file Chart.php.

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:12

References $_xAxis.

◆ getChartAxisY()

PHPExcel_Chart::getChartAxisY ( )

Get yAxis.

Returns
PHPExcel_Chart_Axis

Definition at line 366 of file Chart.php.

366 {
367 if($this->_yAxis !== NULL){
368 return $this->_yAxis;
369 }
370
371 return new PHPExcel_Chart_Axis();
372 }

References $_yAxis.

◆ getDisplayBlanksAs()

PHPExcel_Chart::getDisplayBlanksAs ( )

Get Display Blanks as.

Returns
string

Definition at line 346 of file Chart.php.

346 {
348 }

References $_displayBlanksAs.

◆ getLegend()

PHPExcel_Chart::getLegend ( )

Get Legend.

Returns
PHPExcel_Chart_Legend

Definition at line 253 of file Chart.php.

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

References $_legend.

◆ getMajorGridlines()

PHPExcel_Chart::getMajorGridlines ( )

Get Major Gridlines.

Returns
PHPExcel_Chart_GridLines

Definition at line 392 of file Chart.php.

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

References $_majorGridlines.

◆ getMinorGridlines()

PHPExcel_Chart::getMinorGridlines ( )

Get Minor Gridlines.

Returns
PHPExcel_Chart_GridLines

Definition at line 405 of file Chart.php.

405 {
406 if($this->_minorGridlines !== NULL){
408 }
409
410 return new PHPExcel_Chart_GridLines();
411 }

References $_minorGridlines.

◆ getName()

PHPExcel_Chart::getName ( )

Get Name.

Returns
string

Definition at line 201 of file Chart.php.

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

References $_name.

◆ getPlotArea()

PHPExcel_Chart::getPlotArea ( )

Get Plot Area.

Returns
PHPExcel_Chart_PlotArea

Definition at line 316 of file Chart.php.

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

References $_plotArea.

◆ getPlotVisibleOnly()

PHPExcel_Chart::getPlotVisibleOnly ( )

Get Plot Visible Only.

Returns
boolean

Definition at line 325 of file Chart.php.

325 {
327 }

References $_plotVisibleOnly.

◆ getTitle()

PHPExcel_Chart::getTitle ( )

Get Title.

Returns
PHPExcel_Chart_Title

Definition at line 232 of file Chart.php.

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

References $_title.

◆ 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.

449 {
451 }

References $_topLeftCellRef.

◆ 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.

486 {
487 return array( 'X' => $this->_topLeftXOffset,
488 'Y' => $this->_topLeftYOffset
489 );
490 }

◆ 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.

437 {
438 return array( 'cell' => $this->_topLeftCellRef,
439 'xOffset' => $this->_topLeftXOffset,
440 'yOffset' => $this->_topLeftYOffset
441 );
442 }

◆ getTopLeftXOffset()

PHPExcel_Chart::getTopLeftXOffset ( )

Definition at line 498 of file Chart.php.

498 {
500 }

References $_topLeftXOffset.

◆ getTopLeftYOffset()

PHPExcel_Chart::getTopLeftYOffset ( )

Definition at line 508 of file Chart.php.

508 {
510 }

References $_topLeftYOffset.

◆ getWorksheet()

PHPExcel_Chart::getWorksheet ( )

Get Worksheet.

Returns
PHPExcel_Worksheet

Definition at line 210 of file Chart.php.

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

References $_worksheet.

◆ getXAxisLabel()

PHPExcel_Chart::getXAxisLabel ( )

Get X-Axis Label.

Returns
PHPExcel_Chart_Title

Definition at line 274 of file Chart.php.

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

References $_xAxisLabel.

◆ getYAxisLabel()

PHPExcel_Chart::getYAxisLabel ( )

Get Y-Axis Label.

Returns
PHPExcel_Chart_Title

Definition at line 295 of file Chart.php.

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

References $_yAxisLabel.

◆ refresh()

PHPExcel_Chart::refresh ( )

Definition at line 605 of file Chart.php.

605 {
606 if ($this->_worksheet !== NULL) {
607 $this->_plotArea->refresh($this->_worksheet);
608 }
609 }

Referenced by render().

+ Here is the caller graph for this function:

◆ render()

PHPExcel_Chart::render (   $outputDestination = null)

Definition at line 611 of file Chart.php.

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 }
$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
static getChartRendererName()
Return the Chart Rendering Library that PHPExcel is currently configured to use (e....
Definition: Settings.php:258

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

+ 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.

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

References setBottomRightXOffset(), and setBottomRightYOffset().

+ 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.

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 }

References setBottomRightXOffset(), and setBottomRightYOffset().

+ Here is the call graph for this function:

◆ setBottomRightXOffset()

PHPExcel_Chart::setBottomRightXOffset (   $xOffset)

Definition at line 584 of file Chart.php.

584 {
585 $this->_bottomRightXOffset = $xOffset;
586
587 return $this;
588 }

Referenced by setBottomRightOffset(), and setBottomRightPosition().

+ Here is the caller graph for this function:

◆ setBottomRightYOffset()

PHPExcel_Chart::setBottomRightYOffset (   $yOffset)

Definition at line 594 of file Chart.php.

594 {
595 $this->_bottomRightYOffset = $yOffset;
596
597 return $this;
598 }

Referenced by setBottomRightOffset(), and setBottomRightPosition().

+ 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.

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

References $legend.

◆ 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.

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

References $title.

◆ 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.

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

References setTopLeftXOffset(), and setTopLeftYOffset().

+ 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.

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 }

References setTopLeftXOffset(), and setTopLeftYOffset().

+ Here is the call graph for this function:

◆ setTopLeftXOffset()

PHPExcel_Chart::setTopLeftXOffset (   $xOffset)

Definition at line 492 of file Chart.php.

492 {
493 $this->_topLeftXOffset = $xOffset;
494
495 return $this;
496 }

Referenced by setTopLeftOffset(), and setTopLeftPosition().

+ Here is the caller graph for this function:

◆ setTopLeftYOffset()

PHPExcel_Chart::setTopLeftYOffset (   $yOffset)

Definition at line 502 of file Chart.php.

502 {
503 $this->_topLeftYOffset = $yOffset;
504
505 return $this;
506 }

Referenced by setTopLeftOffset(), and setTopLeftPosition().

+ 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: