Complex classes like HighchartsAreaspline often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use HighchartsAreaspline, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
25 | final class HighchartsAreaspline implements JsonSerializable { |
||
26 | |||
27 | /** |
||
28 | * Allow point select. |
||
29 | * |
||
30 | * @var boolean |
||
31 | * @since 1.2.0 |
||
32 | */ |
||
33 | private $allowPointSelect = false; |
||
34 | |||
35 | /** |
||
36 | * Animation. |
||
37 | * |
||
38 | * @var boolean |
||
39 | */ |
||
40 | private $animation = true; |
||
41 | |||
42 | /** |
||
43 | * Animation limit. |
||
44 | * |
||
45 | * @var integer |
||
46 | */ |
||
47 | private $animationLimit; |
||
48 | |||
49 | /** |
||
50 | * Class name. |
||
51 | * |
||
52 | * @var string |
||
53 | * @since 5.0.0 |
||
54 | */ |
||
55 | private $className; |
||
56 | |||
57 | /** |
||
58 | * Color. |
||
59 | * |
||
60 | * @var string |
||
61 | */ |
||
62 | private $color; |
||
63 | |||
64 | /** |
||
65 | * Color index. |
||
66 | * |
||
67 | * @var integer |
||
68 | * @since 5.0.0 |
||
69 | */ |
||
70 | private $colorIndex; |
||
71 | |||
72 | /** |
||
73 | * Connect ends. |
||
74 | * |
||
75 | * @var boolean |
||
76 | * @since 2.3.0 |
||
77 | */ |
||
78 | private $connectEnds = true; |
||
79 | |||
80 | /** |
||
81 | * Connect nulls. |
||
82 | * |
||
83 | * @var boolean |
||
84 | */ |
||
85 | private $connectNulls = false; |
||
86 | |||
87 | /** |
||
88 | * Crop threshold. |
||
89 | * |
||
90 | * @var integer |
||
91 | * @since 2.2 |
||
92 | */ |
||
93 | private $cropThreshold = 300; |
||
94 | |||
95 | /** |
||
96 | * Cursor. |
||
97 | * |
||
98 | * @var string |
||
99 | */ |
||
100 | private $cursor; |
||
101 | |||
102 | /** |
||
103 | * Dash style. |
||
104 | * |
||
105 | * @var string |
||
106 | * @since 2.1 |
||
107 | */ |
||
108 | private $dashStyle = "Solid"; |
||
109 | |||
110 | /** |
||
111 | * Data labels. |
||
112 | * |
||
113 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areaspline\HighchartsDataLabels |
||
114 | */ |
||
115 | private $dataLabels; |
||
116 | |||
117 | /** |
||
118 | * Description. |
||
119 | * |
||
120 | * @var string |
||
121 | * @since 5.0.0 |
||
122 | */ |
||
123 | private $description; |
||
124 | |||
125 | /** |
||
126 | * Enable mouse tracking. |
||
127 | * |
||
128 | * @var boolean |
||
129 | */ |
||
130 | private $enableMouseTracking = true; |
||
131 | |||
132 | /** |
||
133 | * Events. |
||
134 | * |
||
135 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areaspline\HighchartsEvents |
||
136 | */ |
||
137 | private $events; |
||
138 | |||
139 | /** |
||
140 | * Expose element to a11y. |
||
141 | * |
||
142 | * @var boolean |
||
143 | * @since 5.0.12 |
||
144 | */ |
||
145 | private $exposeElementToA11y; |
||
146 | |||
147 | /** |
||
148 | * Fill color. |
||
149 | * |
||
150 | * @var string |
||
151 | */ |
||
152 | private $fillColor; |
||
153 | |||
154 | /** |
||
155 | * Fill opacity. |
||
156 | * |
||
157 | * @var integer |
||
158 | */ |
||
159 | private $fillOpacity = 0.75; |
||
160 | |||
161 | /** |
||
162 | * Find nearest point by. |
||
163 | * |
||
164 | * @var string |
||
165 | * @since 5.0.10 |
||
166 | */ |
||
167 | private $findNearestPointBy; |
||
168 | |||
169 | /** |
||
170 | * Get extremes from all. |
||
171 | * |
||
172 | * @var boolean |
||
173 | * @since 4.1.6 |
||
174 | */ |
||
175 | private $getExtremesFromAll = false; |
||
176 | |||
177 | /** |
||
178 | * Keys. |
||
179 | * |
||
180 | * @var array |
||
181 | * @since 4.1.6 |
||
182 | */ |
||
183 | private $keys; |
||
184 | |||
185 | /** |
||
186 | * Line color. |
||
187 | * |
||
188 | * @var string |
||
189 | */ |
||
190 | private $lineColor; |
||
191 | |||
192 | /** |
||
193 | * Line width. |
||
194 | * |
||
195 | * @var integer |
||
196 | */ |
||
197 | private $lineWidth = 2; |
||
198 | |||
199 | /** |
||
200 | * Linecap. |
||
201 | * |
||
202 | * @var string |
||
203 | */ |
||
204 | private $linecap = "round"; |
||
205 | |||
206 | /** |
||
207 | * Linked to. |
||
208 | * |
||
209 | * @var string |
||
210 | * @since 3.0 |
||
211 | */ |
||
212 | private $linkedTo; |
||
213 | |||
214 | /** |
||
215 | * Marker. |
||
216 | * |
||
217 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areaspline\HighchartsMarker |
||
218 | */ |
||
219 | private $marker; |
||
220 | |||
221 | /** |
||
222 | * Negative color. |
||
223 | * |
||
224 | * @var string |
||
225 | * @since 3.0 |
||
226 | */ |
||
227 | private $negativeColor; |
||
228 | |||
229 | /** |
||
230 | * Negative fill color. |
||
231 | * |
||
232 | * @var string |
||
233 | * @since 3.0 |
||
234 | */ |
||
235 | private $negativeFillColor; |
||
236 | |||
237 | /** |
||
238 | * Point. |
||
239 | * |
||
240 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areaspline\HighchartsPoint |
||
241 | */ |
||
242 | private $point; |
||
243 | |||
244 | /** |
||
245 | * Point description formatter. |
||
246 | * |
||
247 | * @var string |
||
248 | * @since 5.0.12 |
||
249 | */ |
||
250 | private $pointDescriptionFormatter; |
||
251 | |||
252 | /** |
||
253 | * Point interval. |
||
254 | * |
||
255 | * @var integer |
||
256 | */ |
||
257 | private $pointInterval = 1; |
||
258 | |||
259 | /** |
||
260 | * Point interval unit. |
||
261 | * |
||
262 | * @var string |
||
263 | * @since 4.1.0 |
||
264 | */ |
||
265 | private $pointIntervalUnit; |
||
266 | |||
267 | /** |
||
268 | * Point placement. |
||
269 | * |
||
270 | * @var string|integer |
||
271 | * @since 2.3.0 |
||
272 | */ |
||
273 | private $pointPlacement; |
||
274 | |||
275 | /** |
||
276 | * Point start. |
||
277 | * |
||
278 | * @var integer |
||
279 | */ |
||
280 | private $pointStart = 0; |
||
281 | |||
282 | /** |
||
283 | * Selected. |
||
284 | * |
||
285 | * @var boolean |
||
286 | * @since 1.2.0 |
||
287 | */ |
||
288 | private $selected = false; |
||
289 | |||
290 | /** |
||
291 | * Shadow. |
||
292 | * |
||
293 | * @var boolean|array |
||
294 | */ |
||
295 | private $shadow = false; |
||
296 | |||
297 | /** |
||
298 | * Show checkbox. |
||
299 | * |
||
300 | * @var boolean |
||
301 | * @since 1.2.0 |
||
302 | */ |
||
303 | private $showCheckbox = false; |
||
304 | |||
305 | /** |
||
306 | * Show in legend. |
||
307 | * |
||
308 | * @var boolean |
||
309 | */ |
||
310 | private $showInLegend = true; |
||
311 | |||
312 | /** |
||
313 | * Skip keyboard navigation. |
||
314 | * |
||
315 | * @var boolean |
||
316 | * @since 5.0.12 |
||
317 | */ |
||
318 | private $skipKeyboardNavigation; |
||
319 | |||
320 | /** |
||
321 | * Soft threshold. |
||
322 | * |
||
323 | * @var boolean |
||
324 | * @since 4.1.9 |
||
325 | */ |
||
326 | private $softThreshold = false; |
||
327 | |||
328 | /** |
||
329 | * Stacking. |
||
330 | * |
||
331 | * @var string |
||
332 | */ |
||
333 | private $stacking; |
||
334 | |||
335 | /** |
||
336 | * States. |
||
337 | * |
||
338 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areaspline\HighchartsStates |
||
339 | */ |
||
340 | private $states; |
||
341 | |||
342 | /** |
||
343 | * Sticky tracking. |
||
344 | * |
||
345 | * @var boolean |
||
346 | * @since 2.0 |
||
347 | */ |
||
348 | private $stickyTracking = true; |
||
349 | |||
350 | /** |
||
351 | * Threshold. |
||
352 | * |
||
353 | * @var integer |
||
354 | * @since 2.0 |
||
355 | */ |
||
356 | private $threshold = 0; |
||
357 | |||
358 | /** |
||
359 | * Tooltip. |
||
360 | * |
||
361 | * @var array |
||
362 | * @since 2.3 |
||
363 | */ |
||
364 | private $tooltip; |
||
365 | |||
366 | /** |
||
367 | * Track by area. |
||
368 | * |
||
369 | * @var boolean |
||
370 | * @since 1.1.6 |
||
371 | */ |
||
372 | private $trackByArea = false; |
||
373 | |||
374 | /** |
||
375 | * Turbo threshold. |
||
376 | * |
||
377 | * @var integer |
||
378 | * @since 2.2 |
||
379 | */ |
||
380 | private $turboThreshold = 1000; |
||
381 | |||
382 | /** |
||
383 | * Visible. |
||
384 | * |
||
385 | * @var boolean |
||
386 | */ |
||
387 | private $visible = true; |
||
388 | |||
389 | /** |
||
390 | * Zone axis. |
||
391 | * |
||
392 | * @var string |
||
393 | * @since 4.1.0 |
||
394 | */ |
||
395 | private $zoneAxis = "y"; |
||
396 | |||
397 | /** |
||
398 | * Zones. |
||
399 | * |
||
400 | * @var array |
||
401 | * @since 4.1.0 |
||
402 | */ |
||
403 | private $zones; |
||
404 | |||
405 | /** |
||
406 | * Constructor. |
||
407 | * |
||
408 | * @param boolean $ignoreDefaultValues Ignore the default values. |
||
409 | */ |
||
410 | public function __construct($ignoreDefaultValues = true) { |
||
415 | |||
416 | /** |
||
417 | * Clear. |
||
418 | * |
||
419 | * @return void |
||
420 | */ |
||
421 | public function clear() { |
||
583 | |||
584 | /** |
||
585 | * Get the allow point select. |
||
586 | * |
||
587 | * @return boolean Returns the allow point select. |
||
588 | */ |
||
589 | public function getAllowPointSelect() { |
||
592 | |||
593 | /** |
||
594 | * Get the animation. |
||
595 | * |
||
596 | * @return boolean Returns the animation. |
||
597 | */ |
||
598 | public function getAnimation() { |
||
601 | |||
602 | /** |
||
603 | * Get the animation limit. |
||
604 | * |
||
605 | * @return integer Returns the animation limit. |
||
606 | */ |
||
607 | public function getAnimationLimit() { |
||
610 | |||
611 | /** |
||
612 | * Get the class name. |
||
613 | * |
||
614 | * @return string Returns the class name. |
||
615 | */ |
||
616 | public function getClassName() { |
||
619 | |||
620 | /** |
||
621 | * Get the color. |
||
622 | * |
||
623 | * @return string Returns the color. |
||
624 | */ |
||
625 | public function getColor() { |
||
628 | |||
629 | /** |
||
630 | * Get the color index. |
||
631 | * |
||
632 | * @return integer Returns the color index. |
||
633 | */ |
||
634 | public function getColorIndex() { |
||
637 | |||
638 | /** |
||
639 | * Get the connect ends. |
||
640 | * |
||
641 | * @return boolean Returns the connect ends. |
||
642 | */ |
||
643 | public function getConnectEnds() { |
||
646 | |||
647 | /** |
||
648 | * Get the connect nulls. |
||
649 | * |
||
650 | * @return boolean Returns the connect nulls. |
||
651 | */ |
||
652 | public function getConnectNulls() { |
||
655 | |||
656 | /** |
||
657 | * Get the crop threshold. |
||
658 | * |
||
659 | * @return integer Returns the crop threshold. |
||
660 | */ |
||
661 | public function getCropThreshold() { |
||
664 | |||
665 | /** |
||
666 | * Get the cursor. |
||
667 | * |
||
668 | * @return string Returns the cursor. |
||
669 | */ |
||
670 | public function getCursor() { |
||
673 | |||
674 | /** |
||
675 | * Get the dash style. |
||
676 | * |
||
677 | * @return string Returns the dash style. |
||
678 | */ |
||
679 | public function getDashStyle() { |
||
682 | |||
683 | /** |
||
684 | * Get the data labels. |
||
685 | * |
||
686 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areaspline\HighchartsDataLabels Returns the data labels. |
||
687 | */ |
||
688 | public function getDataLabels() { |
||
691 | |||
692 | /** |
||
693 | * Get the description. |
||
694 | * |
||
695 | * @return string Returns the description. |
||
696 | */ |
||
697 | public function getDescription() { |
||
700 | |||
701 | /** |
||
702 | * Get the enable mouse tracking. |
||
703 | * |
||
704 | * @return boolean Returns the enable mouse tracking. |
||
705 | */ |
||
706 | public function getEnableMouseTracking() { |
||
709 | |||
710 | /** |
||
711 | * Get the events. |
||
712 | * |
||
713 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areaspline\HighchartsEvents Returns the events. |
||
714 | */ |
||
715 | public function getEvents() { |
||
718 | |||
719 | /** |
||
720 | * Get the expose element to a11y. |
||
721 | * |
||
722 | * @return boolean Returns the expose element to a11y. |
||
723 | */ |
||
724 | public function getExposeElementToA11y() { |
||
727 | |||
728 | /** |
||
729 | * Get the fill color. |
||
730 | * |
||
731 | * @return string Returns the fill color. |
||
732 | */ |
||
733 | public function getFillColor() { |
||
736 | |||
737 | /** |
||
738 | * Get the fill opacity. |
||
739 | * |
||
740 | * @return integer Returns the fill opacity. |
||
741 | */ |
||
742 | public function getFillOpacity() { |
||
745 | |||
746 | /** |
||
747 | * Get the find nearest point by. |
||
748 | * |
||
749 | * @return string Returns the find nearest point by. |
||
750 | */ |
||
751 | public function getFindNearestPointBy() { |
||
754 | |||
755 | /** |
||
756 | * Get the get extremes from all. |
||
757 | * |
||
758 | * @return boolean Returns the get extremes from all. |
||
759 | */ |
||
760 | public function getGetExtremesFromAll() { |
||
763 | |||
764 | /** |
||
765 | * Get the keys. |
||
766 | * |
||
767 | * @return array Returns the keys. |
||
768 | */ |
||
769 | public function getKeys() { |
||
772 | |||
773 | /** |
||
774 | * Get the line color. |
||
775 | * |
||
776 | * @return string Returns the line color. |
||
777 | */ |
||
778 | public function getLineColor() { |
||
781 | |||
782 | /** |
||
783 | * Get the line width. |
||
784 | * |
||
785 | * @return integer Returns the line width. |
||
786 | */ |
||
787 | public function getLineWidth() { |
||
790 | |||
791 | /** |
||
792 | * Get the linecap. |
||
793 | * |
||
794 | * @return string Returns the linecap. |
||
795 | */ |
||
796 | public function getLinecap() { |
||
799 | |||
800 | /** |
||
801 | * Get the linked to. |
||
802 | * |
||
803 | * @return string Returns the linked to. |
||
804 | */ |
||
805 | public function getLinkedTo() { |
||
808 | |||
809 | /** |
||
810 | * Get the marker. |
||
811 | * |
||
812 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areaspline\HighchartsMarker Returns the marker. |
||
813 | */ |
||
814 | public function getMarker() { |
||
817 | |||
818 | /** |
||
819 | * Get the negative color. |
||
820 | * |
||
821 | * @return string Returns the negative color. |
||
822 | */ |
||
823 | public function getNegativeColor() { |
||
826 | |||
827 | /** |
||
828 | * Get the negative fill color. |
||
829 | * |
||
830 | * @return string Returns the negative fill color. |
||
831 | */ |
||
832 | public function getNegativeFillColor() { |
||
835 | |||
836 | /** |
||
837 | * Get the point. |
||
838 | * |
||
839 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areaspline\HighchartsPoint Returns the point. |
||
840 | */ |
||
841 | public function getPoint() { |
||
844 | |||
845 | /** |
||
846 | * Get the point description formatter. |
||
847 | * |
||
848 | * @return string Returns the point description formatter. |
||
849 | */ |
||
850 | public function getPointDescriptionFormatter() { |
||
853 | |||
854 | /** |
||
855 | * Get the point interval. |
||
856 | * |
||
857 | * @return integer Returns the point interval. |
||
858 | */ |
||
859 | public function getPointInterval() { |
||
862 | |||
863 | /** |
||
864 | * Get the point interval unit. |
||
865 | * |
||
866 | * @return string Returns the point interval unit. |
||
867 | */ |
||
868 | public function getPointIntervalUnit() { |
||
871 | |||
872 | /** |
||
873 | * Get the point placement. |
||
874 | * |
||
875 | * @return string|integer Returns the point placement. |
||
876 | */ |
||
877 | public function getPointPlacement() { |
||
880 | |||
881 | /** |
||
882 | * Get the point start. |
||
883 | * |
||
884 | * @return integer Returns the point start. |
||
885 | */ |
||
886 | public function getPointStart() { |
||
889 | |||
890 | /** |
||
891 | * Get the selected. |
||
892 | * |
||
893 | * @return boolean Returns the selected. |
||
894 | */ |
||
895 | public function getSelected() { |
||
898 | |||
899 | /** |
||
900 | * Get the shadow. |
||
901 | * |
||
902 | * @return boolean|array Returns the shadow. |
||
903 | */ |
||
904 | public function getShadow() { |
||
907 | |||
908 | /** |
||
909 | * Get the show checkbox. |
||
910 | * |
||
911 | * @return boolean Returns the show checkbox. |
||
912 | */ |
||
913 | public function getShowCheckbox() { |
||
916 | |||
917 | /** |
||
918 | * Get the show in legend. |
||
919 | * |
||
920 | * @return boolean Returns the show in legend. |
||
921 | */ |
||
922 | public function getShowInLegend() { |
||
925 | |||
926 | /** |
||
927 | * Get the skip keyboard navigation. |
||
928 | * |
||
929 | * @return boolean Returns the skip keyboard navigation. |
||
930 | */ |
||
931 | public function getSkipKeyboardNavigation() { |
||
934 | |||
935 | /** |
||
936 | * Get the soft threshold. |
||
937 | * |
||
938 | * @return boolean Returns the soft threshold. |
||
939 | */ |
||
940 | public function getSoftThreshold() { |
||
943 | |||
944 | /** |
||
945 | * Get the stacking. |
||
946 | * |
||
947 | * @return string Returns the stacking. |
||
948 | */ |
||
949 | public function getStacking() { |
||
952 | |||
953 | /** |
||
954 | * Get the states. |
||
955 | * |
||
956 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areaspline\HighchartsStates Returns the states. |
||
957 | */ |
||
958 | public function getStates() { |
||
961 | |||
962 | /** |
||
963 | * Get the sticky tracking. |
||
964 | * |
||
965 | * @return boolean Returns the sticky tracking. |
||
966 | */ |
||
967 | public function getStickyTracking() { |
||
970 | |||
971 | /** |
||
972 | * Get the threshold. |
||
973 | * |
||
974 | * @return integer Returns the threshold. |
||
975 | */ |
||
976 | public function getThreshold() { |
||
979 | |||
980 | /** |
||
981 | * Get the tooltip. |
||
982 | * |
||
983 | * @return array Returns the tooltip. |
||
984 | */ |
||
985 | public function getTooltip() { |
||
988 | |||
989 | /** |
||
990 | * Get the track by area. |
||
991 | * |
||
992 | * @return boolean Returns the track by area. |
||
993 | */ |
||
994 | public function getTrackByArea() { |
||
997 | |||
998 | /** |
||
999 | * Get the turbo threshold. |
||
1000 | * |
||
1001 | * @return integer Returns the turbo threshold. |
||
1002 | */ |
||
1003 | public function getTurboThreshold() { |
||
1006 | |||
1007 | /** |
||
1008 | * Get the visible. |
||
1009 | * |
||
1010 | * @return boolean Returns the visible. |
||
1011 | */ |
||
1012 | public function getVisible() { |
||
1015 | |||
1016 | /** |
||
1017 | * Get the zone axis. |
||
1018 | * |
||
1019 | * @return string Returns the zone axis. |
||
1020 | */ |
||
1021 | public function getZoneAxis() { |
||
1024 | |||
1025 | /** |
||
1026 | * Get the zones. |
||
1027 | * |
||
1028 | * @return array Returns the zones. |
||
1029 | */ |
||
1030 | public function getZones() { |
||
1033 | |||
1034 | /** |
||
1035 | * Serialize this instance. |
||
1036 | * |
||
1037 | * @return array Returns an array representing this instance. |
||
1038 | */ |
||
1039 | public function jsonSerialize() { |
||
1042 | |||
1043 | /** |
||
1044 | * Create a new data labels. |
||
1045 | * |
||
1046 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areaspline\HighchartsDataLabels Returns the data labels. |
||
1047 | */ |
||
1048 | public function newDataLabels() { |
||
1052 | |||
1053 | /** |
||
1054 | * Create a new events. |
||
1055 | * |
||
1056 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areaspline\HighchartsEvents Returns the events. |
||
1057 | */ |
||
1058 | public function newEvents() { |
||
1062 | |||
1063 | /** |
||
1064 | * Create a new marker. |
||
1065 | * |
||
1066 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areaspline\HighchartsMarker Returns the marker. |
||
1067 | */ |
||
1068 | public function newMarker() { |
||
1072 | |||
1073 | /** |
||
1074 | * Create a new point. |
||
1075 | * |
||
1076 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areaspline\HighchartsPoint Returns the point. |
||
1077 | */ |
||
1078 | public function newPoint() { |
||
1082 | |||
1083 | /** |
||
1084 | * Create a new states. |
||
1085 | * |
||
1086 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areaspline\HighchartsStates Returns the states. |
||
1087 | */ |
||
1088 | public function newStates() { |
||
1092 | |||
1093 | /** |
||
1094 | * Set the allow point select. |
||
1095 | * |
||
1096 | * @param boolean $allowPointSelect The allow point select. |
||
1097 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1098 | */ |
||
1099 | public function setAllowPointSelect($allowPointSelect) { |
||
1103 | |||
1104 | /** |
||
1105 | * Set the animation. |
||
1106 | * |
||
1107 | * @param boolean $animation The animation. |
||
1108 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1109 | */ |
||
1110 | public function setAnimation($animation) { |
||
1114 | |||
1115 | /** |
||
1116 | * Set the animation limit. |
||
1117 | * |
||
1118 | * @param integer $animationLimit The animation limit. |
||
1119 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1120 | */ |
||
1121 | public function setAnimationLimit($animationLimit) { |
||
1125 | |||
1126 | /** |
||
1127 | * Set the class name. |
||
1128 | * |
||
1129 | * @param string $className The class name. |
||
1130 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1131 | */ |
||
1132 | public function setClassName($className) { |
||
1136 | |||
1137 | /** |
||
1138 | * Set the color. |
||
1139 | * |
||
1140 | * @param string $color The color. |
||
1141 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1142 | */ |
||
1143 | public function setColor($color) { |
||
1147 | |||
1148 | /** |
||
1149 | * Set the color index. |
||
1150 | * |
||
1151 | * @param integer $colorIndex The color index. |
||
1152 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1153 | */ |
||
1154 | public function setColorIndex($colorIndex) { |
||
1158 | |||
1159 | /** |
||
1160 | * Set the connect ends. |
||
1161 | * |
||
1162 | * @param boolean $connectEnds The connect ends. |
||
1163 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1164 | */ |
||
1165 | public function setConnectEnds($connectEnds) { |
||
1169 | |||
1170 | /** |
||
1171 | * Set the connect nulls. |
||
1172 | * |
||
1173 | * @param boolean $connectNulls The connect nulls. |
||
1174 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1175 | */ |
||
1176 | public function setConnectNulls($connectNulls) { |
||
1180 | |||
1181 | /** |
||
1182 | * Set the crop threshold. |
||
1183 | * |
||
1184 | * @param integer $cropThreshold The crop threshold. |
||
1185 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1186 | */ |
||
1187 | public function setCropThreshold($cropThreshold) { |
||
1191 | |||
1192 | /** |
||
1193 | * Set the cursor. |
||
1194 | * |
||
1195 | * @param string $cursor The cursor. |
||
1196 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1197 | */ |
||
1198 | public function setCursor($cursor) { |
||
1211 | |||
1212 | /** |
||
1213 | * Set the dash style. |
||
1214 | * |
||
1215 | * @param string $dashStyle The dash style. |
||
1216 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1217 | */ |
||
1218 | public function setDashStyle($dashStyle) { |
||
1236 | |||
1237 | /** |
||
1238 | * Set the data labels. |
||
1239 | * |
||
1240 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areaspline\HighchartsDataLabels $dataLabels The data labels. |
||
1241 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1242 | */ |
||
1243 | public function setDataLabels(\WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areaspline\HighchartsDataLabels $dataLabels = null) { |
||
1247 | |||
1248 | /** |
||
1249 | * Set the description. |
||
1250 | * |
||
1251 | * @param string $description The description. |
||
1252 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1253 | */ |
||
1254 | public function setDescription($description) { |
||
1258 | |||
1259 | /** |
||
1260 | * Set the enable mouse tracking. |
||
1261 | * |
||
1262 | * @param boolean $enableMouseTracking The enable mouse tracking. |
||
1263 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1264 | */ |
||
1265 | public function setEnableMouseTracking($enableMouseTracking) { |
||
1269 | |||
1270 | /** |
||
1271 | * Set the events. |
||
1272 | * |
||
1273 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areaspline\HighchartsEvents $events The events. |
||
1274 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1275 | */ |
||
1276 | public function setEvents(\WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areaspline\HighchartsEvents $events = null) { |
||
1280 | |||
1281 | /** |
||
1282 | * Set the expose element to a11y. |
||
1283 | * |
||
1284 | * @param boolean $exposeElementToA11y The expose element to a11y. |
||
1285 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1286 | */ |
||
1287 | public function setExposeElementToA11y($exposeElementToA11y) { |
||
1291 | |||
1292 | /** |
||
1293 | * Set the fill color. |
||
1294 | * |
||
1295 | * @param string $fillColor The fill color. |
||
1296 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1297 | */ |
||
1298 | public function setFillColor($fillColor) { |
||
1302 | |||
1303 | /** |
||
1304 | * Set the fill opacity. |
||
1305 | * |
||
1306 | * @param integer $fillOpacity The fill opacity. |
||
1307 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1308 | */ |
||
1309 | public function setFillOpacity($fillOpacity) { |
||
1313 | |||
1314 | /** |
||
1315 | * Set the find nearest point by. |
||
1316 | * |
||
1317 | * @param string $findNearestPointBy The find nearest point by. |
||
1318 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1319 | */ |
||
1320 | public function setFindNearestPointBy($findNearestPointBy) { |
||
1329 | |||
1330 | /** |
||
1331 | * Set the get extremes from all. |
||
1332 | * |
||
1333 | * @param boolean $getExtremesFromAll The get extremes from all. |
||
1334 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1335 | */ |
||
1336 | public function setGetExtremesFromAll($getExtremesFromAll) { |
||
1340 | |||
1341 | /** |
||
1342 | * Set the keys. |
||
1343 | * |
||
1344 | * @param array $keys The keys. |
||
1345 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1346 | */ |
||
1347 | public function setKeys(array $keys = null) { |
||
1351 | |||
1352 | /** |
||
1353 | * Set the line color. |
||
1354 | * |
||
1355 | * @param string $lineColor The line color. |
||
1356 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1357 | */ |
||
1358 | public function setLineColor($lineColor) { |
||
1362 | |||
1363 | /** |
||
1364 | * Set the line width. |
||
1365 | * |
||
1366 | * @param integer $lineWidth The line width. |
||
1367 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1368 | */ |
||
1369 | public function setLineWidth($lineWidth) { |
||
1373 | |||
1374 | /** |
||
1375 | * Set the linecap. |
||
1376 | * |
||
1377 | * @param string $linecap The linecap. |
||
1378 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1379 | */ |
||
1380 | public function setLinecap($linecap) { |
||
1389 | |||
1390 | /** |
||
1391 | * Set the linked to. |
||
1392 | * |
||
1393 | * @param string $linkedTo The linked to. |
||
1394 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1395 | */ |
||
1396 | public function setLinkedTo($linkedTo) { |
||
1400 | |||
1401 | /** |
||
1402 | * Set the marker. |
||
1403 | * |
||
1404 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areaspline\HighchartsMarker $marker The marker. |
||
1405 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1406 | */ |
||
1407 | public function setMarker(\WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areaspline\HighchartsMarker $marker = null) { |
||
1411 | |||
1412 | /** |
||
1413 | * Set the negative color. |
||
1414 | * |
||
1415 | * @param string $negativeColor The negative color. |
||
1416 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1417 | */ |
||
1418 | public function setNegativeColor($negativeColor) { |
||
1422 | |||
1423 | /** |
||
1424 | * Set the negative fill color. |
||
1425 | * |
||
1426 | * @param string $negativeFillColor The negative fill color. |
||
1427 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1428 | */ |
||
1429 | public function setNegativeFillColor($negativeFillColor) { |
||
1433 | |||
1434 | /** |
||
1435 | * Set the point. |
||
1436 | * |
||
1437 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areaspline\HighchartsPoint $point The point. |
||
1438 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1439 | */ |
||
1440 | public function setPoint(\WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areaspline\HighchartsPoint $point = null) { |
||
1444 | |||
1445 | /** |
||
1446 | * Set the point description formatter. |
||
1447 | * |
||
1448 | * @param string $pointDescriptionFormatter The point description formatter. |
||
1449 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1450 | */ |
||
1451 | public function setPointDescriptionFormatter($pointDescriptionFormatter) { |
||
1455 | |||
1456 | /** |
||
1457 | * Set the point interval. |
||
1458 | * |
||
1459 | * @param integer $pointInterval The point interval. |
||
1460 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1461 | */ |
||
1462 | public function setPointInterval($pointInterval) { |
||
1466 | |||
1467 | /** |
||
1468 | * Set the point interval unit. |
||
1469 | * |
||
1470 | * @param string $pointIntervalUnit The point interval unit. |
||
1471 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1472 | */ |
||
1473 | public function setPointIntervalUnit($pointIntervalUnit) { |
||
1484 | |||
1485 | /** |
||
1486 | * Set the point placement. |
||
1487 | * |
||
1488 | * @param string|integer $pointPlacement The point placement. |
||
1489 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1490 | */ |
||
1491 | public function setPointPlacement($pointPlacement) { |
||
1501 | |||
1502 | /** |
||
1503 | * Set the point start. |
||
1504 | * |
||
1505 | * @param integer $pointStart The point start. |
||
1506 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1507 | */ |
||
1508 | public function setPointStart($pointStart) { |
||
1512 | |||
1513 | /** |
||
1514 | * Set the selected. |
||
1515 | * |
||
1516 | * @param boolean $selected The selected. |
||
1517 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1518 | */ |
||
1519 | public function setSelected($selected) { |
||
1523 | |||
1524 | /** |
||
1525 | * Set the shadow. |
||
1526 | * |
||
1527 | * @param boolean|array $shadow The shadow. |
||
1528 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1529 | */ |
||
1530 | public function setShadow($shadow) { |
||
1534 | |||
1535 | /** |
||
1536 | * Set the show checkbox. |
||
1537 | * |
||
1538 | * @param boolean $showCheckbox The show checkbox. |
||
1539 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1540 | */ |
||
1541 | public function setShowCheckbox($showCheckbox) { |
||
1545 | |||
1546 | /** |
||
1547 | * Set the show in legend. |
||
1548 | * |
||
1549 | * @param boolean $showInLegend The show in legend. |
||
1550 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1551 | */ |
||
1552 | public function setShowInLegend($showInLegend) { |
||
1556 | |||
1557 | /** |
||
1558 | * Set the skip keyboard navigation. |
||
1559 | * |
||
1560 | * @param boolean $skipKeyboardNavigation The skip keyboard navigation. |
||
1561 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1562 | */ |
||
1563 | public function setSkipKeyboardNavigation($skipKeyboardNavigation) { |
||
1567 | |||
1568 | /** |
||
1569 | * Set the soft threshold. |
||
1570 | * |
||
1571 | * @param boolean $softThreshold The soft threshold. |
||
1572 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1573 | */ |
||
1574 | public function setSoftThreshold($softThreshold) { |
||
1578 | |||
1579 | /** |
||
1580 | * Set the stacking. |
||
1581 | * |
||
1582 | * @param string $stacking The stacking. |
||
1583 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1584 | */ |
||
1585 | public function setStacking($stacking) { |
||
1595 | |||
1596 | /** |
||
1597 | * Set the states. |
||
1598 | * |
||
1599 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areaspline\HighchartsStates $states The states. |
||
1600 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1601 | */ |
||
1602 | public function setStates(\WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areaspline\HighchartsStates $states = null) { |
||
1606 | |||
1607 | /** |
||
1608 | * Set the sticky tracking. |
||
1609 | * |
||
1610 | * @param boolean $stickyTracking The sticky tracking. |
||
1611 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1612 | */ |
||
1613 | public function setStickyTracking($stickyTracking) { |
||
1617 | |||
1618 | /** |
||
1619 | * Set the threshold. |
||
1620 | * |
||
1621 | * @param integer $threshold The threshold. |
||
1622 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1623 | */ |
||
1624 | public function setThreshold($threshold) { |
||
1628 | |||
1629 | /** |
||
1630 | * Set the tooltip. |
||
1631 | * |
||
1632 | * @param array $tooltip The tooltip. |
||
1633 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1634 | */ |
||
1635 | public function setTooltip(array $tooltip = null) { |
||
1639 | |||
1640 | /** |
||
1641 | * Set the track by area. |
||
1642 | * |
||
1643 | * @param boolean $trackByArea The track by area. |
||
1644 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1645 | */ |
||
1646 | public function setTrackByArea($trackByArea) { |
||
1650 | |||
1651 | /** |
||
1652 | * Set the turbo threshold. |
||
1653 | * |
||
1654 | * @param integer $turboThreshold The turbo threshold. |
||
1655 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1656 | */ |
||
1657 | public function setTurboThreshold($turboThreshold) { |
||
1661 | |||
1662 | /** |
||
1663 | * Set the visible. |
||
1664 | * |
||
1665 | * @param boolean $visible The visible. |
||
1666 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1667 | */ |
||
1668 | public function setVisible($visible) { |
||
1672 | |||
1673 | /** |
||
1674 | * Set the zone axis. |
||
1675 | * |
||
1676 | * @param string $zoneAxis The zone axis. |
||
1677 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1678 | */ |
||
1679 | public function setZoneAxis($zoneAxis) { |
||
1683 | |||
1684 | /** |
||
1685 | * Set the zones. |
||
1686 | * |
||
1687 | * @param array $zones The zones. |
||
1688 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreaspline Returns the highcharts areaspline. |
||
1689 | */ |
||
1690 | public function setZones(array $zones = null) { |
||
1694 | |||
1695 | /** |
||
1696 | * Convert into an array representing this instance. |
||
1697 | * |
||
1698 | * @return array Returns an array representing this instance. |
||
1699 | */ |
||
1700 | public function toArray() { |
||
1868 | |||
1869 | } |
||
1870 |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..