36 строки
629 B
PHP
36 строки
629 B
PHP
<?php
|
|
namespace EJ\BulletGraph;
|
|
class IndicatorFont {
|
|
|
|
public function color ($value) {
|
|
$this -> color = $value;
|
|
return $this;
|
|
}
|
|
|
|
public function fontFamily ($value) {
|
|
$this -> fontFamily = $value;
|
|
return $this;
|
|
}
|
|
|
|
public function fontStyle ($value) {
|
|
$this -> fontStyle = $value;
|
|
return $this;
|
|
}
|
|
|
|
public function fontWeight ($value) {
|
|
$this -> fontWeight = $value;
|
|
return $this;
|
|
}
|
|
|
|
public function opacity ($value) {
|
|
$this -> opacity = $value;
|
|
return $this;
|
|
}
|
|
|
|
public function size ($value) {
|
|
$this -> size = $value;
|
|
return $this;
|
|
}
|
|
|
|
}
|
|
?>
|