You are here

class Label in Charts 8

Same name and namespace in other branches
  1. 8.3 modules/charts_highcharts/src/Settings/Highcharts/Label.php \Drupal\charts_highcharts\Settings\Highcharts\Label

Hierarchy

  • class \Drupal\charts_highcharts\Settings\Highcharts\Label implements \Drupal\charts_highcharts\Settings\Highcharts\JsonSerializable

Expanded class hierarchy of Label

File

modules/charts_highcharts/src/Settings/Highcharts/Label.php, line 5

Namespace

Drupal\charts_highcharts\Settings\Highcharts
View source
class Label implements \JsonSerializable {
  private $rotation;

  /**
   * @return mixed
   */
  public function getRotation() {
    return $this->rotation;
  }

  /**
   * @param mixed $rotation
   */
  public function setRotation($rotation) {
    $this->rotation = $rotation;
  }

  /**
   * @return array
   */
  public function jsonSerialize() {
    $vars = get_object_vars($this);
    return $vars;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
Label::$rotation private property
Label::getRotation public function
Label::jsonSerialize public function
Label::setRotation public function