PhpOffice\PhpPresentation\Shape\Chart\PlotArea::getAxisX PHP Method

getAxisX() public method

Get Axis X
public getAxisX ( ) : Axis
return Axis
    public function getAxisX()
    {
        return $this->axisX;
    }

Usage Example

Example #1
0
 public function testConstruct()
 {
     $object = new PlotArea();
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Axis', $object->getAxisX());
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Axis', $object->getAxisY());
 }