Complex classes like HighchartsTreemap 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 HighchartsTreemap, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
25 | final class HighchartsTreemap implements JsonSerializable { |
||
26 | |||
27 | /** |
||
28 | * Allow drill to node. |
||
29 | * |
||
30 | * @var boolean |
||
31 | * @since 4.1.0 |
||
32 | */ |
||
33 | private $allowDrillToNode = false; |
||
34 | |||
35 | /** |
||
36 | * Allow point select. |
||
37 | * |
||
38 | * @var boolean |
||
39 | * @since 1.2.0 |
||
40 | */ |
||
41 | private $allowPointSelect = false; |
||
42 | |||
43 | /** |
||
44 | * Alternate starting direction. |
||
45 | * |
||
46 | * @var boolean |
||
47 | * @since 4.1.0 |
||
48 | */ |
||
49 | private $alternateStartingDirection = false; |
||
50 | |||
51 | /** |
||
52 | * Animation. |
||
53 | * |
||
54 | * @var boolean |
||
55 | */ |
||
56 | private $animation = true; |
||
57 | |||
58 | /** |
||
59 | * Animation limit. |
||
60 | * |
||
61 | * @var integer |
||
62 | */ |
||
63 | private $animationLimit; |
||
64 | |||
65 | /** |
||
66 | * Border color. |
||
67 | * |
||
68 | * @var string |
||
69 | */ |
||
70 | private $borderColor = "#e6e6e6"; |
||
71 | |||
72 | /** |
||
73 | * Border width. |
||
74 | * |
||
75 | * @var integer |
||
76 | */ |
||
77 | private $borderWidth = 1; |
||
78 | |||
79 | /** |
||
80 | * Class name. |
||
81 | * |
||
82 | * @var string |
||
83 | * @since 5.0.0 |
||
84 | */ |
||
85 | private $className; |
||
86 | |||
87 | /** |
||
88 | * Color. |
||
89 | * |
||
90 | * @var string |
||
91 | * @since 4.0 |
||
92 | */ |
||
93 | private $color; |
||
94 | |||
95 | /** |
||
96 | * Color by point. |
||
97 | * |
||
98 | * @var boolean |
||
99 | * @since 2.0 |
||
100 | */ |
||
101 | private $colorByPoint = false; |
||
102 | |||
103 | /** |
||
104 | * Color index. |
||
105 | * |
||
106 | * @var integer |
||
107 | * @since 5.0.0 |
||
108 | */ |
||
109 | private $colorIndex; |
||
110 | |||
111 | /** |
||
112 | * Colors. |
||
113 | * |
||
114 | * @var array |
||
115 | * @since 3.0 |
||
116 | */ |
||
117 | private $colors; |
||
118 | |||
119 | /** |
||
120 | * Crisp. |
||
121 | * |
||
122 | * @var boolean |
||
123 | * @since 5.0.10 |
||
124 | */ |
||
125 | private $crisp = true; |
||
126 | |||
127 | /** |
||
128 | * Crop threshold. |
||
129 | * |
||
130 | * @var integer |
||
131 | * @since 4.1.0 |
||
132 | */ |
||
133 | private $cropThreshold = 300; |
||
134 | |||
135 | /** |
||
136 | * Cursor. |
||
137 | * |
||
138 | * @var string |
||
139 | */ |
||
140 | private $cursor; |
||
141 | |||
142 | /** |
||
143 | * Data. |
||
144 | * |
||
145 | * @var array |
||
146 | */ |
||
147 | private $data; |
||
148 | |||
149 | /** |
||
150 | * Data labels. |
||
151 | * |
||
152 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\Series\Treemap\HighchartsDataLabels |
||
153 | * @since 4.1.0 |
||
154 | */ |
||
155 | private $dataLabels; |
||
156 | |||
157 | /** |
||
158 | * Description. |
||
159 | * |
||
160 | * @var string |
||
161 | * @since 5.0.0 |
||
162 | */ |
||
163 | private $description; |
||
164 | |||
165 | /** |
||
166 | * Enable mouse tracking. |
||
167 | * |
||
168 | * @var boolean |
||
169 | */ |
||
170 | private $enableMouseTracking = true; |
||
171 | |||
172 | /** |
||
173 | * Events. |
||
174 | * |
||
175 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\Series\Treemap\HighchartsEvents |
||
176 | */ |
||
177 | private $events; |
||
178 | |||
179 | /** |
||
180 | * Expose element to a11y. |
||
181 | * |
||
182 | * @var boolean |
||
183 | * @since 5.0.12 |
||
184 | */ |
||
185 | private $exposeElementToA11y; |
||
186 | |||
187 | /** |
||
188 | * Find nearest point by. |
||
189 | * |
||
190 | * @var string |
||
191 | * @since 5.0.10 |
||
192 | */ |
||
193 | private $findNearestPointBy; |
||
194 | |||
195 | /** |
||
196 | * Get extremes from all. |
||
197 | * |
||
198 | * @var boolean |
||
199 | * @since 4.1.6 |
||
200 | */ |
||
201 | private $getExtremesFromAll = false; |
||
202 | |||
203 | /** |
||
204 | * Id. |
||
205 | * |
||
206 | * @var string |
||
207 | * @since 1.2.0 |
||
208 | */ |
||
209 | private $id; |
||
210 | |||
211 | /** |
||
212 | * Ignore hidden point. |
||
213 | * |
||
214 | * @var boolean |
||
215 | * @since 5.0.8 |
||
216 | */ |
||
217 | private $ignoreHiddenPoint = true; |
||
218 | |||
219 | /** |
||
220 | * Index. |
||
221 | * |
||
222 | * @var integer |
||
223 | * @since 2.3.0 |
||
224 | */ |
||
225 | private $index; |
||
226 | |||
227 | /** |
||
228 | * Interact by leaf. |
||
229 | * |
||
230 | * @var boolean |
||
231 | * @since 4.1.2 |
||
232 | */ |
||
233 | private $interactByLeaf; |
||
234 | |||
235 | /** |
||
236 | * Keys. |
||
237 | * |
||
238 | * @var array |
||
239 | * @since 4.1.6 |
||
240 | */ |
||
241 | private $keys; |
||
242 | |||
243 | /** |
||
244 | * Layout algorithm. |
||
245 | * |
||
246 | * @var string |
||
247 | * @since 4.1.0 |
||
248 | */ |
||
249 | private $layoutAlgorithm = "sliceAndDice"; |
||
250 | |||
251 | /** |
||
252 | * Layout starting direction. |
||
253 | * |
||
254 | * @var string |
||
255 | * @since 4.1.0 |
||
256 | */ |
||
257 | private $layoutStartingDirection = "vertical"; |
||
258 | |||
259 | /** |
||
260 | * Legend index. |
||
261 | * |
||
262 | * @var integer |
||
263 | */ |
||
264 | private $legendIndex; |
||
265 | |||
266 | /** |
||
267 | * Level is constant. |
||
268 | * |
||
269 | * @var boolean |
||
270 | * @since 4.1.0 |
||
271 | */ |
||
272 | private $levelIsConstant = true; |
||
273 | |||
274 | /** |
||
275 | * Levels. |
||
276 | * |
||
277 | * @var array |
||
278 | * @since 4.1.0 |
||
279 | */ |
||
280 | private $levels; |
||
281 | |||
282 | /** |
||
283 | * Linked to. |
||
284 | * |
||
285 | * @var string |
||
286 | * @since 3.0 |
||
287 | */ |
||
288 | private $linkedTo; |
||
289 | |||
290 | /** |
||
291 | * Max point width. |
||
292 | * |
||
293 | * @var integer |
||
294 | * @since 4.1.8 |
||
295 | */ |
||
296 | private $maxPointWidth; |
||
297 | |||
298 | /** |
||
299 | * Name. |
||
300 | * |
||
301 | * @var string |
||
302 | */ |
||
303 | private $name; |
||
304 | |||
305 | /** |
||
306 | * Opacity. |
||
307 | * |
||
308 | * @var integer |
||
309 | * @since 4.2.4 |
||
310 | */ |
||
311 | private $opacity = 0.15; |
||
312 | |||
313 | /** |
||
314 | * Point. |
||
315 | * |
||
316 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\Series\Treemap\HighchartsPoint |
||
317 | */ |
||
318 | private $point; |
||
319 | |||
320 | /** |
||
321 | * Point description formatter. |
||
322 | * |
||
323 | * @var string |
||
324 | * @since 5.0.12 |
||
325 | */ |
||
326 | private $pointDescriptionFormatter; |
||
327 | |||
328 | /** |
||
329 | * Selected. |
||
330 | * |
||
331 | * @var boolean |
||
332 | * @since 1.2.0 |
||
333 | */ |
||
334 | private $selected = false; |
||
335 | |||
336 | /** |
||
337 | * Shadow. |
||
338 | * |
||
339 | * @var boolean|array |
||
340 | */ |
||
341 | private $shadow = false; |
||
342 | |||
343 | /** |
||
344 | * Show checkbox. |
||
345 | * |
||
346 | * @var boolean |
||
347 | * @since 1.2.0 |
||
348 | */ |
||
349 | private $showCheckbox = false; |
||
350 | |||
351 | /** |
||
352 | * Show in legend. |
||
353 | * |
||
354 | * @var boolean |
||
355 | */ |
||
356 | private $showInLegend = false; |
||
357 | |||
358 | /** |
||
359 | * Skip keyboard navigation. |
||
360 | * |
||
361 | * @var boolean |
||
362 | * @since 5.0.12 |
||
363 | */ |
||
364 | private $skipKeyboardNavigation; |
||
365 | |||
366 | /** |
||
367 | * Sort index. |
||
368 | * |
||
369 | * @var integer |
||
370 | * @since 4.1.10 |
||
371 | */ |
||
372 | private $sortIndex; |
||
373 | |||
374 | /** |
||
375 | * States. |
||
376 | * |
||
377 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\Series\Treemap\HighchartsStates |
||
378 | */ |
||
379 | private $states; |
||
380 | |||
381 | /** |
||
382 | * Sticky tracking. |
||
383 | * |
||
384 | * @var boolean |
||
385 | * @since 2.0 |
||
386 | */ |
||
387 | private $stickyTracking = true; |
||
388 | |||
389 | /** |
||
390 | * Tooltip. |
||
391 | * |
||
392 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\Series\Treemap\HighchartsTooltip |
||
393 | * @since 4.1.0 |
||
394 | */ |
||
395 | private $tooltip; |
||
396 | |||
397 | /** |
||
398 | * Turbo threshold. |
||
399 | * |
||
400 | * @var integer |
||
401 | * @since 2.2 |
||
402 | */ |
||
403 | private $turboThreshold = 1000; |
||
404 | |||
405 | /** |
||
406 | * Type. |
||
407 | * |
||
408 | * @var string |
||
409 | */ |
||
410 | private $type; |
||
411 | |||
412 | /** |
||
413 | * Visible. |
||
414 | * |
||
415 | * @var boolean |
||
416 | */ |
||
417 | private $visible = true; |
||
418 | |||
419 | /** |
||
420 | * X axis. |
||
421 | * |
||
422 | * @var integer|string |
||
423 | */ |
||
424 | private $xAxis = "0"; |
||
425 | |||
426 | /** |
||
427 | * Y axis. |
||
428 | * |
||
429 | * @var integer|string |
||
430 | */ |
||
431 | private $yAxis = "0"; |
||
432 | |||
433 | /** |
||
434 | * Z index. |
||
435 | * |
||
436 | * @var integer |
||
437 | */ |
||
438 | private $zIndex; |
||
439 | |||
440 | /** |
||
441 | * Zone axis. |
||
442 | * |
||
443 | * @var string |
||
444 | * @since 4.1.0 |
||
445 | */ |
||
446 | private $zoneAxis = "y"; |
||
447 | |||
448 | /** |
||
449 | * Zones. |
||
450 | * |
||
451 | * @var array |
||
452 | * @since 4.1.0 |
||
453 | */ |
||
454 | private $zones; |
||
455 | |||
456 | /** |
||
457 | * Constructor. |
||
458 | * |
||
459 | * @param boolean $ignoreDefaultValues Ignore the default values. |
||
460 | */ |
||
461 | public function __construct($ignoreDefaultValues = true) { |
||
466 | |||
467 | /** |
||
468 | * Clear. |
||
469 | * |
||
470 | * @return void |
||
471 | */ |
||
472 | public function clear() { |
||
652 | |||
653 | /** |
||
654 | * Get the allow drill to node. |
||
655 | * |
||
656 | * @return boolean Returns the allow drill to node. |
||
657 | */ |
||
658 | public function getAllowDrillToNode() { |
||
661 | |||
662 | /** |
||
663 | * Get the allow point select. |
||
664 | * |
||
665 | * @return boolean Returns the allow point select. |
||
666 | */ |
||
667 | public function getAllowPointSelect() { |
||
670 | |||
671 | /** |
||
672 | * Get the alternate starting direction. |
||
673 | * |
||
674 | * @return boolean Returns the alternate starting direction. |
||
675 | */ |
||
676 | public function getAlternateStartingDirection() { |
||
679 | |||
680 | /** |
||
681 | * Get the animation. |
||
682 | * |
||
683 | * @return boolean Returns the animation. |
||
684 | */ |
||
685 | public function getAnimation() { |
||
688 | |||
689 | /** |
||
690 | * Get the animation limit. |
||
691 | * |
||
692 | * @return integer Returns the animation limit. |
||
693 | */ |
||
694 | public function getAnimationLimit() { |
||
697 | |||
698 | /** |
||
699 | * Get the border color. |
||
700 | * |
||
701 | * @return string Returns the border color. |
||
702 | */ |
||
703 | public function getBorderColor() { |
||
706 | |||
707 | /** |
||
708 | * Get the border width. |
||
709 | * |
||
710 | * @return integer Returns the border width. |
||
711 | */ |
||
712 | public function getBorderWidth() { |
||
715 | |||
716 | /** |
||
717 | * Get the class name. |
||
718 | * |
||
719 | * @return string Returns the class name. |
||
720 | */ |
||
721 | public function getClassName() { |
||
724 | |||
725 | /** |
||
726 | * Get the color. |
||
727 | * |
||
728 | * @return string Returns the color. |
||
729 | */ |
||
730 | public function getColor() { |
||
733 | |||
734 | /** |
||
735 | * Get the color by point. |
||
736 | * |
||
737 | * @return boolean Returns the color by point. |
||
738 | */ |
||
739 | public function getColorByPoint() { |
||
742 | |||
743 | /** |
||
744 | * Get the color index. |
||
745 | * |
||
746 | * @return integer Returns the color index. |
||
747 | */ |
||
748 | public function getColorIndex() { |
||
751 | |||
752 | /** |
||
753 | * Get the colors. |
||
754 | * |
||
755 | * @return array Returns the colors. |
||
756 | */ |
||
757 | public function getColors() { |
||
760 | |||
761 | /** |
||
762 | * Get the crisp. |
||
763 | * |
||
764 | * @return boolean Returns the crisp. |
||
765 | */ |
||
766 | public function getCrisp() { |
||
769 | |||
770 | /** |
||
771 | * Get the crop threshold. |
||
772 | * |
||
773 | * @return integer Returns the crop threshold. |
||
774 | */ |
||
775 | public function getCropThreshold() { |
||
778 | |||
779 | /** |
||
780 | * Get the cursor. |
||
781 | * |
||
782 | * @return string Returns the cursor. |
||
783 | */ |
||
784 | public function getCursor() { |
||
787 | |||
788 | /** |
||
789 | * Get the data. |
||
790 | * |
||
791 | * @return array Returns the data. |
||
792 | */ |
||
793 | public function getData() { |
||
796 | |||
797 | /** |
||
798 | * Get the data labels. |
||
799 | * |
||
800 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Treemap\HighchartsDataLabels Returns the data labels. |
||
801 | */ |
||
802 | public function getDataLabels() { |
||
805 | |||
806 | /** |
||
807 | * Get the description. |
||
808 | * |
||
809 | * @return string Returns the description. |
||
810 | */ |
||
811 | public function getDescription() { |
||
814 | |||
815 | /** |
||
816 | * Get the enable mouse tracking. |
||
817 | * |
||
818 | * @return boolean Returns the enable mouse tracking. |
||
819 | */ |
||
820 | public function getEnableMouseTracking() { |
||
823 | |||
824 | /** |
||
825 | * Get the events. |
||
826 | * |
||
827 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Treemap\HighchartsEvents Returns the events. |
||
828 | */ |
||
829 | public function getEvents() { |
||
832 | |||
833 | /** |
||
834 | * Get the expose element to a11y. |
||
835 | * |
||
836 | * @return boolean Returns the expose element to a11y. |
||
837 | */ |
||
838 | public function getExposeElementToA11y() { |
||
841 | |||
842 | /** |
||
843 | * Get the find nearest point by. |
||
844 | * |
||
845 | * @return string Returns the find nearest point by. |
||
846 | */ |
||
847 | public function getFindNearestPointBy() { |
||
850 | |||
851 | /** |
||
852 | * Get the get extremes from all. |
||
853 | * |
||
854 | * @return boolean Returns the get extremes from all. |
||
855 | */ |
||
856 | public function getGetExtremesFromAll() { |
||
859 | |||
860 | /** |
||
861 | * Get the id. |
||
862 | * |
||
863 | * @return string Returns the id. |
||
864 | */ |
||
865 | public function getId() { |
||
868 | |||
869 | /** |
||
870 | * Get the ignore hidden point. |
||
871 | * |
||
872 | * @return boolean Returns the ignore hidden point. |
||
873 | */ |
||
874 | public function getIgnoreHiddenPoint() { |
||
877 | |||
878 | /** |
||
879 | * Get the index. |
||
880 | * |
||
881 | * @return integer Returns the index. |
||
882 | */ |
||
883 | public function getIndex() { |
||
886 | |||
887 | /** |
||
888 | * Get the interact by leaf. |
||
889 | * |
||
890 | * @return boolean Returns the interact by leaf. |
||
891 | */ |
||
892 | public function getInteractByLeaf() { |
||
895 | |||
896 | /** |
||
897 | * Get the keys. |
||
898 | * |
||
899 | * @return array Returns the keys. |
||
900 | */ |
||
901 | public function getKeys() { |
||
904 | |||
905 | /** |
||
906 | * Get the layout algorithm. |
||
907 | * |
||
908 | * @return string Returns the layout algorithm. |
||
909 | */ |
||
910 | public function getLayoutAlgorithm() { |
||
913 | |||
914 | /** |
||
915 | * Get the layout starting direction. |
||
916 | * |
||
917 | * @return string Returns the layout starting direction. |
||
918 | */ |
||
919 | public function getLayoutStartingDirection() { |
||
922 | |||
923 | /** |
||
924 | * Get the legend index. |
||
925 | * |
||
926 | * @return integer Returns the legend index. |
||
927 | */ |
||
928 | public function getLegendIndex() { |
||
931 | |||
932 | /** |
||
933 | * Get the level is constant. |
||
934 | * |
||
935 | * @return boolean Returns the level is constant. |
||
936 | */ |
||
937 | public function getLevelIsConstant() { |
||
940 | |||
941 | /** |
||
942 | * Get the levels. |
||
943 | * |
||
944 | * @return array Returns the levels. |
||
945 | */ |
||
946 | public function getLevels() { |
||
949 | |||
950 | /** |
||
951 | * Get the linked to. |
||
952 | * |
||
953 | * @return string Returns the linked to. |
||
954 | */ |
||
955 | public function getLinkedTo() { |
||
958 | |||
959 | /** |
||
960 | * Get the max point width. |
||
961 | * |
||
962 | * @return integer Returns the max point width. |
||
963 | */ |
||
964 | public function getMaxPointWidth() { |
||
967 | |||
968 | /** |
||
969 | * Get the name. |
||
970 | * |
||
971 | * @return string Returns the name. |
||
972 | */ |
||
973 | public function getName() { |
||
976 | |||
977 | /** |
||
978 | * Get the opacity. |
||
979 | * |
||
980 | * @return integer Returns the opacity. |
||
981 | */ |
||
982 | public function getOpacity() { |
||
985 | |||
986 | /** |
||
987 | * Get the point. |
||
988 | * |
||
989 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Treemap\HighchartsPoint Returns the point. |
||
990 | */ |
||
991 | public function getPoint() { |
||
994 | |||
995 | /** |
||
996 | * Get the point description formatter. |
||
997 | * |
||
998 | * @return string Returns the point description formatter. |
||
999 | */ |
||
1000 | public function getPointDescriptionFormatter() { |
||
1003 | |||
1004 | /** |
||
1005 | * Get the selected. |
||
1006 | * |
||
1007 | * @return boolean Returns the selected. |
||
1008 | */ |
||
1009 | public function getSelected() { |
||
1012 | |||
1013 | /** |
||
1014 | * Get the shadow. |
||
1015 | * |
||
1016 | * @return boolean|array Returns the shadow. |
||
1017 | */ |
||
1018 | public function getShadow() { |
||
1021 | |||
1022 | /** |
||
1023 | * Get the show checkbox. |
||
1024 | * |
||
1025 | * @return boolean Returns the show checkbox. |
||
1026 | */ |
||
1027 | public function getShowCheckbox() { |
||
1030 | |||
1031 | /** |
||
1032 | * Get the show in legend. |
||
1033 | * |
||
1034 | * @return boolean Returns the show in legend. |
||
1035 | */ |
||
1036 | public function getShowInLegend() { |
||
1039 | |||
1040 | /** |
||
1041 | * Get the skip keyboard navigation. |
||
1042 | * |
||
1043 | * @return boolean Returns the skip keyboard navigation. |
||
1044 | */ |
||
1045 | public function getSkipKeyboardNavigation() { |
||
1048 | |||
1049 | /** |
||
1050 | * Get the sort index. |
||
1051 | * |
||
1052 | * @return integer Returns the sort index. |
||
1053 | */ |
||
1054 | public function getSortIndex() { |
||
1057 | |||
1058 | /** |
||
1059 | * Get the states. |
||
1060 | * |
||
1061 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Treemap\HighchartsStates Returns the states. |
||
1062 | */ |
||
1063 | public function getStates() { |
||
1066 | |||
1067 | /** |
||
1068 | * Get the sticky tracking. |
||
1069 | * |
||
1070 | * @return boolean Returns the sticky tracking. |
||
1071 | */ |
||
1072 | public function getStickyTracking() { |
||
1075 | |||
1076 | /** |
||
1077 | * Get the tooltip. |
||
1078 | * |
||
1079 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Treemap\HighchartsTooltip Returns the tooltip. |
||
1080 | */ |
||
1081 | public function getTooltip() { |
||
1084 | |||
1085 | /** |
||
1086 | * Get the turbo threshold. |
||
1087 | * |
||
1088 | * @return integer Returns the turbo threshold. |
||
1089 | */ |
||
1090 | public function getTurboThreshold() { |
||
1093 | |||
1094 | /** |
||
1095 | * Get the type. |
||
1096 | * |
||
1097 | * @return string Returns the type. |
||
1098 | */ |
||
1099 | public function getType() { |
||
1102 | |||
1103 | /** |
||
1104 | * Get the visible. |
||
1105 | * |
||
1106 | * @return boolean Returns the visible. |
||
1107 | */ |
||
1108 | public function getVisible() { |
||
1111 | |||
1112 | /** |
||
1113 | * Get the x axis. |
||
1114 | * |
||
1115 | * @return integer|string Returns the x axis. |
||
1116 | */ |
||
1117 | public function getXAxis() { |
||
1120 | |||
1121 | /** |
||
1122 | * Get the y axis. |
||
1123 | * |
||
1124 | * @return integer|string Returns the y axis. |
||
1125 | */ |
||
1126 | public function getYAxis() { |
||
1129 | |||
1130 | /** |
||
1131 | * Get the z index. |
||
1132 | * |
||
1133 | * @return integer Returns the z index. |
||
1134 | */ |
||
1135 | public function getZIndex() { |
||
1138 | |||
1139 | /** |
||
1140 | * Get the zone axis. |
||
1141 | * |
||
1142 | * @return string Returns the zone axis. |
||
1143 | */ |
||
1144 | public function getZoneAxis() { |
||
1147 | |||
1148 | /** |
||
1149 | * Get the zones. |
||
1150 | * |
||
1151 | * @return array Returns the zones. |
||
1152 | */ |
||
1153 | public function getZones() { |
||
1156 | |||
1157 | /** |
||
1158 | * Serialize this instance. |
||
1159 | * |
||
1160 | * @return array Returns an array representing this instance. |
||
1161 | */ |
||
1162 | public function jsonSerialize() { |
||
1165 | |||
1166 | /** |
||
1167 | * Create a new data labels. |
||
1168 | * |
||
1169 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Treemap\HighchartsDataLabels Returns the data labels. |
||
1170 | */ |
||
1171 | public function newDataLabels() { |
||
1175 | |||
1176 | /** |
||
1177 | * Create a new events. |
||
1178 | * |
||
1179 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Treemap\HighchartsEvents Returns the events. |
||
1180 | */ |
||
1181 | public function newEvents() { |
||
1185 | |||
1186 | /** |
||
1187 | * Create a new point. |
||
1188 | * |
||
1189 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Treemap\HighchartsPoint Returns the point. |
||
1190 | */ |
||
1191 | public function newPoint() { |
||
1195 | |||
1196 | /** |
||
1197 | * Create a new states. |
||
1198 | * |
||
1199 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Treemap\HighchartsStates Returns the states. |
||
1200 | */ |
||
1201 | public function newStates() { |
||
1205 | |||
1206 | /** |
||
1207 | * Create a new tooltip. |
||
1208 | * |
||
1209 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Treemap\HighchartsTooltip Returns the tooltip. |
||
1210 | */ |
||
1211 | public function newTooltip() { |
||
1215 | |||
1216 | /** |
||
1217 | * Set the allow drill to node. |
||
1218 | * |
||
1219 | * @param boolean $allowDrillToNode The allow drill to node. |
||
1220 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1221 | */ |
||
1222 | public function setAllowDrillToNode($allowDrillToNode) { |
||
1231 | |||
1232 | /** |
||
1233 | * Set the allow point select. |
||
1234 | * |
||
1235 | * @param boolean $allowPointSelect The allow point select. |
||
1236 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1237 | */ |
||
1238 | public function setAllowPointSelect($allowPointSelect) { |
||
1242 | |||
1243 | /** |
||
1244 | * Set the alternate starting direction. |
||
1245 | * |
||
1246 | * @param boolean $alternateStartingDirection The alternate starting direction. |
||
1247 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1248 | */ |
||
1249 | public function setAlternateStartingDirection($alternateStartingDirection) { |
||
1253 | |||
1254 | /** |
||
1255 | * Set the animation. |
||
1256 | * |
||
1257 | * @param boolean $animation The animation. |
||
1258 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1259 | */ |
||
1260 | public function setAnimation($animation) { |
||
1264 | |||
1265 | /** |
||
1266 | * Set the animation limit. |
||
1267 | * |
||
1268 | * @param integer $animationLimit The animation limit. |
||
1269 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1270 | */ |
||
1271 | public function setAnimationLimit($animationLimit) { |
||
1275 | |||
1276 | /** |
||
1277 | * Set the border color. |
||
1278 | * |
||
1279 | * @param string $borderColor The border color. |
||
1280 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1281 | */ |
||
1282 | public function setBorderColor($borderColor) { |
||
1286 | |||
1287 | /** |
||
1288 | * Set the border width. |
||
1289 | * |
||
1290 | * @param integer $borderWidth The border width. |
||
1291 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1292 | */ |
||
1293 | public function setBorderWidth($borderWidth) { |
||
1297 | |||
1298 | /** |
||
1299 | * Set the class name. |
||
1300 | * |
||
1301 | * @param string $className The class name. |
||
1302 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1303 | */ |
||
1304 | public function setClassName($className) { |
||
1308 | |||
1309 | /** |
||
1310 | * Set the color. |
||
1311 | * |
||
1312 | * @param string $color The color. |
||
1313 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1314 | */ |
||
1315 | public function setColor($color) { |
||
1319 | |||
1320 | /** |
||
1321 | * Set the color by point. |
||
1322 | * |
||
1323 | * @param boolean $colorByPoint The color by point. |
||
1324 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1325 | */ |
||
1326 | public function setColorByPoint($colorByPoint) { |
||
1330 | |||
1331 | /** |
||
1332 | * Set the color index. |
||
1333 | * |
||
1334 | * @param integer $colorIndex The color index. |
||
1335 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1336 | */ |
||
1337 | public function setColorIndex($colorIndex) { |
||
1341 | |||
1342 | /** |
||
1343 | * Set the colors. |
||
1344 | * |
||
1345 | * @param array $colors The colors. |
||
1346 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1347 | */ |
||
1348 | public function setColors(array $colors = null) { |
||
1352 | |||
1353 | /** |
||
1354 | * Set the crisp. |
||
1355 | * |
||
1356 | * @param boolean $crisp The crisp. |
||
1357 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1358 | */ |
||
1359 | public function setCrisp($crisp) { |
||
1363 | |||
1364 | /** |
||
1365 | * Set the crop threshold. |
||
1366 | * |
||
1367 | * @param integer $cropThreshold The crop threshold. |
||
1368 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1369 | */ |
||
1370 | public function setCropThreshold($cropThreshold) { |
||
1374 | |||
1375 | /** |
||
1376 | * Set the cursor. |
||
1377 | * |
||
1378 | * @param string $cursor The cursor. |
||
1379 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1380 | */ |
||
1381 | public function setCursor($cursor) { |
||
1394 | |||
1395 | /** |
||
1396 | * Set the data. |
||
1397 | * |
||
1398 | * @param array $data The data. |
||
1399 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1400 | */ |
||
1401 | public function setData(array $data = null) { |
||
1405 | |||
1406 | /** |
||
1407 | * Set the data labels. |
||
1408 | * |
||
1409 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\Series\Treemap\HighchartsDataLabels $dataLabels The data labels. |
||
1410 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1411 | */ |
||
1412 | public function setDataLabels(\WBW\Bundle\HighchartsBundle\API\Chart\Series\Treemap\HighchartsDataLabels $dataLabels = null) { |
||
1416 | |||
1417 | /** |
||
1418 | * Set the description. |
||
1419 | * |
||
1420 | * @param string $description The description. |
||
1421 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1422 | */ |
||
1423 | public function setDescription($description) { |
||
1427 | |||
1428 | /** |
||
1429 | * Set the enable mouse tracking. |
||
1430 | * |
||
1431 | * @param boolean $enableMouseTracking The enable mouse tracking. |
||
1432 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1433 | */ |
||
1434 | public function setEnableMouseTracking($enableMouseTracking) { |
||
1438 | |||
1439 | /** |
||
1440 | * Set the events. |
||
1441 | * |
||
1442 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\Series\Treemap\HighchartsEvents $events The events. |
||
1443 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1444 | */ |
||
1445 | public function setEvents(\WBW\Bundle\HighchartsBundle\API\Chart\Series\Treemap\HighchartsEvents $events = null) { |
||
1449 | |||
1450 | /** |
||
1451 | * Set the expose element to a11y. |
||
1452 | * |
||
1453 | * @param boolean $exposeElementToA11y The expose element to a11y. |
||
1454 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1455 | */ |
||
1456 | public function setExposeElementToA11y($exposeElementToA11y) { |
||
1460 | |||
1461 | /** |
||
1462 | * Set the find nearest point by. |
||
1463 | * |
||
1464 | * @param string $findNearestPointBy The find nearest point by. |
||
1465 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1466 | */ |
||
1467 | public function setFindNearestPointBy($findNearestPointBy) { |
||
1476 | |||
1477 | /** |
||
1478 | * Set the get extremes from all. |
||
1479 | * |
||
1480 | * @param boolean $getExtremesFromAll The get extremes from all. |
||
1481 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1482 | */ |
||
1483 | public function setGetExtremesFromAll($getExtremesFromAll) { |
||
1487 | |||
1488 | /** |
||
1489 | * Set the id. |
||
1490 | * |
||
1491 | * @param string $id The id. |
||
1492 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1493 | */ |
||
1494 | public function setId($id) { |
||
1498 | |||
1499 | /** |
||
1500 | * Set the ignore hidden point. |
||
1501 | * |
||
1502 | * @param boolean $ignoreHiddenPoint The ignore hidden point. |
||
1503 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1504 | */ |
||
1505 | public function setIgnoreHiddenPoint($ignoreHiddenPoint) { |
||
1509 | |||
1510 | /** |
||
1511 | * Set the index. |
||
1512 | * |
||
1513 | * @param integer $index The index. |
||
1514 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1515 | */ |
||
1516 | public function setIndex($index) { |
||
1520 | |||
1521 | /** |
||
1522 | * Set the interact by leaf. |
||
1523 | * |
||
1524 | * @param boolean $interactByLeaf The interact by leaf. |
||
1525 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1526 | */ |
||
1527 | public function setInteractByLeaf($interactByLeaf) { |
||
1536 | |||
1537 | /** |
||
1538 | * Set the keys. |
||
1539 | * |
||
1540 | * @param array $keys The keys. |
||
1541 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1542 | */ |
||
1543 | public function setKeys(array $keys = null) { |
||
1547 | |||
1548 | /** |
||
1549 | * Set the layout algorithm. |
||
1550 | * |
||
1551 | * @param string $layoutAlgorithm The layout algorithm. |
||
1552 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1553 | */ |
||
1554 | public function setLayoutAlgorithm($layoutAlgorithm) { |
||
1565 | |||
1566 | /** |
||
1567 | * Set the layout starting direction. |
||
1568 | * |
||
1569 | * @param string $layoutStartingDirection The layout starting direction. |
||
1570 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1571 | */ |
||
1572 | public function setLayoutStartingDirection($layoutStartingDirection) { |
||
1581 | |||
1582 | /** |
||
1583 | * Set the legend index. |
||
1584 | * |
||
1585 | * @param integer $legendIndex The legend index. |
||
1586 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1587 | */ |
||
1588 | public function setLegendIndex($legendIndex) { |
||
1592 | |||
1593 | /** |
||
1594 | * Set the level is constant. |
||
1595 | * |
||
1596 | * @param boolean $levelIsConstant The level is constant. |
||
1597 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1598 | */ |
||
1599 | public function setLevelIsConstant($levelIsConstant) { |
||
1608 | |||
1609 | /** |
||
1610 | * Set the levels. |
||
1611 | * |
||
1612 | * @param array $levels The levels. |
||
1613 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1614 | */ |
||
1615 | public function setLevels(array $levels = null) { |
||
1619 | |||
1620 | /** |
||
1621 | * Set the linked to. |
||
1622 | * |
||
1623 | * @param string $linkedTo The linked to. |
||
1624 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1625 | */ |
||
1626 | public function setLinkedTo($linkedTo) { |
||
1630 | |||
1631 | /** |
||
1632 | * Set the max point width. |
||
1633 | * |
||
1634 | * @param integer $maxPointWidth The max point width. |
||
1635 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1636 | */ |
||
1637 | public function setMaxPointWidth($maxPointWidth) { |
||
1641 | |||
1642 | /** |
||
1643 | * Set the name. |
||
1644 | * |
||
1645 | * @param string $name The name. |
||
1646 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1647 | */ |
||
1648 | public function setName($name) { |
||
1652 | |||
1653 | /** |
||
1654 | * Set the opacity. |
||
1655 | * |
||
1656 | * @param integer $opacity The opacity. |
||
1657 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1658 | */ |
||
1659 | public function setOpacity($opacity) { |
||
1663 | |||
1664 | /** |
||
1665 | * Set the point. |
||
1666 | * |
||
1667 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\Series\Treemap\HighchartsPoint $point The point. |
||
1668 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1669 | */ |
||
1670 | public function setPoint(\WBW\Bundle\HighchartsBundle\API\Chart\Series\Treemap\HighchartsPoint $point = null) { |
||
1674 | |||
1675 | /** |
||
1676 | * Set the point description formatter. |
||
1677 | * |
||
1678 | * @param string $pointDescriptionFormatter The point description formatter. |
||
1679 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1680 | */ |
||
1681 | public function setPointDescriptionFormatter($pointDescriptionFormatter) { |
||
1685 | |||
1686 | /** |
||
1687 | * Set the selected. |
||
1688 | * |
||
1689 | * @param boolean $selected The selected. |
||
1690 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1691 | */ |
||
1692 | public function setSelected($selected) { |
||
1696 | |||
1697 | /** |
||
1698 | * Set the shadow. |
||
1699 | * |
||
1700 | * @param boolean|array $shadow The shadow. |
||
1701 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1702 | */ |
||
1703 | public function setShadow($shadow) { |
||
1707 | |||
1708 | /** |
||
1709 | * Set the show checkbox. |
||
1710 | * |
||
1711 | * @param boolean $showCheckbox The show checkbox. |
||
1712 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1713 | */ |
||
1714 | public function setShowCheckbox($showCheckbox) { |
||
1718 | |||
1719 | /** |
||
1720 | * Set the show in legend. |
||
1721 | * |
||
1722 | * @param boolean $showInLegend The show in legend. |
||
1723 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1724 | */ |
||
1725 | public function setShowInLegend($showInLegend) { |
||
1729 | |||
1730 | /** |
||
1731 | * Set the skip keyboard navigation. |
||
1732 | * |
||
1733 | * @param boolean $skipKeyboardNavigation The skip keyboard navigation. |
||
1734 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1735 | */ |
||
1736 | public function setSkipKeyboardNavigation($skipKeyboardNavigation) { |
||
1740 | |||
1741 | /** |
||
1742 | * Set the sort index. |
||
1743 | * |
||
1744 | * @param integer $sortIndex The sort index. |
||
1745 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1746 | */ |
||
1747 | public function setSortIndex($sortIndex) { |
||
1751 | |||
1752 | /** |
||
1753 | * Set the states. |
||
1754 | * |
||
1755 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\Series\Treemap\HighchartsStates $states The states. |
||
1756 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1757 | */ |
||
1758 | public function setStates(\WBW\Bundle\HighchartsBundle\API\Chart\Series\Treemap\HighchartsStates $states = null) { |
||
1762 | |||
1763 | /** |
||
1764 | * Set the sticky tracking. |
||
1765 | * |
||
1766 | * @param boolean $stickyTracking The sticky tracking. |
||
1767 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1768 | */ |
||
1769 | public function setStickyTracking($stickyTracking) { |
||
1773 | |||
1774 | /** |
||
1775 | * Set the tooltip. |
||
1776 | * |
||
1777 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\Series\Treemap\HighchartsTooltip $tooltip The tooltip. |
||
1778 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1779 | */ |
||
1780 | public function setTooltip(\WBW\Bundle\HighchartsBundle\API\Chart\Series\Treemap\HighchartsTooltip $tooltip = null) { |
||
1784 | |||
1785 | /** |
||
1786 | * Set the turbo threshold. |
||
1787 | * |
||
1788 | * @param integer $turboThreshold The turbo threshold. |
||
1789 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1790 | */ |
||
1791 | public function setTurboThreshold($turboThreshold) { |
||
1795 | |||
1796 | /** |
||
1797 | * Set the type. |
||
1798 | * |
||
1799 | * @param string $type The type. |
||
1800 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1801 | */ |
||
1802 | public function setType($type) { |
||
1826 | |||
1827 | /** |
||
1828 | * Set the visible. |
||
1829 | * |
||
1830 | * @param boolean $visible The visible. |
||
1831 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1832 | */ |
||
1833 | public function setVisible($visible) { |
||
1837 | |||
1838 | /** |
||
1839 | * Set the x axis. |
||
1840 | * |
||
1841 | * @param integer|string $xAxis The x axis. |
||
1842 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1843 | */ |
||
1844 | public function setXAxis($xAxis) { |
||
1848 | |||
1849 | /** |
||
1850 | * Set the y axis. |
||
1851 | * |
||
1852 | * @param integer|string $yAxis The y axis. |
||
1853 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1854 | */ |
||
1855 | public function setYAxis($yAxis) { |
||
1859 | |||
1860 | /** |
||
1861 | * Set the z index. |
||
1862 | * |
||
1863 | * @param integer $zIndex The z index. |
||
1864 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1865 | */ |
||
1866 | public function setZIndex($zIndex) { |
||
1870 | |||
1871 | /** |
||
1872 | * Set the zone axis. |
||
1873 | * |
||
1874 | * @param string $zoneAxis The zone axis. |
||
1875 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1876 | */ |
||
1877 | public function setZoneAxis($zoneAxis) { |
||
1881 | |||
1882 | /** |
||
1883 | * Set the zones. |
||
1884 | * |
||
1885 | * @param array $zones The zones. |
||
1886 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap Returns the highcharts treemap. |
||
1887 | */ |
||
1888 | public function setZones(array $zones = null) { |
||
1892 | |||
1893 | /** |
||
1894 | * Convert into an array representing this instance. |
||
1895 | * |
||
1896 | * @return array Returns an array representing this instance. |
||
1897 | */ |
||
1898 | public function toArray() { |
||
2084 | |||
2085 | } |
||
2086 |
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..