Yaxis.php in Charts 8        
                          
                  
                        
  
  
  
  
File
  modules/charts_highcharts/src/Settings/Highcharts/Yaxis.php
  
    View source  
  <?php
namespace Drupal\charts_highcharts\Settings\Highcharts;
class Yaxis implements \JsonSerializable {
  private $title;
  private $labels = '';
  
  public function getTitle() {
    return $this->title;
  }
  
  public function setTitle($title) {
    $this->title = $title;
  }
  
  public function getLabels() {
    return $this->labels;
  }
  
  public function setLabels($labels) {
    $this->labels = $labels;
  }
  
  public function jsonSerialize() {
    $vars = get_object_vars($this);
    return $vars;
  }
}