You are here

class ChartPoints in Charts 8.3

Same name in this branch
  1. 8.3 modules/charts_billboard/src/Settings/Billboard/ChartPoints.php \Drupal\charts_billboard\Settings\Billboard\ChartPoints
  2. 8.3 modules/charts_c3/src/Settings/CThree/ChartPoints.php \Drupal\charts_c3\Settings\CThree\ChartPoints

Points.

Hierarchy

  • class \Drupal\charts_c3\Settings\CThree\ChartPoints implements \Drupal\charts_c3\Settings\CThree\JsonSerializable

Expanded class hierarchy of ChartPoints

1 file declares its use of ChartPoints
C3.php in modules/charts_c3/src/Plugin/chart/C3.php

File

modules/charts_c3/src/Settings/CThree/ChartPoints.php, line 8

Namespace

Drupal\charts_c3\Settings\CThree
View source
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;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ChartPoints::$show private property
ChartPoints::getShow public function
ChartPoints::jsonSerialize public function Json Serialize.
ChartPoints::setShow public function