You are here

ChartLabel.php in Charts 8

File

modules/charts_c3/src/Settings/CThree/ChartLabel.php
View source
<?php

namespace Drupal\charts_c3\Settings\CThree;

class ChartLabel 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
ChartLabel