PhpOffice\PhpPresentation\Shape\Chart\Series::hasShowSeriesName PHP Méthode

hasShowSeriesName() public méthode

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

Usage Example

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