class CThree in Charts 8
Same name and namespace in other branches
- 8.3 modules/charts_c3/src/Settings/CThree/CThree.php \Drupal\charts_c3\Settings\CThree\CThree
Hierarchy
- class \Drupal\charts_c3\Settings\CThree\CThree implements \Drupal\charts_c3\Settings\CThree\JsonSerializable
Expanded class hierarchy of CThree
1 file declares its use of CThree
- charts_c3.module in modules/
charts_c3/ charts_c3.module - Charts module integration with C3 library.
File
- modules/
charts_c3/ src/ Settings/ CThree/ CThree.php, line 5
Namespace
Drupal\charts_c3\Settings\CThreeView source
class CThree implements \JsonSerializable {
private $color;
private $bindto;
private $data;
private $axis;
private $title;
/**
* @return mixed
*/
public function getTitle() {
return $this->title;
}
/**
* @param mixed $title
*/
public function setTitle($title) {
$this->title = $title;
}
/**
* @return mixed
*/
public function getAxis() {
return $this->axis;
}
/**
* @param mixed $axis
*/
public function setAxis($axis) {
$this->axis = $axis;
}
/**
* @return mixed
*/
public function getData() {
return $this->data;
}
/**
* @param mixed $data
*/
public function setData($data) {
$this->data = $data;
}
/**
* @return string
*/
public function getBindTo() {
return $this->bindto;
}
/**
* @param mixed $bindto
*/
public function setBindTo($bindto) {
$this->bindto = $bindto;
}
/**
* @return mixed
*/
public function getColor() {
return $this->color;
}
/**
* @param mixed $color
*/
public function setColor($color) {
$this->color = $color;
}
/**
* @return array
*/
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:: |
public | function | ||
CThree:: |
public | function | ||
CThree:: |
public | function | ||
CThree:: |
public | function | ||
CThree:: |
public | function | ||
CThree:: |
public | function | ||
CThree:: |
public | function | ||
CThree:: |
public | function | ||
CThree:: |
public | function | ||
CThree:: |
public | function | ||
CThree:: |
public | function |