Title.php 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <?php
  2. /**
  3. * PHPExcel_Chart_Title
  4. *
  5. * Copyright (c) 2006 - 2015 PHPExcel
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this library; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. *
  21. * @category PHPExcel
  22. * @package PHPExcel_Chart
  23. * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel)
  24. * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
  25. * @version ##VERSION##, ##DATE##
  26. */
  27. class PHPExcel_Chart_Title
  28. {
  29. /**
  30. * Title Caption
  31. *
  32. * @var string
  33. */
  34. private $caption = null;
  35. /**
  36. * Title Layout
  37. *
  38. * @var PHPExcel_Chart_Layout
  39. */
  40. private $layout = null;
  41. /**
  42. * Create a new PHPExcel_Chart_Title
  43. */
  44. public function __construct($caption = null, PHPExcel_Chart_Layout $layout = null)
  45. {
  46. $this->caption = $caption;
  47. $this->layout = $layout;
  48. }
  49. /**
  50. * Get caption
  51. *
  52. * @return string
  53. */
  54. public function getCaption()
  55. {
  56. return $this->caption;
  57. }
  58. /**
  59. * Set caption
  60. *
  61. * @param string $caption
  62. * @return PHPExcel_Chart_Title
  63. */
  64. public function setCaption($caption = null)
  65. {
  66. $this->caption = $caption;
  67. return $this;
  68. }
  69. /**
  70. * Get Layout
  71. *
  72. * @return PHPExcel_Chart_Layout
  73. */
  74. public function getLayout()
  75. {
  76. return $this->layout;
  77. }
  78. }