You are here

HorizontalAxis.php in Charts 8

File

modules/charts_google/src/Settings/Google/HorizontalAxis.php
View source
<?php

namespace Drupal\charts_google\Settings\Google;

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

}

Classes

Namesort descending Description
HorizontalAxis