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

66 строки
1.2 KiB
PHP
Исходник Обычный вид История

2018-11-12 16:17:08 +03:00
<?php
namespace EJ\CircularGauge;
class Legend {
public function visible ($value) {
$this -> visible = $value;
return $this;
}
public function toggleVisibility ($value) {
$this -> toggleVisibility = $value;
return $this;
}
public function alignment ($value) {
$this -> alignment = $value;
return $this;
}
public function fill ($value) {
$this -> fill = $value;
return $this;
}
public function itemPadding ($value) {
$this -> itemPadding = $value;
return $this;
}
public function opacity ($value) {
$this -> opacity = $value;
return $this;
}
public function position ($value) {
$this -> position = $value;
return $this;
}
public function shape ($value) {
$this -> shape = $value;
return $this;
}
public function border ($value) {
$this -> border = $value;
return $this;
}
public function itemStyle ($value) {
$this -> itemStyle = $value;
return $this;
}
public function size ($value) {
$this -> size = $value;
return $this;
}
public function font ($value) {
$this -> font = $value;
return $this;
}
}
?>