setStyleByArray($style); } /** * Get width * * @return int */ public function getWidth() { return $this->width; } /** * Set width * * @param int $value * @return self */ public function setWidth($value = null) { $this->width = $this->setIntVal($value, $this->width); return $this; } /** * Get height * * @return int */ public function getHeight() { return $this->height; } /** * Set height * * @param int $value * @return self */ public function setHeight($value = null) { $this->height = $this->setIntVal($value, $this->height); return $this; } /** * Is 3D * * @return bool */ public function is3d() { return $this->is3d; } /** * Set 3D * * @param bool $value * @return self */ public function set3d($value = true) { $this->is3d = $this->setBoolVal($value, $this->is3d); return $this; } /** * Show labels for axis * * @return bool */ public function showAxisLabels() { return $this->showAxisLabels; } /** * Set show Gridlines for Y-Axis * * @param bool $value * @return self */ public function setShowAxisLabels($value = true) { $this->showAxisLabels = $this->setBoolVal($value, $this->showAxisLabels); return $this; } /** * Show Gridlines for Y-Axis * * @return bool */ public function showGridY() { return $this->gridY; } /** * Set show Gridlines for Y-Axis * * @param bool $value * @return self */ public function setShowGridY($value = true) { $this->gridY = $this->setBoolVal($value, $this->gridY); return $this; } /** * Show Gridlines for X-Axis * * @return bool */ public function showGridX() { return $this->gridX; } /** * Set show Gridlines for X-Axis * * @param bool $value * @return self */ public function setShowGridX($value = true) { $this->gridX = $this->setBoolVal($value, $this->gridX); return $this; } }