ChartArea.php in Charts 8
Same filename and directory in other branches
Namespace
Drupal\charts_google\Settings\GoogleFile
modules/charts_google/src/Settings/Google/ChartArea.phpView source
<?php
namespace Drupal\charts_google\Settings\Google;
class ChartArea implements \JsonSerializable {
private $width;
/**
* @return mixed
*/
public function getWidth() {
return $this->width;
}
/**
* @param mixed $width
*/
public function setWidth($width) {
$this->width = $width;
}
/**
* @return array
*/
public function jsonSerialize() {
$vars = get_object_vars($this);
return $vars;
}
}