You are here

class PlotOptions in Charts 8

Same name and namespace in other branches
  1. 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\Highcharts
View 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