Complex classes like HighchartsAreasplinerange 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 HighchartsAreasplinerange, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
25 | final class HighchartsAreasplinerange 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 nulls. |
||
74 | * |
||
75 | * @var boolean |
||
76 | */ |
||
77 | private $connectNulls = false; |
||
78 | |||
79 | /** |
||
80 | * Crop threshold. |
||
81 | * |
||
82 | * @var integer |
||
83 | * @since 2.2 |
||
84 | */ |
||
85 | private $cropThreshold = 300; |
||
86 | |||
87 | /** |
||
88 | * Cursor. |
||
89 | * |
||
90 | * @var string |
||
91 | */ |
||
92 | private $cursor; |
||
93 | |||
94 | /** |
||
95 | * Dash style. |
||
96 | * |
||
97 | * @var string |
||
98 | * @since 2.1 |
||
99 | */ |
||
100 | private $dashStyle = "Solid"; |
||
101 | |||
102 | /** |
||
103 | * Data labels. |
||
104 | * |
||
105 | * @var array |
||
106 | * @since 2.3.0 |
||
107 | */ |
||
108 | private $dataLabels; |
||
109 | |||
110 | /** |
||
111 | * Description. |
||
112 | * |
||
113 | * @var string |
||
114 | * @since 5.0.0 |
||
115 | */ |
||
116 | private $description; |
||
117 | |||
118 | /** |
||
119 | * Enable mouse tracking. |
||
120 | * |
||
121 | * @var boolean |
||
122 | */ |
||
123 | private $enableMouseTracking = true; |
||
124 | |||
125 | /** |
||
126 | * Events. |
||
127 | * |
||
128 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areasplinerange\HighchartsEvents |
||
129 | */ |
||
130 | private $events; |
||
131 | |||
132 | /** |
||
133 | * Expose element to a11y. |
||
134 | * |
||
135 | * @var boolean |
||
136 | * @since 5.0.12 |
||
137 | */ |
||
138 | private $exposeElementToA11y; |
||
139 | |||
140 | /** |
||
141 | * Fill color. |
||
142 | * |
||
143 | * @var string |
||
144 | */ |
||
145 | private $fillColor; |
||
146 | |||
147 | /** |
||
148 | * Fill opacity. |
||
149 | * |
||
150 | * @var integer |
||
151 | */ |
||
152 | private $fillOpacity = 0.75; |
||
153 | |||
154 | /** |
||
155 | * Find nearest point by. |
||
156 | * |
||
157 | * @var string |
||
158 | * @since 5.0.10 |
||
159 | */ |
||
160 | private $findNearestPointBy; |
||
161 | |||
162 | /** |
||
163 | * Get extremes from all. |
||
164 | * |
||
165 | * @var boolean |
||
166 | * @since 4.1.6 |
||
167 | */ |
||
168 | private $getExtremesFromAll = false; |
||
169 | |||
170 | /** |
||
171 | * Keys. |
||
172 | * |
||
173 | * @var array |
||
174 | * @since 4.1.6 |
||
175 | */ |
||
176 | private $keys; |
||
177 | |||
178 | /** |
||
179 | * Line color. |
||
180 | * |
||
181 | * @var string |
||
182 | */ |
||
183 | private $lineColor; |
||
184 | |||
185 | /** |
||
186 | * Line width. |
||
187 | * |
||
188 | * @var integer |
||
189 | * @since 2.3.0 |
||
190 | */ |
||
191 | private $lineWidth = 1; |
||
192 | |||
193 | /** |
||
194 | * Linecap. |
||
195 | * |
||
196 | * @var string |
||
197 | */ |
||
198 | private $linecap = "round"; |
||
199 | |||
200 | /** |
||
201 | * Linked to. |
||
202 | * |
||
203 | * @var string |
||
204 | * @since 3.0 |
||
205 | */ |
||
206 | private $linkedTo; |
||
207 | |||
208 | /** |
||
209 | * Negative color. |
||
210 | * |
||
211 | * @var string |
||
212 | * @since 3.0 |
||
213 | */ |
||
214 | private $negativeColor; |
||
215 | |||
216 | /** |
||
217 | * Negative fill color. |
||
218 | * |
||
219 | * @var string |
||
220 | * @since 3.0 |
||
221 | */ |
||
222 | private $negativeFillColor; |
||
223 | |||
224 | /** |
||
225 | * Point. |
||
226 | * |
||
227 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areasplinerange\HighchartsPoint |
||
228 | */ |
||
229 | private $point; |
||
230 | |||
231 | /** |
||
232 | * Point description formatter. |
||
233 | * |
||
234 | * @var string |
||
235 | * @since 5.0.12 |
||
236 | */ |
||
237 | private $pointDescriptionFormatter; |
||
238 | |||
239 | /** |
||
240 | * Point interval. |
||
241 | * |
||
242 | * @var integer |
||
243 | */ |
||
244 | private $pointInterval = 1; |
||
245 | |||
246 | /** |
||
247 | * Point interval unit. |
||
248 | * |
||
249 | * @var string |
||
250 | * @since 4.1.0 |
||
251 | */ |
||
252 | private $pointIntervalUnit; |
||
253 | |||
254 | /** |
||
255 | * Point placement. |
||
256 | * |
||
257 | * @var string|integer |
||
258 | * @since 2.3.0 |
||
259 | */ |
||
260 | private $pointPlacement; |
||
261 | |||
262 | /** |
||
263 | * Point start. |
||
264 | * |
||
265 | * @var integer |
||
266 | */ |
||
267 | private $pointStart = 0; |
||
268 | |||
269 | /** |
||
270 | * Selected. |
||
271 | * |
||
272 | * @var boolean |
||
273 | * @since 1.2.0 |
||
274 | */ |
||
275 | private $selected = false; |
||
276 | |||
277 | /** |
||
278 | * Shadow. |
||
279 | * |
||
280 | * @var boolean|array |
||
281 | */ |
||
282 | private $shadow = false; |
||
283 | |||
284 | /** |
||
285 | * Show checkbox. |
||
286 | * |
||
287 | * @var boolean |
||
288 | * @since 1.2.0 |
||
289 | */ |
||
290 | private $showCheckbox = false; |
||
291 | |||
292 | /** |
||
293 | * Show in legend. |
||
294 | * |
||
295 | * @var boolean |
||
296 | */ |
||
297 | private $showInLegend = true; |
||
298 | |||
299 | /** |
||
300 | * Skip keyboard navigation. |
||
301 | * |
||
302 | * @var boolean |
||
303 | * @since 5.0.12 |
||
304 | */ |
||
305 | private $skipKeyboardNavigation; |
||
306 | |||
307 | /** |
||
308 | * States. |
||
309 | * |
||
310 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areasplinerange\HighchartsStates |
||
311 | */ |
||
312 | private $states; |
||
313 | |||
314 | /** |
||
315 | * Sticky tracking. |
||
316 | * |
||
317 | * @var boolean |
||
318 | * @since 2.0 |
||
319 | */ |
||
320 | private $stickyTracking = true; |
||
321 | |||
322 | /** |
||
323 | * Tooltip. |
||
324 | * |
||
325 | * @var array |
||
326 | * @since 2.3 |
||
327 | */ |
||
328 | private $tooltip; |
||
329 | |||
330 | /** |
||
331 | * Track by area. |
||
332 | * |
||
333 | * @var boolean |
||
334 | * @since 2.3.0 |
||
335 | */ |
||
336 | private $trackByArea = true; |
||
337 | |||
338 | /** |
||
339 | * Turbo threshold. |
||
340 | * |
||
341 | * @var integer |
||
342 | * @since 2.2 |
||
343 | */ |
||
344 | private $turboThreshold = 1000; |
||
345 | |||
346 | /** |
||
347 | * Visible. |
||
348 | * |
||
349 | * @var boolean |
||
350 | */ |
||
351 | private $visible = true; |
||
352 | |||
353 | /** |
||
354 | * Zone axis. |
||
355 | * |
||
356 | * @var string |
||
357 | * @since 4.1.0 |
||
358 | */ |
||
359 | private $zoneAxis = "y"; |
||
360 | |||
361 | /** |
||
362 | * Zones. |
||
363 | * |
||
364 | * @var array |
||
365 | * @since 4.1.0 |
||
366 | */ |
||
367 | private $zones; |
||
368 | |||
369 | /** |
||
370 | * Constructor. |
||
371 | * |
||
372 | * @param boolean $ignoreDefaultValues Ignore the default values. |
||
373 | */ |
||
374 | public function __construct($ignoreDefaultValues = true) { |
||
379 | |||
380 | /** |
||
381 | * Clear. |
||
382 | * |
||
383 | * @return void |
||
384 | */ |
||
385 | public function clear() { |
||
528 | |||
529 | /** |
||
530 | * Get the allow point select. |
||
531 | * |
||
532 | * @return boolean Returns the allow point select. |
||
533 | */ |
||
534 | public function getAllowPointSelect() { |
||
537 | |||
538 | /** |
||
539 | * Get the animation. |
||
540 | * |
||
541 | * @return boolean Returns the animation. |
||
542 | */ |
||
543 | public function getAnimation() { |
||
546 | |||
547 | /** |
||
548 | * Get the animation limit. |
||
549 | * |
||
550 | * @return integer Returns the animation limit. |
||
551 | */ |
||
552 | public function getAnimationLimit() { |
||
555 | |||
556 | /** |
||
557 | * Get the class name. |
||
558 | * |
||
559 | * @return string Returns the class name. |
||
560 | */ |
||
561 | public function getClassName() { |
||
564 | |||
565 | /** |
||
566 | * Get the color. |
||
567 | * |
||
568 | * @return string Returns the color. |
||
569 | */ |
||
570 | public function getColor() { |
||
573 | |||
574 | /** |
||
575 | * Get the color index. |
||
576 | * |
||
577 | * @return integer Returns the color index. |
||
578 | */ |
||
579 | public function getColorIndex() { |
||
582 | |||
583 | /** |
||
584 | * Get the connect nulls. |
||
585 | * |
||
586 | * @return boolean Returns the connect nulls. |
||
587 | */ |
||
588 | public function getConnectNulls() { |
||
591 | |||
592 | /** |
||
593 | * Get the crop threshold. |
||
594 | * |
||
595 | * @return integer Returns the crop threshold. |
||
596 | */ |
||
597 | public function getCropThreshold() { |
||
600 | |||
601 | /** |
||
602 | * Get the cursor. |
||
603 | * |
||
604 | * @return string Returns the cursor. |
||
605 | */ |
||
606 | public function getCursor() { |
||
609 | |||
610 | /** |
||
611 | * Get the dash style. |
||
612 | * |
||
613 | * @return string Returns the dash style. |
||
614 | */ |
||
615 | public function getDashStyle() { |
||
618 | |||
619 | /** |
||
620 | * Get the data labels. |
||
621 | * |
||
622 | * @return array Returns the data labels. |
||
623 | */ |
||
624 | public function getDataLabels() { |
||
627 | |||
628 | /** |
||
629 | * Get the description. |
||
630 | * |
||
631 | * @return string Returns the description. |
||
632 | */ |
||
633 | public function getDescription() { |
||
636 | |||
637 | /** |
||
638 | * Get the enable mouse tracking. |
||
639 | * |
||
640 | * @return boolean Returns the enable mouse tracking. |
||
641 | */ |
||
642 | public function getEnableMouseTracking() { |
||
645 | |||
646 | /** |
||
647 | * Get the events. |
||
648 | * |
||
649 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areasplinerange\HighchartsEvents Returns the events. |
||
650 | */ |
||
651 | public function getEvents() { |
||
654 | |||
655 | /** |
||
656 | * Get the expose element to a11y. |
||
657 | * |
||
658 | * @return boolean Returns the expose element to a11y. |
||
659 | */ |
||
660 | public function getExposeElementToA11y() { |
||
663 | |||
664 | /** |
||
665 | * Get the fill color. |
||
666 | * |
||
667 | * @return string Returns the fill color. |
||
668 | */ |
||
669 | public function getFillColor() { |
||
672 | |||
673 | /** |
||
674 | * Get the fill opacity. |
||
675 | * |
||
676 | * @return integer Returns the fill opacity. |
||
677 | */ |
||
678 | public function getFillOpacity() { |
||
681 | |||
682 | /** |
||
683 | * Get the find nearest point by. |
||
684 | * |
||
685 | * @return string Returns the find nearest point by. |
||
686 | */ |
||
687 | public function getFindNearestPointBy() { |
||
690 | |||
691 | /** |
||
692 | * Get the get extremes from all. |
||
693 | * |
||
694 | * @return boolean Returns the get extremes from all. |
||
695 | */ |
||
696 | public function getGetExtremesFromAll() { |
||
699 | |||
700 | /** |
||
701 | * Get the keys. |
||
702 | * |
||
703 | * @return array Returns the keys. |
||
704 | */ |
||
705 | public function getKeys() { |
||
708 | |||
709 | /** |
||
710 | * Get the line color. |
||
711 | * |
||
712 | * @return string Returns the line color. |
||
713 | */ |
||
714 | public function getLineColor() { |
||
717 | |||
718 | /** |
||
719 | * Get the line width. |
||
720 | * |
||
721 | * @return integer Returns the line width. |
||
722 | */ |
||
723 | public function getLineWidth() { |
||
726 | |||
727 | /** |
||
728 | * Get the linecap. |
||
729 | * |
||
730 | * @return string Returns the linecap. |
||
731 | */ |
||
732 | public function getLinecap() { |
||
735 | |||
736 | /** |
||
737 | * Get the linked to. |
||
738 | * |
||
739 | * @return string Returns the linked to. |
||
740 | */ |
||
741 | public function getLinkedTo() { |
||
744 | |||
745 | /** |
||
746 | * Get the negative color. |
||
747 | * |
||
748 | * @return string Returns the negative color. |
||
749 | */ |
||
750 | public function getNegativeColor() { |
||
753 | |||
754 | /** |
||
755 | * Get the negative fill color. |
||
756 | * |
||
757 | * @return string Returns the negative fill color. |
||
758 | */ |
||
759 | public function getNegativeFillColor() { |
||
762 | |||
763 | /** |
||
764 | * Get the point. |
||
765 | * |
||
766 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areasplinerange\HighchartsPoint Returns the point. |
||
767 | */ |
||
768 | public function getPoint() { |
||
771 | |||
772 | /** |
||
773 | * Get the point description formatter. |
||
774 | * |
||
775 | * @return string Returns the point description formatter. |
||
776 | */ |
||
777 | public function getPointDescriptionFormatter() { |
||
780 | |||
781 | /** |
||
782 | * Get the point interval. |
||
783 | * |
||
784 | * @return integer Returns the point interval. |
||
785 | */ |
||
786 | public function getPointInterval() { |
||
789 | |||
790 | /** |
||
791 | * Get the point interval unit. |
||
792 | * |
||
793 | * @return string Returns the point interval unit. |
||
794 | */ |
||
795 | public function getPointIntervalUnit() { |
||
798 | |||
799 | /** |
||
800 | * Get the point placement. |
||
801 | * |
||
802 | * @return string|integer Returns the point placement. |
||
803 | */ |
||
804 | public function getPointPlacement() { |
||
807 | |||
808 | /** |
||
809 | * Get the point start. |
||
810 | * |
||
811 | * @return integer Returns the point start. |
||
812 | */ |
||
813 | public function getPointStart() { |
||
816 | |||
817 | /** |
||
818 | * Get the selected. |
||
819 | * |
||
820 | * @return boolean Returns the selected. |
||
821 | */ |
||
822 | public function getSelected() { |
||
825 | |||
826 | /** |
||
827 | * Get the shadow. |
||
828 | * |
||
829 | * @return boolean|array Returns the shadow. |
||
830 | */ |
||
831 | public function getShadow() { |
||
834 | |||
835 | /** |
||
836 | * Get the show checkbox. |
||
837 | * |
||
838 | * @return boolean Returns the show checkbox. |
||
839 | */ |
||
840 | public function getShowCheckbox() { |
||
843 | |||
844 | /** |
||
845 | * Get the show in legend. |
||
846 | * |
||
847 | * @return boolean Returns the show in legend. |
||
848 | */ |
||
849 | public function getShowInLegend() { |
||
852 | |||
853 | /** |
||
854 | * Get the skip keyboard navigation. |
||
855 | * |
||
856 | * @return boolean Returns the skip keyboard navigation. |
||
857 | */ |
||
858 | public function getSkipKeyboardNavigation() { |
||
861 | |||
862 | /** |
||
863 | * Get the states. |
||
864 | * |
||
865 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areasplinerange\HighchartsStates Returns the states. |
||
866 | */ |
||
867 | public function getStates() { |
||
870 | |||
871 | /** |
||
872 | * Get the sticky tracking. |
||
873 | * |
||
874 | * @return boolean Returns the sticky tracking. |
||
875 | */ |
||
876 | public function getStickyTracking() { |
||
879 | |||
880 | /** |
||
881 | * Get the tooltip. |
||
882 | * |
||
883 | * @return array Returns the tooltip. |
||
884 | */ |
||
885 | public function getTooltip() { |
||
888 | |||
889 | /** |
||
890 | * Get the track by area. |
||
891 | * |
||
892 | * @return boolean Returns the track by area. |
||
893 | */ |
||
894 | public function getTrackByArea() { |
||
897 | |||
898 | /** |
||
899 | * Get the turbo threshold. |
||
900 | * |
||
901 | * @return integer Returns the turbo threshold. |
||
902 | */ |
||
903 | public function getTurboThreshold() { |
||
906 | |||
907 | /** |
||
908 | * Get the visible. |
||
909 | * |
||
910 | * @return boolean Returns the visible. |
||
911 | */ |
||
912 | public function getVisible() { |
||
915 | |||
916 | /** |
||
917 | * Get the zone axis. |
||
918 | * |
||
919 | * @return string Returns the zone axis. |
||
920 | */ |
||
921 | public function getZoneAxis() { |
||
924 | |||
925 | /** |
||
926 | * Get the zones. |
||
927 | * |
||
928 | * @return array Returns the zones. |
||
929 | */ |
||
930 | public function getZones() { |
||
933 | |||
934 | /** |
||
935 | * Serialize this instance. |
||
936 | * |
||
937 | * @return array Returns an array representing this instance. |
||
938 | */ |
||
939 | public function jsonSerialize() { |
||
942 | |||
943 | /** |
||
944 | * Create a new events. |
||
945 | * |
||
946 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areasplinerange\HighchartsEvents Returns the events. |
||
947 | */ |
||
948 | public function newEvents() { |
||
952 | |||
953 | /** |
||
954 | * Create a new point. |
||
955 | * |
||
956 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areasplinerange\HighchartsPoint Returns the point. |
||
957 | */ |
||
958 | public function newPoint() { |
||
962 | |||
963 | /** |
||
964 | * Create a new states. |
||
965 | * |
||
966 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areasplinerange\HighchartsStates Returns the states. |
||
967 | */ |
||
968 | public function newStates() { |
||
972 | |||
973 | /** |
||
974 | * Set the allow point select. |
||
975 | * |
||
976 | * @param boolean $allowPointSelect The allow point select. |
||
977 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
978 | */ |
||
979 | public function setAllowPointSelect($allowPointSelect) { |
||
983 | |||
984 | /** |
||
985 | * Set the animation. |
||
986 | * |
||
987 | * @param boolean $animation The animation. |
||
988 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
989 | */ |
||
990 | public function setAnimation($animation) { |
||
994 | |||
995 | /** |
||
996 | * Set the animation limit. |
||
997 | * |
||
998 | * @param integer $animationLimit The animation limit. |
||
999 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1000 | */ |
||
1001 | public function setAnimationLimit($animationLimit) { |
||
1005 | |||
1006 | /** |
||
1007 | * Set the class name. |
||
1008 | * |
||
1009 | * @param string $className The class name. |
||
1010 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1011 | */ |
||
1012 | public function setClassName($className) { |
||
1016 | |||
1017 | /** |
||
1018 | * Set the color. |
||
1019 | * |
||
1020 | * @param string $color The color. |
||
1021 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1022 | */ |
||
1023 | public function setColor($color) { |
||
1027 | |||
1028 | /** |
||
1029 | * Set the color index. |
||
1030 | * |
||
1031 | * @param integer $colorIndex The color index. |
||
1032 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1033 | */ |
||
1034 | public function setColorIndex($colorIndex) { |
||
1038 | |||
1039 | /** |
||
1040 | * Set the connect nulls. |
||
1041 | * |
||
1042 | * @param boolean $connectNulls The connect nulls. |
||
1043 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1044 | */ |
||
1045 | public function setConnectNulls($connectNulls) { |
||
1049 | |||
1050 | /** |
||
1051 | * Set the crop threshold. |
||
1052 | * |
||
1053 | * @param integer $cropThreshold The crop threshold. |
||
1054 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1055 | */ |
||
1056 | public function setCropThreshold($cropThreshold) { |
||
1060 | |||
1061 | /** |
||
1062 | * Set the cursor. |
||
1063 | * |
||
1064 | * @param string $cursor The cursor. |
||
1065 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1066 | */ |
||
1067 | public function setCursor($cursor) { |
||
1080 | |||
1081 | /** |
||
1082 | * Set the dash style. |
||
1083 | * |
||
1084 | * @param string $dashStyle The dash style. |
||
1085 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1086 | */ |
||
1087 | public function setDashStyle($dashStyle) { |
||
1105 | |||
1106 | /** |
||
1107 | * Set the data labels. |
||
1108 | * |
||
1109 | * @param array $dataLabels The data labels. |
||
1110 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1111 | */ |
||
1112 | public function setDataLabels(array $dataLabels = null) { |
||
1116 | |||
1117 | /** |
||
1118 | * Set the description. |
||
1119 | * |
||
1120 | * @param string $description The description. |
||
1121 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1122 | */ |
||
1123 | public function setDescription($description) { |
||
1127 | |||
1128 | /** |
||
1129 | * Set the enable mouse tracking. |
||
1130 | * |
||
1131 | * @param boolean $enableMouseTracking The enable mouse tracking. |
||
1132 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1133 | */ |
||
1134 | public function setEnableMouseTracking($enableMouseTracking) { |
||
1138 | |||
1139 | /** |
||
1140 | * Set the events. |
||
1141 | * |
||
1142 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areasplinerange\HighchartsEvents $events The events. |
||
1143 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1144 | */ |
||
1145 | public function setEvents(\WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areasplinerange\HighchartsEvents $events = null) { |
||
1149 | |||
1150 | /** |
||
1151 | * Set the expose element to a11y. |
||
1152 | * |
||
1153 | * @param boolean $exposeElementToA11y The expose element to a11y. |
||
1154 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1155 | */ |
||
1156 | public function setExposeElementToA11y($exposeElementToA11y) { |
||
1160 | |||
1161 | /** |
||
1162 | * Set the fill color. |
||
1163 | * |
||
1164 | * @param string $fillColor The fill color. |
||
1165 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1166 | */ |
||
1167 | public function setFillColor($fillColor) { |
||
1171 | |||
1172 | /** |
||
1173 | * Set the fill opacity. |
||
1174 | * |
||
1175 | * @param integer $fillOpacity The fill opacity. |
||
1176 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1177 | */ |
||
1178 | public function setFillOpacity($fillOpacity) { |
||
1182 | |||
1183 | /** |
||
1184 | * Set the find nearest point by. |
||
1185 | * |
||
1186 | * @param string $findNearestPointBy The find nearest point by. |
||
1187 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1188 | */ |
||
1189 | public function setFindNearestPointBy($findNearestPointBy) { |
||
1198 | |||
1199 | /** |
||
1200 | * Set the get extremes from all. |
||
1201 | * |
||
1202 | * @param boolean $getExtremesFromAll The get extremes from all. |
||
1203 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1204 | */ |
||
1205 | public function setGetExtremesFromAll($getExtremesFromAll) { |
||
1209 | |||
1210 | /** |
||
1211 | * Set the keys. |
||
1212 | * |
||
1213 | * @param array $keys The keys. |
||
1214 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1215 | */ |
||
1216 | public function setKeys(array $keys = null) { |
||
1220 | |||
1221 | /** |
||
1222 | * Set the line color. |
||
1223 | * |
||
1224 | * @param string $lineColor The line color. |
||
1225 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1226 | */ |
||
1227 | public function setLineColor($lineColor) { |
||
1231 | |||
1232 | /** |
||
1233 | * Set the line width. |
||
1234 | * |
||
1235 | * @param integer $lineWidth The line width. |
||
1236 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1237 | */ |
||
1238 | public function setLineWidth($lineWidth) { |
||
1242 | |||
1243 | /** |
||
1244 | * Set the linecap. |
||
1245 | * |
||
1246 | * @param string $linecap The linecap. |
||
1247 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1248 | */ |
||
1249 | public function setLinecap($linecap) { |
||
1258 | |||
1259 | /** |
||
1260 | * Set the linked to. |
||
1261 | * |
||
1262 | * @param string $linkedTo The linked to. |
||
1263 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1264 | */ |
||
1265 | public function setLinkedTo($linkedTo) { |
||
1269 | |||
1270 | /** |
||
1271 | * Set the negative color. |
||
1272 | * |
||
1273 | * @param string $negativeColor The negative color. |
||
1274 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1275 | */ |
||
1276 | public function setNegativeColor($negativeColor) { |
||
1280 | |||
1281 | /** |
||
1282 | * Set the negative fill color. |
||
1283 | * |
||
1284 | * @param string $negativeFillColor The negative fill color. |
||
1285 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1286 | */ |
||
1287 | public function setNegativeFillColor($negativeFillColor) { |
||
1291 | |||
1292 | /** |
||
1293 | * Set the point. |
||
1294 | * |
||
1295 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areasplinerange\HighchartsPoint $point The point. |
||
1296 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1297 | */ |
||
1298 | public function setPoint(\WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areasplinerange\HighchartsPoint $point = null) { |
||
1302 | |||
1303 | /** |
||
1304 | * Set the point description formatter. |
||
1305 | * |
||
1306 | * @param string $pointDescriptionFormatter The point description formatter. |
||
1307 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1308 | */ |
||
1309 | public function setPointDescriptionFormatter($pointDescriptionFormatter) { |
||
1313 | |||
1314 | /** |
||
1315 | * Set the point interval. |
||
1316 | * |
||
1317 | * @param integer $pointInterval The point interval. |
||
1318 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1319 | */ |
||
1320 | public function setPointInterval($pointInterval) { |
||
1324 | |||
1325 | /** |
||
1326 | * Set the point interval unit. |
||
1327 | * |
||
1328 | * @param string $pointIntervalUnit The point interval unit. |
||
1329 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1330 | */ |
||
1331 | public function setPointIntervalUnit($pointIntervalUnit) { |
||
1342 | |||
1343 | /** |
||
1344 | * Set the point placement. |
||
1345 | * |
||
1346 | * @param string|integer $pointPlacement The point placement. |
||
1347 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1348 | */ |
||
1349 | public function setPointPlacement($pointPlacement) { |
||
1359 | |||
1360 | /** |
||
1361 | * Set the point start. |
||
1362 | * |
||
1363 | * @param integer $pointStart The point start. |
||
1364 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1365 | */ |
||
1366 | public function setPointStart($pointStart) { |
||
1370 | |||
1371 | /** |
||
1372 | * Set the selected. |
||
1373 | * |
||
1374 | * @param boolean $selected The selected. |
||
1375 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1376 | */ |
||
1377 | public function setSelected($selected) { |
||
1381 | |||
1382 | /** |
||
1383 | * Set the shadow. |
||
1384 | * |
||
1385 | * @param boolean|array $shadow The shadow. |
||
1386 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1387 | */ |
||
1388 | public function setShadow($shadow) { |
||
1392 | |||
1393 | /** |
||
1394 | * Set the show checkbox. |
||
1395 | * |
||
1396 | * @param boolean $showCheckbox The show checkbox. |
||
1397 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1398 | */ |
||
1399 | public function setShowCheckbox($showCheckbox) { |
||
1403 | |||
1404 | /** |
||
1405 | * Set the show in legend. |
||
1406 | * |
||
1407 | * @param boolean $showInLegend The show in legend. |
||
1408 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1409 | */ |
||
1410 | public function setShowInLegend($showInLegend) { |
||
1414 | |||
1415 | /** |
||
1416 | * Set the skip keyboard navigation. |
||
1417 | * |
||
1418 | * @param boolean $skipKeyboardNavigation The skip keyboard navigation. |
||
1419 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1420 | */ |
||
1421 | public function setSkipKeyboardNavigation($skipKeyboardNavigation) { |
||
1425 | |||
1426 | /** |
||
1427 | * Set the states. |
||
1428 | * |
||
1429 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areasplinerange\HighchartsStates $states The states. |
||
1430 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1431 | */ |
||
1432 | public function setStates(\WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Areasplinerange\HighchartsStates $states = null) { |
||
1436 | |||
1437 | /** |
||
1438 | * Set the sticky tracking. |
||
1439 | * |
||
1440 | * @param boolean $stickyTracking The sticky tracking. |
||
1441 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1442 | */ |
||
1443 | public function setStickyTracking($stickyTracking) { |
||
1447 | |||
1448 | /** |
||
1449 | * Set the tooltip. |
||
1450 | * |
||
1451 | * @param array $tooltip The tooltip. |
||
1452 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1453 | */ |
||
1454 | public function setTooltip(array $tooltip = null) { |
||
1458 | |||
1459 | /** |
||
1460 | * Set the track by area. |
||
1461 | * |
||
1462 | * @param boolean $trackByArea The track by area. |
||
1463 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1464 | */ |
||
1465 | public function setTrackByArea($trackByArea) { |
||
1469 | |||
1470 | /** |
||
1471 | * Set the turbo threshold. |
||
1472 | * |
||
1473 | * @param integer $turboThreshold The turbo threshold. |
||
1474 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1475 | */ |
||
1476 | public function setTurboThreshold($turboThreshold) { |
||
1480 | |||
1481 | /** |
||
1482 | * Set the visible. |
||
1483 | * |
||
1484 | * @param boolean $visible The visible. |
||
1485 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1486 | */ |
||
1487 | public function setVisible($visible) { |
||
1491 | |||
1492 | /** |
||
1493 | * Set the zone axis. |
||
1494 | * |
||
1495 | * @param string $zoneAxis The zone axis. |
||
1496 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1497 | */ |
||
1498 | public function setZoneAxis($zoneAxis) { |
||
1502 | |||
1503 | /** |
||
1504 | * Set the zones. |
||
1505 | * |
||
1506 | * @param array $zones The zones. |
||
1507 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsAreasplinerange Returns the highcharts areasplinerange. |
||
1508 | */ |
||
1509 | public function setZones(array $zones = null) { |
||
1513 | |||
1514 | /** |
||
1515 | * Convert into an array representing this instance. |
||
1516 | * |
||
1517 | * @return array Returns an array representing this instance. |
||
1518 | */ |
||
1519 | public function toArray() { |
||
1668 | |||
1669 | } |
||
1670 |
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..