CThree.php in Charts 8.3
File
modules/charts_c3/src/Settings/CThree/CThree.php
View source
<?php
namespace Drupal\charts_c3\Settings\CThree;
class CThree implements \JsonSerializable {
private $color;
private $bindto;
private $data;
private $axis;
private $title;
private $gauge;
private $point;
private $legend;
public function getTitle() {
return $this->title;
}
public function setTitle($title) {
$this->title = $title;
}
public function getAxis() {
return $this->axis;
}
public function setAxis($axis) {
$this->axis = $axis;
}
public function getData() {
return $this->data;
}
public function setData($data) {
$this->data = $data;
}
public function getBindTo() {
return $this->bindto;
}
public function setBindTo($bindto) {
$this->bindto = $bindto;
}
public function getColor() {
return $this->color;
}
public function setColor($color) {
$this->color = $color;
}
public function getGauge() {
return $this->gauge;
}
public function setGauge($gauge) {
$this->gauge = $gauge;
}
public function getPoint() {
return $this->point;
}
public function setPoint($point) {
$this->point = $point;
}
public function getLegend() {
return $this->legend;
}
public function setLegend($legend) {
$this->legend = $legend;
}
public function jsonSerialize() {
$vars = get_object_vars($this);
return $vars;
}
}