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

hasShowValue() public method

Get ShowValue
public hasShowValue ( ) : boolean
return boolean
    public function hasShowValue()
    {
        return $this->showValue;
    }

Usage Example

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