You are here

YaxisLabel.php in Charts 8

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

File

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

namespace Drupal\charts_highcharts\Settings\Highcharts;

class YaxisLabel implements \JsonSerializable {
  private $overflow = 'justify';

  /**
   * @param $overflow
   */
  public function setOverflow($overflow) {
    $this->overflow = $overflow;
  }

  /**
   * @return string
   */
  public function getOverflow() {
    return $this->overflow;
  }

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

}

Classes

Namesort descending Description
YaxisLabel