php-ej1-demos/EJ/PivotGrid/HeaderSetting.php

16 строки
275 B
PHP

<?php
namespace EJ\PivotGrid;
class HeaderSetting {
public function showRowItems ($value) {
$this -> showRowItems = $value;
return $this;
}
public function showColumnItems ($value) {
$this -> showColumnItems = $value;
return $this;
}
}
?>