PhpOffice\PhpPresentation\Shape\Chart\Series::hasShowSeriesName PHP Method

hasShowSeriesName() public method

Get ShowSeriesName
public hasShowSeriesName ( ) : boolean
return boolean
    public function hasShowSeriesName()
    {
        return $this->showSeriesName;
    }

Usage Example

Example #1
0
 public function testShowSeriesName()
 {
     $object = new Series();
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Series', $object->setShowSeriesName(true));
     $this->assertTrue($object->hasShowSeriesName());
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Series', $object->setShowSeriesName(false));
     $this->assertFalse($object->hasShowSeriesName());
 }