sLabel = $sLabel; $this->sColor = $sColor; $this->sTooltip = $sTooltip; } /** * @return string */ public function GetTooltip(): string { return $this->sTooltip; } /** * @param string $sTooltip */ public function SetTooltip(string $sTooltip) { $this->sTooltip = $sTooltip; return $this; } /** * @return string */ public function GetLabel(): string { return $this->sLabel; } /** * @param string $sLabel * * @return $this */ public function SetLabel(string $sLabel) { $this->sLabel = $sLabel; return $this; } /** * @return string */ public function GetColor(): string { return $this->sColor; } /** * @param string $sColor * * @return $this */ public function SetColor(string $sColor) { $this->sColor = $sColor; return $this; } }