php-ej1-demos/EJ/CircularGauge/LegendFont.php

31 строка
535 B
PHP

<?php
namespace EJ\CircularGauge;
class LegendFont {
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 size ($value) {
$this -> size = $value;
return $this;
}
public function color ($value) {
$this -> color = $value;
return $this;
}
}
?>