Total Complexity | 2 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
10 | class Legend |
||
11 | { |
||
12 | /** |
||
13 | * Position of the legend. Can be one of the following : |
||
14 | * 'top' - Above the chart. |
||
15 | * 'bottom' - Below the chart. |
||
16 | * 'in' - Inside the chart, at the top. |
||
17 | * 'none' - No legend is displayed. |
||
18 | * |
||
19 | * @var string |
||
20 | */ |
||
21 | protected $position; |
||
22 | |||
23 | /** |
||
24 | * @var TextStyle |
||
25 | */ |
||
26 | protected $textStyle; |
||
27 | |||
28 | public function getTextStyle(): TextStyle |
||
29 | { |
||
30 | return $this->textStyle; |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | * @return $this |
||
35 | */ |
||
36 | public function setPosition(string $position) |
||
41 | } |
||
42 | } |
||
43 |