class CThree in Charts 8.3
Same name and namespace in other branches
- 8 modules/charts_c3/src/Settings/CThree/CThree.php \Drupal\charts_c3\Settings\CThree\CThree
CThree.
Hierarchy
- class \Drupal\charts_c3\Settings\CThree\CThree implements \Drupal\charts_c3\Settings\CThree\JsonSerializable
Expanded class hierarchy of CThree
File
- modules/
charts_c3/ src/ Settings/ CThree/ CThree.php, line 8
Namespace
Drupal\charts_c3\Settings\CThreeView source
class CThree implements \JsonSerializable {
private $color;
private $bindto;
private $data;
private $axis;
private $title;
private $gauge;
private $point;
private $legend;
/**
* Get Title.
*
* @return mixed
* Title.
*/
public function getTitle() {
return $this->title;
}
/**
* Set Title.
*
* @param mixed $title
* Title.
*/
public function setTitle($title) {
$this->title = $title;
}
/**
* Get Axis.
*
* @return mixed
* Axis.
*/
public function getAxis() {
return $this->axis;
}
/**
* Set Axis.
*
* @param mixed $axis
* Axis.
*/
public function setAxis($axis) {
$this->axis = $axis;
}
/**
* Get Data.
*
* @return mixed
* Data.
*/
public function getData() {
return $this->data;
}
/**
* Set Data.
*
* @param mixed $data
* Data.
*/
public function setData($data) {
$this->data = $data;
}
/**
* Get Bind to.
*
* @return string
* Bind to.
*/
public function getBindTo() {
return $this->bindto;
}
/**
* Set Bind to.
*
* @param mixed $bindto
* Bind to.
*/
public function setBindTo($bindto) {
$this->bindto = $bindto;
}
/**
* Get Color.
*
* @return mixed
* Color.
*/
public function getColor() {
return $this->color;
}
/**
* Set Color.
*
* @param mixed $color
* Color.
*/
public function setColor($color) {
$this->color = $color;
}
/**
* @return mixed
*/
public function getGauge() {
return $this->gauge;
}
/**
* @param mixed $gauge
*/
public function setGauge($gauge) {
$this->gauge = $gauge;
}
/**
* @return mixed
*/
public function getPoint() {
return $this->point;
}
/**
* @param mixed $point
*/
public function setPoint($point) {
$this->point = $point;
}
/**
* @return mixed
*/
public function getLegend() {
return $this->legend;
}
/**
* @param mixed $legend
*/
public function setLegend($legend) {
$this->legend = $legend;
}
/**
* Json Serialize.
*
* @return array
* Json Serialize.
*/
public function jsonSerialize() {
$vars = get_object_vars($this);
return $vars;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CThree:: |
private | property | ||
CThree:: |
private | property | ||
CThree:: |
private | property | ||
CThree:: |
private | property | ||
CThree:: |
private | property | ||
CThree:: |
private | property | ||
CThree:: |
private | property | ||
CThree:: |
private | property | ||
CThree:: |
public | function | Get Axis. | |
CThree:: |
public | function | Get Bind to. | |
CThree:: |
public | function | Get Color. | |
CThree:: |
public | function | Get Data. | |
CThree:: |
public | function | ||
CThree:: |
public | function | ||
CThree:: |
public | function | ||
CThree:: |
public | function | Get Title. | |
CThree:: |
public | function | Json Serialize. | |
CThree:: |
public | function | Set Axis. | |
CThree:: |
public | function | Set Bind to. | |
CThree:: |
public | function | Set Color. | |
CThree:: |
public | function | Set Data. | |
CThree:: |
public | function | ||
CThree:: |
public | function | ||
CThree:: |
public | function | ||
CThree:: |
public | function | Set Title. |