PhpOffice\PhpPresentation\Shape\Chart::getPlotArea PHP Method

getPlotArea() public method

Get PlotArea
public getPlotArea ( ) : PlotArea
return PhpOffice\PhpPresentation\Shape\Chart\PlotArea
    public function getPlotArea()
    {
        return $this->plotArea;
    }

Usage Example

Example #1
0
 public function testConstruct()
 {
     $object = new Chart();
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Title', $object->getTitle());
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Legend', $object->getLegend());
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\PlotArea', $object->getPlotArea());
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\View3D', $object->getView3D());
 }
All Usage Examples Of PhpOffice\PhpPresentation\Shape\Chart::getPlotArea