class ChartLabel in Charts 8.3
Same name in this branch
- 8.3 modules/charts_billboard/src/Settings/Billboard/ChartLabel.php \Drupal\charts_billboard\Settings\Billboard\ChartLabel
 - 8.3 modules/charts_c3/src/Settings/CThree/ChartLabel.php \Drupal\charts_c3\Settings\CThree\ChartLabel
 - 8.3 modules/charts_highcharts/src/Settings/Highcharts/ChartLabel.php \Drupal\charts_highcharts\Settings\Highcharts\ChartLabel
 
Same name and namespace in other branches
- 8 modules/charts_c3/src/Settings/CThree/ChartLabel.php \Drupal\charts_c3\Settings\CThree\ChartLabel
 
Chart Label.
Hierarchy
- class \Drupal\charts_c3\Settings\CThree\ChartLabel implements \Drupal\charts_c3\Settings\CThree\JsonSerializable
 
Expanded class hierarchy of ChartLabel
File
- modules/
charts_c3/ src/ Settings/ CThree/ ChartLabel.php, line 8  
Namespace
Drupal\charts_c3\Settings\CThreeView source
class ChartLabel implements \JsonSerializable {
  private $rotation;
  /**
   * Get Rotation.
   *
   * @return mixed
   *   Rotation.
   */
  public function getRotation() {
    return $this->rotation;
  }
  /**
   * Set Rotation.
   *
   * @param mixed $rotation
   *   Rotation.
   */
  public function setRotation($rotation) {
    $this->rotation = $rotation;
  }
  /**
   * Json Serialize.
   *
   * @return array
   *   Json Serialize.
   */
  public function jsonSerialize() {
    $vars = get_object_vars($this);
    return $vars;
  }
}Members
| 
            Name | 
                  Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| 
            ChartLabel:: | 
                  private | property | ||
| 
            ChartLabel:: | 
                  public | function | Get Rotation. | |
| 
            ChartLabel:: | 
                  public | function | Json Serialize. | |
| 
            ChartLabel:: | 
                  public | function | Set Rotation. |