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

21 строка
335 B
PHP

<?php
namespace EJ\BulletGraph;
class MinorTickSetting {
public function size ($value) {
$this -> size = $value;
return $this;
}
public function stroke ($value) {
$this -> stroke = $value;
return $this;
}
public function width ($value) {
$this -> width = $value;
return $this;
}
}
?>