You are here

ChartPoints.php in Charts 8.3

File

modules/charts_c3/src/Settings/CThree/ChartPoints.php
View source
<?php

namespace Drupal\charts_c3\Settings\CThree;


/**
 * Points.
 */
class ChartPoints implements \JsonSerializable {
  private $show;

  /**
   * @return bool
   */
  public function getShow() {
    return $this->show;
  }

  /**
   * @param bool $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
ChartPoints Points.