You are here

ChartArea.php in Charts 8

Same filename and directory in other branches
  1. 8.3 modules/charts_google/src/Settings/Google/ChartArea.php

File

modules/charts_google/src/Settings/Google/ChartArea.php
View source
<?php

namespace Drupal\charts_google\Settings\Google;

class ChartArea implements \JsonSerializable {
  private $width;

  /**
   * @return mixed
   */
  public function getWidth() {
    return $this->width;
  }

  /**
   * @param mixed $width
   */
  public function setWidth($width) {
    $this->width = $width;
  }

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

}

Classes

Namesort descending Description
ChartArea