php-ej1-demos/EJ/BulletGraph/CaptionSetting.php

61 строка
1.1 KiB
PHP

<?php
namespace EJ\BulletGraph;
class CaptionSetting {
public function enableTrim ($value) {
$this -> enableTrim = $value;
return $this;
}
public function padding ($value) {
$this -> padding = $value;
return $this;
}
public function text ($value) {
$this -> text = $value;
return $this;
}
public function textAlignment ($value) {
$this -> textAlignment = $value;
return $this;
}
public function textAnchor ($value) {
$this -> textAnchor = $value;
return $this;
}
public function textAngle ($value) {
$this -> textAngle = $value;
return $this;
}
public function textPosition ($value) {
$this -> textPosition = $value;
return $this;
}
public function font ($value) {
$this -> font = $value;
return $this;
}
public function indicator ($value) {
$this -> indicator = $value;
return $this;
}
public function location ($value) {
$this -> location = $value;
return $this;
}
public function subTitle ($value) {
$this -> subTitle = $value;
return $this;
}
}
?>