You are here

YaxisTitle.php in Charts 8

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

File

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

namespace Drupal\charts_highcharts\Settings\Highcharts;

class YaxisTitle extends ChartTitle implements \JsonSerializable {
  private $text;

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

  /**
   * @param string $text
   */
  public function setText($text) {
    $this->text = $text;
  }

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

}

Classes

Namesort descending Description
YaxisTitle