class Pane in Charts 8.3
Pane for gauge charts.
Hierarchy
- class \Drupal\charts_highcharts\Settings\Highcharts\Pane implements \Drupal\charts_highcharts\Settings\Highcharts\JsonSerializable
Expanded class hierarchy of Pane
1 file declares its use of Pane
- Highcharts.php in modules/
charts_highcharts/ src/ Plugin/ chart/ Highcharts.php
File
- modules/
charts_highcharts/ src/ Settings/ Highcharts/ Pane.php, line 8
Namespace
Drupal\charts_highcharts\Settings\HighchartsView source
class Pane implements \JsonSerializable {
private $startAngle = -150;
private $endAngle = 150;
/**
* @return int
*/
public function getStartAngle() {
return $this->startAngle;
}
/**
* @param int $startAngle
*/
public function setStartAngle($startAngle) {
$this->startAngle = $startAngle;
}
/**
* @return int
*/
public function getEndAngle() {
return $this->endAngle;
}
/**
* @param int $endAngle
*/
public function setEndAngle($endAngle) {
$this->endAngle = $endAngle;
}
/**
* Json Serialize.
*
* @return array
* Json Serialize.
*/
public function jsonSerialize() {
$vars = get_object_vars($this);
return $vars;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Pane:: |
private | property | ||
Pane:: |
private | property | ||
Pane:: |
public | function | ||
Pane:: |
public | function | ||
Pane:: |
public | function | Json Serialize. | |
Pane:: |
public | function | ||
Pane:: |
public | function |