diff --git a/Classes/PHPExcel/Chart.php b/Classes/PHPExcel/Chart.php
index d7d6581..0b11e5a 100644
--- a/Classes/PHPExcel/Chart.php
+++ b/Classes/PHPExcel/Chart.php
@@ -202,6 +202,18 @@ class PHPExcel_Chart
 		return $this->_title;
 	}
 
+	/**
+	 * Set Title
+	 *
+	 * @param	PHPExcel_Chart_Title $title
+	 * @return	PHPExcel_Chart
+	 */
+	public function setTitle(PHPExcel_Chart_Title $title) {
+		$this->_title = $title;
+
+		return $this;
+	}
+
 	/**
 	 * Get Legend
 	 *
@@ -211,6 +223,18 @@ class PHPExcel_Chart
 		return $this->_legend;
 	}
 
+	/**
+	 * Set Legend
+	 *
+	 * @param	PHPExcel_Chart_Legend $legend
+	 * @return	PHPExcel_Chart
+	 */
+	public function setLegend(PHPExcel_Chart_Legend $legend) {
+		$this->_legend = $legend;
+
+		return $this;
+	}
+
 	/**
 	 * Get X-Axis Label
 	 *
@@ -220,6 +244,18 @@ class PHPExcel_Chart
 		return $this->_xAxisLabel;
 	}
 
+	/**
+	 * Set X-Axis Label
+	 *
+	 * @param	PHPExcel_Chart_Title $label
+	 * @return	PHPExcel_Chart
+	 */
+	public function setXAxisLabel(PHPExcel_Chart_Title $label) {
+		$this->_xAxisLabel = $label;
+
+		return $this;
+	}
+
 	/**
 	 * Get Y-Axis Label
 	 *
@@ -229,6 +265,18 @@ class PHPExcel_Chart
 		return $this->_yAxisLabel;
 	}
 
+	/**
+	 * Set Y-Axis Label
+	 *
+	 * @param	PHPExcel_Chart_Title $label
+	 * @return	PHPExcel_Chart
+	 */
+	public function setYAxisLabel(PHPExcel_Chart_Title $label) {
+		$this->_yAxisLabel = $label;
+
+		return $this;
+	}
+
 	/**
 	 * Get Plot Area
 	 *