| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- class PHPExcel_Chart_Title
- {
- /**
- * Title Caption
- *
- * @var string
- */
- private $caption = null;
- /**
- * Title Layout
- *
- * @var PHPExcel_Chart_Layout
- */
- private $layout = null;
- /**
- * Create a new PHPExcel_Chart_Title
- */
- public function __construct($caption = null, PHPExcel_Chart_Layout $layout = null)
- {
- $this->caption = $caption;
- $this->layout = $layout;
- }
- /**
- * Get caption
- *
- * @return string
- */
- public function getCaption()
- {
- return $this->caption;
- }
- /**
- * Set caption
- *
- * @param string $caption
- * @return PHPExcel_Chart_Title
- */
- public function setCaption($caption = null)
- {
- $this->caption = $caption;
-
- return $this;
- }
- /**
- * Get Layout
- *
- * @return PHPExcel_Chart_Layout
- */
- public function getLayout()
- {
- return $this->layout;
- }
- }
|