ChartTitle.php in Charts 8
Same filename in this branch
Same filename and directory in other branches
Namespace
Drupal\charts_c3\Settings\CThreeFile
modules/charts_c3/src/Settings/CThree/ChartTitle.phpView source
<?php
namespace Drupal\charts_c3\Settings\CThree;
class ChartTitle implements \JsonSerializable {
private $text;
/**
* @return mixed
*/
public function getText() {
return $this->text;
}
/**
* @param mixed $text
*/
public function setText($text) {
$this->text = $text;
}
/**
* @return array
*/
public function jsonSerialize() {
$vars = get_object_vars($this);
return $vars;
}
}
Classes
Name | Description |
---|---|
ChartTitle |