1 | <?php |
||
8 | class LineOptions extends AdvancedChartOptions |
||
9 | { |
||
10 | use AggregationTargetTrait; |
||
11 | |||
12 | use LineDashStyleTrait; |
||
13 | |||
14 | use LineWidthTrait; |
||
15 | |||
16 | use PointTrait; |
||
17 | |||
18 | /** |
||
19 | * @var AdvancedTooltip |
||
20 | */ |
||
21 | protected $tooltip; |
||
22 | |||
23 | /** |
||
24 | * LineOptions constructor. |
||
25 | */ |
||
26 | 2 | public function __construct() |
|
32 | |||
33 | /** |
||
34 | * @return AdvancedTooltip |
||
35 | */ |
||
36 | 1 | public function getTooltip() |
|
40 | } |
||
41 |