class PlotOptions in Charts 8
Same name and namespace in other branches
- 8.3 modules/charts_highcharts/src/Settings/Highcharts/PlotOptions.php \Drupal\charts_highcharts\Settings\Highcharts\PlotOptions
Hierarchy
- class \Drupal\charts_highcharts\Settings\Highcharts\PlotOptions implements \Drupal\charts_highcharts\Settings\Highcharts\JsonSerializable
Expanded class hierarchy of PlotOptions
1 file declares its use of PlotOptions
- charts_highcharts.module in modules/
charts_highcharts/ charts_highcharts.module - Charts module integration with Highcharts library.
File
- modules/
charts_highcharts/ src/ Settings/ Highcharts/ PlotOptions.php, line 5
Namespace
Drupal\charts_highcharts\Settings\HighchartsView source
class PlotOptions implements \JsonSerializable {
private $bar;
/**
* @return mixed
*/
public function getBar() {
return $this->bar;
}
/**
* @param mixed $bar
*/
public function setBar($bar) {
$this->bar = $bar;
}
/**
* @return array
*/
public function jsonSerialize() {
$vars = get_object_vars($this);
return $vars;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PlotOptions:: |
private | property | ||
PlotOptions:: |
public | function | ||
PlotOptions:: |
public | function | ||
PlotOptions:: |
public | function |