1 | <?php |
||
12 | class GanttChartOptions implements ChartOptionsInterface |
||
13 | { |
||
14 | /** |
||
15 | * @var BackgroundColor |
||
16 | */ |
||
17 | protected $backgroundColor; |
||
18 | |||
19 | use HeightTrait; |
||
20 | |||
21 | /** |
||
22 | * @var Gantt |
||
23 | */ |
||
24 | protected $gantt; |
||
25 | |||
26 | use WidthTrait; |
||
27 | |||
28 | /** |
||
29 | * GanttChartOptions constructor. |
||
30 | */ |
||
31 | 2 | public function __construct() |
|
36 | |||
37 | /** |
||
38 | * @return BackgroundColor |
||
39 | */ |
||
40 | 1 | public function getBackgroundColor() |
|
44 | |||
45 | /** |
||
46 | * @return Gantt |
||
47 | */ |
||
48 | 1 | public function getGantt() |
|
52 | } |
||
53 |