| 1 | <?php |
||
| 8 | class Gridlines |
||
| 9 | { |
||
| 10 | use ColorTrait; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * The number of horizontal gridlines inside the chart area. Minimum value is 2. Specify -1 to automatically |
||
| 14 | * compute the number of gridlines. |
||
| 15 | * |
||
| 16 | * @var int |
||
| 17 | */ |
||
| 18 | protected $count; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @var Units |
||
| 22 | */ |
||
| 23 | protected $units; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Gridlines constructor. |
||
| 27 | */ |
||
| 28 | 5 | public function __construct() |
|
| 32 | |||
| 33 | /** |
||
| 34 | * @return Units |
||
| 35 | */ |
||
| 36 | public function getUnits() |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @param int $count |
||
| 43 | * |
||
| 44 | * @return $this |
||
| 45 | */ |
||
| 46 | 1 | public function setCount($count) |
|
| 52 | } |
||
| 53 |