_propDict)) { if (is_a($this->_propDict["fill"], "\Microsoft\Graph\Model\WorkbookChartFill") || is_null($this->_propDict["fill"])) { return $this->_propDict["fill"]; } else { $this->_propDict["fill"] = new WorkbookChartFill($this->_propDict["fill"]); return $this->_propDict["fill"]; } } return null; } /** * Sets the fill * Represents the fill format of a chart series, which includes background formatting information. Read-only. * * @param WorkbookChartFill $val The fill * * @return WorkbookChartSeriesFormat */ public function setFill($val) { $this->_propDict["fill"] = $val; return $this; } /** * Gets the line * Represents line formatting. Read-only. * * @return WorkbookChartLineFormat|null The line */ public function getLine() { if (array_key_exists("line", $this->_propDict)) { if (is_a($this->_propDict["line"], "\Microsoft\Graph\Model\WorkbookChartLineFormat") || is_null($this->_propDict["line"])) { return $this->_propDict["line"]; } else { $this->_propDict["line"] = new WorkbookChartLineFormat($this->_propDict["line"]); return $this->_propDict["line"]; } } return null; } /** * Sets the line * Represents line formatting. Read-only. * * @param WorkbookChartLineFormat $val The line * * @return WorkbookChartSeriesFormat */ public function setLine($val) { $this->_propDict["line"] = $val; return $this; } }