getLabelPosition() public method

Get label position
public getLabelPosition ( ) : string
return string
コード例 #1
0
ファイル: SeriesTest.php プロジェクト: hxsam/PHPPresentation
 public function testLabelPosition()
 {
     $object = new Series();
     $this->assertEmpty($object->getHashIndex());
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Series', $object->setLabelPosition(Series::LABEL_INSIDEBASE));
     $this->assertEquals(Series::LABEL_INSIDEBASE, $object->getLabelPosition());
 }