You are here

Label.php in Charts 8

Same filename and directory in other branches
  1. 8.3 modules/charts_highcharts/src/Settings/Highcharts/Label.php

File

modules/charts_highcharts/src/Settings/Highcharts/Label.php
View source
<?php

namespace Drupal\charts_highcharts\Settings\Highcharts;

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;
  }

}

Classes

Namesort descending Description
Label