1 | <?php |
||
25 | class LineChartOptions extends LineOptions |
||
26 | { |
||
27 | /** |
||
28 | * @var AdvancedAnimation |
||
29 | */ |
||
30 | protected $animation; |
||
31 | |||
32 | /** |
||
33 | * @var Annotations |
||
34 | */ |
||
35 | protected $annotations; |
||
36 | |||
37 | /** |
||
38 | * @var Crosshair |
||
39 | */ |
||
40 | protected $crosshair; |
||
41 | |||
42 | use CurveTypeTrait; |
||
43 | |||
44 | use DataOpacityTrait; |
||
45 | |||
46 | /** |
||
47 | * @var Explorer |
||
48 | */ |
||
49 | protected $explorer; |
||
50 | |||
51 | use FocusTargetTrait; |
||
52 | |||
53 | /** |
||
54 | * @var AdvancedHAxis |
||
55 | */ |
||
56 | protected $hAxis; |
||
57 | |||
58 | use InterpolateNullsTrait; |
||
59 | |||
60 | /** |
||
61 | * @var AdvancedLegend |
||
62 | */ |
||
63 | protected $legend; |
||
64 | |||
65 | use OrientationTrait; |
||
66 | |||
67 | use ReverseCategoriesTrait; |
||
68 | |||
69 | use SelectionModeTrait; |
||
70 | |||
71 | /** |
||
72 | * Displays trendlines on the charts that support them. By default, linear trendlines are used, but this can be |
||
73 | * customized with the trendlines.n.type option. |
||
74 | * |
||
75 | * @var Trendlines[] |
||
76 | */ |
||
77 | protected $trendlines; |
||
78 | |||
79 | use VAxesTrait; |
||
80 | |||
81 | /** |
||
82 | * LineChartOptions constructor. |
||
83 | */ |
||
84 | 2 | public function __construct() |
|
95 | |||
96 | /** |
||
97 | * @return AdvancedAnimation |
||
98 | */ |
||
99 | 1 | public function getAnimation() |
|
103 | |||
104 | /** |
||
105 | * @return Annotations |
||
106 | */ |
||
107 | 1 | public function getAnnotations() |
|
111 | |||
112 | /** |
||
113 | * @return Crosshair |
||
114 | */ |
||
115 | 1 | public function getCrosshair() |
|
119 | |||
120 | /** |
||
121 | * @return Explorer |
||
122 | */ |
||
123 | 1 | public function getExplorer() |
|
127 | |||
128 | /** |
||
129 | * @return AdvancedHAxis |
||
130 | */ |
||
131 | 1 | public function getHAxis() |
|
135 | |||
136 | /** |
||
137 | * @return AdvancedLegend |
||
138 | */ |
||
139 | 1 | public function getLegend() |
|
143 | |||
144 | /** |
||
145 | * @param Trendlines[] $trendlines |
||
146 | * |
||
147 | * @return $this |
||
148 | */ |
||
149 | 1 | public function setTrendlines($trendlines) |
|
155 | } |
||
156 |