setStyleByArray($style); } /** * Get color. * * @return string */ public function getColor() { return $this->color; } /** * Set color. * * @param string $value * * @return self */ public function setColor($value = null) { $this->color = $value; return $this; } /** * Get offset. * * @return string */ public function getOffset() { return $this->offset; } /** * Set offset. * * @param string $value * * @return self */ public function setOffset($value = null) { $this->offset = $value; return $this; } }