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

getAxisY() public method

Get Axis Y
public getAxisY ( ) : Axis
return Axis
    public function getAxisY()
    {
        return $this->axisY;
    }

Usage 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());
 }