123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <?php
- class PHPExcel_Chart_Title
- {
-
- private $caption = null;
-
- private $layout = null;
-
- public function __construct($caption = null, PHPExcel_Chart_Layout $layout = null)
- {
- $this->caption = $caption;
- $this->layout = $layout;
- }
-
- public function getCaption()
- {
- return $this->caption;
- }
-
- public function setCaption($caption = null)
- {
- $this->caption = $caption;
-
- return $this;
- }
-
- public function getLayout()
- {
- return $this->layout;
- }
- }
|