Total Complexity | 1 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
8 | class MediumTooltip extends BasicTooltip |
||
9 | { |
||
10 | /** |
||
11 | * If true, show colored squares next to the series information in the tooltip. The default is true when |
||
12 | * focusTarget is set to 'category', otherwise the default is false. |
||
13 | * |
||
14 | * @var bool |
||
15 | */ |
||
16 | protected $showColorCode; |
||
17 | |||
18 | /** |
||
19 | * @return $this |
||
20 | */ |
||
21 | 2 | public function setShowColorCode(bool $showColorCode) |
|
28 |