You are here

public function PlotOptions::jsonSerialize in Charts 8.3

Same name and namespace in other branches
  1. 8 modules/charts_highcharts/src/Settings/Highcharts/PlotOptions.php \Drupal\charts_highcharts\Settings\Highcharts\PlotOptions::jsonSerialize()

Json Serialize.

Return value

array Json Serialize.

File

modules/charts_highcharts/src/Settings/Highcharts/PlotOptions.php, line 37

Class

PlotOptions
Plot Options.

Namespace

Drupal\charts_highcharts\Settings\Highcharts

Code

public function jsonSerialize() {
  $vars = get_object_vars($this);
  return $vars;
}