You are here

class HorizontalAxis in Charts 8

Hierarchy

Expanded class hierarchy of HorizontalAxis

File

modules/charts_google/src/Settings/Google/HorizontalAxis.php, line 5

Namespace

Drupal\charts_google\Settings\Google
View source
class HorizontalAxis {
  private $title;
  private $minValue = 0;

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

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

  /**
   * @return int
   */
  public function getMinValue() {
    return $this->minValue;
  }

  /**
   * @param int $minValue
   */
  public function setMinValue($minValue) {
    $this->minValue = $minValue;
  }

}

Members