PhpOffice\PhpPresentation\Shape\Chart\Axis::getMinorGridlines PHP Метод

getMinorGridlines() публичный Метод

public getMinorGridlines ( ) : Gridlines
Результат Gridlines
    public function getMinorGridlines()
    {
        return $this->minorGridlines;
    }

Usage Example

Пример #1
0
 public function testGridLines()
 {
     $object = new Axis();
     $oMock = $this->getMock('PhpOffice\\PhpPresentation\\Shape\\Chart\\Gridlines');
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Axis', $object->setMajorGridlines($oMock));
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Gridlines', $object->getMajorGridlines());
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Axis', $object->setMinorGridlines($oMock));
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Gridlines', $object->getMinorGridlines());
 }
All Usage Examples Of PhpOffice\PhpPresentation\Shape\Chart\Axis::getMinorGridlines