36 строки
621 B
PHP
36 строки
621 B
PHP
<?php
|
|
namespace EJ\RangeNavigator;
|
|
class Series {
|
|
|
|
public function xName ($value) {
|
|
$this -> xName = $value;
|
|
return $this;
|
|
}
|
|
|
|
public function yName ($value) {
|
|
$this -> yName = $value;
|
|
return $this;
|
|
}
|
|
|
|
public function dataSource ($value) {
|
|
$this -> dataSource = $value;
|
|
return $this;
|
|
}
|
|
|
|
public function type ($value) {
|
|
$this -> type = $value;
|
|
return $this;
|
|
}
|
|
|
|
public function enableAnimation ($value) {
|
|
$this -> enableAnimation = $value;
|
|
return $this;
|
|
}
|
|
|
|
public function fill ($value) {
|
|
$this -> fill = $value;
|
|
return $this;
|
|
}
|
|
|
|
}
|
|
?>
|