You are here

PlotOptions.php in Charts 8

Same filename and directory in other branches
  1. 8.3 modules/charts_highcharts/src/Settings/Highcharts/PlotOptions.php

File

modules/charts_highcharts/src/Settings/Highcharts/PlotOptions.php
View source
<?php

namespace Drupal\charts_highcharts\Settings\Highcharts;

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;
  }

}

Classes

Namesort descending Description
PlotOptions