You are here

ChartLegend.php in Charts 8.3

File

modules/charts_billboard/src/Settings/Billboard/ChartLegend.php
View source
<?php

namespace Drupal\charts_billboard\Settings\Billboard;


/**
 * Chart Legend.
 */
class ChartLegend implements \JsonSerializable {
  private $show;

  /**
   * Get Show.
   *
   * @return mixed
   *   Show.
   */
  public function getShow() {
    return $this->show;
  }

  /**
   * Set Show.
   *
   * @param mixed $show
   *   Show.
   */
  public function setShow($show) {
    $this->show = $show;
  }

  /**
   * Json Serialize.
   *
   * @return array
   *   Json Serialize.
   */
  public function jsonSerialize() {
    $vars = get_object_vars($this);
    return $vars;
  }

}

Classes

Namesort descending Description
ChartLegend Chart Legend.