Complex classes like HighchartsWaterfall 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 HighchartsWaterfall, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
25 | final class HighchartsWaterfall 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 | * Border color. |
||
51 | * |
||
52 | * @var string |
||
53 | * @since 3.0 |
||
54 | */ |
||
55 | private $borderColor = "#333333"; |
||
56 | |||
57 | /** |
||
58 | * Border radius. |
||
59 | * |
||
60 | * @var integer |
||
61 | */ |
||
62 | private $borderRadius = 0; |
||
63 | |||
64 | /** |
||
65 | * Border width. |
||
66 | * |
||
67 | * @var integer |
||
68 | */ |
||
69 | private $borderWidth = 1; |
||
70 | |||
71 | /** |
||
72 | * Class name. |
||
73 | * |
||
74 | * @var string |
||
75 | * @since 5.0.0 |
||
76 | */ |
||
77 | private $className; |
||
78 | |||
79 | /** |
||
80 | * Color. |
||
81 | * |
||
82 | * @var string |
||
83 | */ |
||
84 | private $color; |
||
85 | |||
86 | /** |
||
87 | * Color by point. |
||
88 | * |
||
89 | * @var boolean |
||
90 | * @since 2.0 |
||
91 | */ |
||
92 | private $colorByPoint = false; |
||
93 | |||
94 | /** |
||
95 | * Color index. |
||
96 | * |
||
97 | * @var integer |
||
98 | * @since 5.0.0 |
||
99 | */ |
||
100 | private $colorIndex; |
||
101 | |||
102 | /** |
||
103 | * Colors. |
||
104 | * |
||
105 | * @var array |
||
106 | * @since 3.0 |
||
107 | */ |
||
108 | private $colors; |
||
109 | |||
110 | /** |
||
111 | * Crisp. |
||
112 | * |
||
113 | * @var boolean |
||
114 | * @since 5.0.10 |
||
115 | */ |
||
116 | private $crisp = true; |
||
117 | |||
118 | /** |
||
119 | * Cursor. |
||
120 | * |
||
121 | * @var string |
||
122 | */ |
||
123 | private $cursor; |
||
124 | |||
125 | /** |
||
126 | * Dash style. |
||
127 | * |
||
128 | * @var string |
||
129 | * @since 3.0 |
||
130 | */ |
||
131 | private $dashStyle = "Dot"; |
||
132 | |||
133 | /** |
||
134 | * Data. |
||
135 | * |
||
136 | * @var array |
||
137 | */ |
||
138 | private $data; |
||
139 | |||
140 | /** |
||
141 | * Data labels. |
||
142 | * |
||
143 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\Series\Waterfall\HighchartsDataLabels |
||
144 | */ |
||
145 | private $dataLabels; |
||
146 | |||
147 | /** |
||
148 | * Depth. |
||
149 | * |
||
150 | * @var integer |
||
151 | * @since 4.0 |
||
152 | */ |
||
153 | private $depth = 25; |
||
154 | |||
155 | /** |
||
156 | * Description. |
||
157 | * |
||
158 | * @var string |
||
159 | * @since 5.0.0 |
||
160 | */ |
||
161 | private $description; |
||
162 | |||
163 | /** |
||
164 | * Edge color. |
||
165 | * |
||
166 | * @var string |
||
167 | */ |
||
168 | private $edgeColor; |
||
169 | |||
170 | /** |
||
171 | * Edge width. |
||
172 | * |
||
173 | * @var integer |
||
174 | */ |
||
175 | private $edgeWidth = 1; |
||
176 | |||
177 | /** |
||
178 | * Enable mouse tracking. |
||
179 | * |
||
180 | * @var boolean |
||
181 | */ |
||
182 | private $enableMouseTracking = true; |
||
183 | |||
184 | /** |
||
185 | * Events. |
||
186 | * |
||
187 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\Series\Waterfall\HighchartsEvents |
||
188 | */ |
||
189 | private $events; |
||
190 | |||
191 | /** |
||
192 | * Expose element to a11y. |
||
193 | * |
||
194 | * @var boolean |
||
195 | * @since 5.0.12 |
||
196 | */ |
||
197 | private $exposeElementToA11y; |
||
198 | |||
199 | /** |
||
200 | * Find nearest point by. |
||
201 | * |
||
202 | * @var string |
||
203 | * @since 5.0.10 |
||
204 | */ |
||
205 | private $findNearestPointBy; |
||
206 | |||
207 | /** |
||
208 | * Get extremes from all. |
||
209 | * |
||
210 | * @var boolean |
||
211 | * @since 4.1.6 |
||
212 | */ |
||
213 | private $getExtremesFromAll = false; |
||
214 | |||
215 | /** |
||
216 | * Group padding. |
||
217 | * |
||
218 | * @var integer |
||
219 | */ |
||
220 | private $groupPadding = 0.2; |
||
221 | |||
222 | /** |
||
223 | * Group z padding. |
||
224 | * |
||
225 | * @var integer |
||
226 | * @since 4.0 |
||
227 | */ |
||
228 | private $groupZPadding = 1; |
||
229 | |||
230 | /** |
||
231 | * Grouping. |
||
232 | * |
||
233 | * @var boolean |
||
234 | * @since 2.3.0 |
||
235 | */ |
||
236 | private $grouping = true; |
||
237 | |||
238 | /** |
||
239 | * Id. |
||
240 | * |
||
241 | * @var string |
||
242 | * @since 1.2.0 |
||
243 | */ |
||
244 | private $id; |
||
245 | |||
246 | /** |
||
247 | * Index. |
||
248 | * |
||
249 | * @var integer |
||
250 | * @since 2.3.0 |
||
251 | */ |
||
252 | private $index; |
||
253 | |||
254 | /** |
||
255 | * Keys. |
||
256 | * |
||
257 | * @var array |
||
258 | * @since 4.1.6 |
||
259 | */ |
||
260 | private $keys; |
||
261 | |||
262 | /** |
||
263 | * Legend index. |
||
264 | * |
||
265 | * @var integer |
||
266 | */ |
||
267 | private $legendIndex; |
||
268 | |||
269 | /** |
||
270 | * Line color. |
||
271 | * |
||
272 | * @var string |
||
273 | * @since 3.0 |
||
274 | */ |
||
275 | private $lineColor = "#333333"; |
||
276 | |||
277 | /** |
||
278 | * Line width. |
||
279 | * |
||
280 | * @var integer |
||
281 | */ |
||
282 | private $lineWidth = 1; |
||
283 | |||
284 | /** |
||
285 | * Linked to. |
||
286 | * |
||
287 | * @var string |
||
288 | * @since 3.0 |
||
289 | */ |
||
290 | private $linkedTo; |
||
291 | |||
292 | /** |
||
293 | * Max point width. |
||
294 | * |
||
295 | * @var integer |
||
296 | * @since 4.1.8 |
||
297 | */ |
||
298 | private $maxPointWidth; |
||
299 | |||
300 | /** |
||
301 | * Min point length. |
||
302 | * |
||
303 | * @var integer |
||
304 | */ |
||
305 | private $minPointLength = 0; |
||
306 | |||
307 | /** |
||
308 | * Name. |
||
309 | * |
||
310 | * @var string |
||
311 | */ |
||
312 | private $name; |
||
313 | |||
314 | /** |
||
315 | * Point. |
||
316 | * |
||
317 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\Series\Waterfall\HighchartsPoint |
||
318 | */ |
||
319 | private $point; |
||
320 | |||
321 | /** |
||
322 | * Point description formatter. |
||
323 | * |
||
324 | * @var string |
||
325 | * @since 5.0.12 |
||
326 | */ |
||
327 | private $pointDescriptionFormatter; |
||
328 | |||
329 | /** |
||
330 | * Point interval. |
||
331 | * |
||
332 | * @var integer |
||
333 | */ |
||
334 | private $pointInterval = 1; |
||
335 | |||
336 | /** |
||
337 | * Point interval unit. |
||
338 | * |
||
339 | * @var string |
||
340 | * @since 4.1.0 |
||
341 | */ |
||
342 | private $pointIntervalUnit; |
||
343 | |||
344 | /** |
||
345 | * Point padding. |
||
346 | * |
||
347 | * @var integer |
||
348 | */ |
||
349 | private $pointPadding = 0.1; |
||
350 | |||
351 | /** |
||
352 | * Point placement. |
||
353 | * |
||
354 | * @var string|integer |
||
355 | * @since 2.3.0 |
||
356 | */ |
||
357 | private $pointPlacement; |
||
358 | |||
359 | /** |
||
360 | * Point range. |
||
361 | * |
||
362 | * @var integer |
||
363 | * @since 2.3 |
||
364 | */ |
||
365 | private $pointRange; |
||
366 | |||
367 | /** |
||
368 | * Point start. |
||
369 | * |
||
370 | * @var integer |
||
371 | */ |
||
372 | private $pointStart = 0; |
||
373 | |||
374 | /** |
||
375 | * Point width. |
||
376 | * |
||
377 | * @var integer |
||
378 | * @since 1.2.5 |
||
379 | */ |
||
380 | private $pointWidth; |
||
381 | |||
382 | /** |
||
383 | * Selected. |
||
384 | * |
||
385 | * @var boolean |
||
386 | * @since 1.2.0 |
||
387 | */ |
||
388 | private $selected = false; |
||
389 | |||
390 | /** |
||
391 | * Shadow. |
||
392 | * |
||
393 | * @var boolean|array |
||
394 | */ |
||
395 | private $shadow = false; |
||
396 | |||
397 | /** |
||
398 | * Show checkbox. |
||
399 | * |
||
400 | * @var boolean |
||
401 | * @since 1.2.0 |
||
402 | */ |
||
403 | private $showCheckbox = false; |
||
404 | |||
405 | /** |
||
406 | * Show in legend. |
||
407 | * |
||
408 | * @var boolean |
||
409 | */ |
||
410 | private $showInLegend = true; |
||
411 | |||
412 | /** |
||
413 | * Skip keyboard navigation. |
||
414 | * |
||
415 | * @var boolean |
||
416 | * @since 5.0.12 |
||
417 | */ |
||
418 | private $skipKeyboardNavigation; |
||
419 | |||
420 | /** |
||
421 | * Soft threshold. |
||
422 | * |
||
423 | * @var boolean |
||
424 | * @since 4.1.9 |
||
425 | */ |
||
426 | private $softThreshold = true; |
||
427 | |||
428 | /** |
||
429 | * Stack. |
||
430 | * |
||
431 | * @var string |
||
432 | * @since 2.1 |
||
433 | */ |
||
434 | private $stack; |
||
435 | |||
436 | /** |
||
437 | * States. |
||
438 | * |
||
439 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\Series\Waterfall\HighchartsStates |
||
440 | */ |
||
441 | private $states; |
||
442 | |||
443 | /** |
||
444 | * Sticky tracking. |
||
445 | * |
||
446 | * @var boolean |
||
447 | * @since 2.0 |
||
448 | */ |
||
449 | private $stickyTracking = true; |
||
450 | |||
451 | /** |
||
452 | * Threshold. |
||
453 | * |
||
454 | * @var integer |
||
455 | * @since 2.0 |
||
456 | */ |
||
457 | private $threshold = 0; |
||
458 | |||
459 | /** |
||
460 | * Tooltip. |
||
461 | * |
||
462 | * @var array |
||
463 | * @since 2.3 |
||
464 | */ |
||
465 | private $tooltip; |
||
466 | |||
467 | /** |
||
468 | * Type. |
||
469 | * |
||
470 | * @var string |
||
471 | */ |
||
472 | private $type; |
||
473 | |||
474 | /** |
||
475 | * Up color. |
||
476 | * |
||
477 | * @var string |
||
478 | */ |
||
479 | private $upColor; |
||
480 | |||
481 | /** |
||
482 | * Visible. |
||
483 | * |
||
484 | * @var boolean |
||
485 | */ |
||
486 | private $visible = true; |
||
487 | |||
488 | /** |
||
489 | * X axis. |
||
490 | * |
||
491 | * @var integer|string |
||
492 | */ |
||
493 | private $xAxis = "0"; |
||
494 | |||
495 | /** |
||
496 | * Y axis. |
||
497 | * |
||
498 | * @var integer|string |
||
499 | */ |
||
500 | private $yAxis = "0"; |
||
501 | |||
502 | /** |
||
503 | * Z index. |
||
504 | * |
||
505 | * @var integer |
||
506 | */ |
||
507 | private $zIndex; |
||
508 | |||
509 | /** |
||
510 | * Zone axis. |
||
511 | * |
||
512 | * @var string |
||
513 | * @since 4.1.0 |
||
514 | */ |
||
515 | private $zoneAxis = "y"; |
||
516 | |||
517 | /** |
||
518 | * Zones. |
||
519 | * |
||
520 | * @var array |
||
521 | * @since 4.1.0 |
||
522 | */ |
||
523 | private $zones; |
||
524 | |||
525 | /** |
||
526 | * Constructor. |
||
527 | * |
||
528 | * @param boolean $ignoreDefaultValues Ignore the default values. |
||
529 | */ |
||
530 | public function __construct($ignoreDefaultValues = true) { |
||
535 | |||
536 | /** |
||
537 | * Clear. |
||
538 | * |
||
539 | * @return void |
||
540 | */ |
||
541 | public function clear() { |
||
749 | |||
750 | /** |
||
751 | * Get the allow point select. |
||
752 | * |
||
753 | * @return boolean Returns the allow point select. |
||
754 | */ |
||
755 | public function getAllowPointSelect() { |
||
758 | |||
759 | /** |
||
760 | * Get the animation. |
||
761 | * |
||
762 | * @return boolean Returns the animation. |
||
763 | */ |
||
764 | public function getAnimation() { |
||
767 | |||
768 | /** |
||
769 | * Get the animation limit. |
||
770 | * |
||
771 | * @return integer Returns the animation limit. |
||
772 | */ |
||
773 | public function getAnimationLimit() { |
||
776 | |||
777 | /** |
||
778 | * Get the border color. |
||
779 | * |
||
780 | * @return string Returns the border color. |
||
781 | */ |
||
782 | public function getBorderColor() { |
||
785 | |||
786 | /** |
||
787 | * Get the border radius. |
||
788 | * |
||
789 | * @return integer Returns the border radius. |
||
790 | */ |
||
791 | public function getBorderRadius() { |
||
794 | |||
795 | /** |
||
796 | * Get the border width. |
||
797 | * |
||
798 | * @return integer Returns the border width. |
||
799 | */ |
||
800 | public function getBorderWidth() { |
||
803 | |||
804 | /** |
||
805 | * Get the class name. |
||
806 | * |
||
807 | * @return string Returns the class name. |
||
808 | */ |
||
809 | public function getClassName() { |
||
812 | |||
813 | /** |
||
814 | * Get the color. |
||
815 | * |
||
816 | * @return string Returns the color. |
||
817 | */ |
||
818 | public function getColor() { |
||
821 | |||
822 | /** |
||
823 | * Get the color by point. |
||
824 | * |
||
825 | * @return boolean Returns the color by point. |
||
826 | */ |
||
827 | public function getColorByPoint() { |
||
830 | |||
831 | /** |
||
832 | * Get the color index. |
||
833 | * |
||
834 | * @return integer Returns the color index. |
||
835 | */ |
||
836 | public function getColorIndex() { |
||
839 | |||
840 | /** |
||
841 | * Get the colors. |
||
842 | * |
||
843 | * @return array Returns the colors. |
||
844 | */ |
||
845 | public function getColors() { |
||
848 | |||
849 | /** |
||
850 | * Get the crisp. |
||
851 | * |
||
852 | * @return boolean Returns the crisp. |
||
853 | */ |
||
854 | public function getCrisp() { |
||
857 | |||
858 | /** |
||
859 | * Get the cursor. |
||
860 | * |
||
861 | * @return string Returns the cursor. |
||
862 | */ |
||
863 | public function getCursor() { |
||
866 | |||
867 | /** |
||
868 | * Get the dash style. |
||
869 | * |
||
870 | * @return string Returns the dash style. |
||
871 | */ |
||
872 | public function getDashStyle() { |
||
875 | |||
876 | /** |
||
877 | * Get the data. |
||
878 | * |
||
879 | * @return array Returns the data. |
||
880 | */ |
||
881 | public function getData() { |
||
884 | |||
885 | /** |
||
886 | * Get the data labels. |
||
887 | * |
||
888 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Waterfall\HighchartsDataLabels Returns the data labels. |
||
889 | */ |
||
890 | public function getDataLabels() { |
||
893 | |||
894 | /** |
||
895 | * Get the depth. |
||
896 | * |
||
897 | * @return integer Returns the depth. |
||
898 | */ |
||
899 | public function getDepth() { |
||
902 | |||
903 | /** |
||
904 | * Get the description. |
||
905 | * |
||
906 | * @return string Returns the description. |
||
907 | */ |
||
908 | public function getDescription() { |
||
911 | |||
912 | /** |
||
913 | * Get the edge color. |
||
914 | * |
||
915 | * @return string Returns the edge color. |
||
916 | */ |
||
917 | public function getEdgeColor() { |
||
920 | |||
921 | /** |
||
922 | * Get the edge width. |
||
923 | * |
||
924 | * @return integer Returns the edge width. |
||
925 | */ |
||
926 | public function getEdgeWidth() { |
||
929 | |||
930 | /** |
||
931 | * Get the enable mouse tracking. |
||
932 | * |
||
933 | * @return boolean Returns the enable mouse tracking. |
||
934 | */ |
||
935 | public function getEnableMouseTracking() { |
||
938 | |||
939 | /** |
||
940 | * Get the events. |
||
941 | * |
||
942 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Waterfall\HighchartsEvents Returns the events. |
||
943 | */ |
||
944 | public function getEvents() { |
||
947 | |||
948 | /** |
||
949 | * Get the expose element to a11y. |
||
950 | * |
||
951 | * @return boolean Returns the expose element to a11y. |
||
952 | */ |
||
953 | public function getExposeElementToA11y() { |
||
956 | |||
957 | /** |
||
958 | * Get the find nearest point by. |
||
959 | * |
||
960 | * @return string Returns the find nearest point by. |
||
961 | */ |
||
962 | public function getFindNearestPointBy() { |
||
965 | |||
966 | /** |
||
967 | * Get the get extremes from all. |
||
968 | * |
||
969 | * @return boolean Returns the get extremes from all. |
||
970 | */ |
||
971 | public function getGetExtremesFromAll() { |
||
974 | |||
975 | /** |
||
976 | * Get the group padding. |
||
977 | * |
||
978 | * @return integer Returns the group padding. |
||
979 | */ |
||
980 | public function getGroupPadding() { |
||
983 | |||
984 | /** |
||
985 | * Get the group z padding. |
||
986 | * |
||
987 | * @return integer Returns the group z padding. |
||
988 | */ |
||
989 | public function getGroupZPadding() { |
||
992 | |||
993 | /** |
||
994 | * Get the grouping. |
||
995 | * |
||
996 | * @return boolean Returns the grouping. |
||
997 | */ |
||
998 | public function getGrouping() { |
||
1001 | |||
1002 | /** |
||
1003 | * Get the id. |
||
1004 | * |
||
1005 | * @return string Returns the id. |
||
1006 | */ |
||
1007 | public function getId() { |
||
1010 | |||
1011 | /** |
||
1012 | * Get the index. |
||
1013 | * |
||
1014 | * @return integer Returns the index. |
||
1015 | */ |
||
1016 | public function getIndex() { |
||
1019 | |||
1020 | /** |
||
1021 | * Get the keys. |
||
1022 | * |
||
1023 | * @return array Returns the keys. |
||
1024 | */ |
||
1025 | public function getKeys() { |
||
1028 | |||
1029 | /** |
||
1030 | * Get the legend index. |
||
1031 | * |
||
1032 | * @return integer Returns the legend index. |
||
1033 | */ |
||
1034 | public function getLegendIndex() { |
||
1037 | |||
1038 | /** |
||
1039 | * Get the line color. |
||
1040 | * |
||
1041 | * @return string Returns the line color. |
||
1042 | */ |
||
1043 | public function getLineColor() { |
||
1046 | |||
1047 | /** |
||
1048 | * Get the line width. |
||
1049 | * |
||
1050 | * @return integer Returns the line width. |
||
1051 | */ |
||
1052 | public function getLineWidth() { |
||
1055 | |||
1056 | /** |
||
1057 | * Get the linked to. |
||
1058 | * |
||
1059 | * @return string Returns the linked to. |
||
1060 | */ |
||
1061 | public function getLinkedTo() { |
||
1064 | |||
1065 | /** |
||
1066 | * Get the max point width. |
||
1067 | * |
||
1068 | * @return integer Returns the max point width. |
||
1069 | */ |
||
1070 | public function getMaxPointWidth() { |
||
1073 | |||
1074 | /** |
||
1075 | * Get the min point length. |
||
1076 | * |
||
1077 | * @return integer Returns the min point length. |
||
1078 | */ |
||
1079 | public function getMinPointLength() { |
||
1082 | |||
1083 | /** |
||
1084 | * Get the name. |
||
1085 | * |
||
1086 | * @return string Returns the name. |
||
1087 | */ |
||
1088 | public function getName() { |
||
1091 | |||
1092 | /** |
||
1093 | * Get the point. |
||
1094 | * |
||
1095 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Waterfall\HighchartsPoint Returns the point. |
||
1096 | */ |
||
1097 | public function getPoint() { |
||
1100 | |||
1101 | /** |
||
1102 | * Get the point description formatter. |
||
1103 | * |
||
1104 | * @return string Returns the point description formatter. |
||
1105 | */ |
||
1106 | public function getPointDescriptionFormatter() { |
||
1109 | |||
1110 | /** |
||
1111 | * Get the point interval. |
||
1112 | * |
||
1113 | * @return integer Returns the point interval. |
||
1114 | */ |
||
1115 | public function getPointInterval() { |
||
1118 | |||
1119 | /** |
||
1120 | * Get the point interval unit. |
||
1121 | * |
||
1122 | * @return string Returns the point interval unit. |
||
1123 | */ |
||
1124 | public function getPointIntervalUnit() { |
||
1127 | |||
1128 | /** |
||
1129 | * Get the point padding. |
||
1130 | * |
||
1131 | * @return integer Returns the point padding. |
||
1132 | */ |
||
1133 | public function getPointPadding() { |
||
1136 | |||
1137 | /** |
||
1138 | * Get the point placement. |
||
1139 | * |
||
1140 | * @return string|integer Returns the point placement. |
||
1141 | */ |
||
1142 | public function getPointPlacement() { |
||
1145 | |||
1146 | /** |
||
1147 | * Get the point range. |
||
1148 | * |
||
1149 | * @return integer Returns the point range. |
||
1150 | */ |
||
1151 | public function getPointRange() { |
||
1154 | |||
1155 | /** |
||
1156 | * Get the point start. |
||
1157 | * |
||
1158 | * @return integer Returns the point start. |
||
1159 | */ |
||
1160 | public function getPointStart() { |
||
1163 | |||
1164 | /** |
||
1165 | * Get the point width. |
||
1166 | * |
||
1167 | * @return integer Returns the point width. |
||
1168 | */ |
||
1169 | public function getPointWidth() { |
||
1172 | |||
1173 | /** |
||
1174 | * Get the selected. |
||
1175 | * |
||
1176 | * @return boolean Returns the selected. |
||
1177 | */ |
||
1178 | public function getSelected() { |
||
1181 | |||
1182 | /** |
||
1183 | * Get the shadow. |
||
1184 | * |
||
1185 | * @return boolean|array Returns the shadow. |
||
1186 | */ |
||
1187 | public function getShadow() { |
||
1190 | |||
1191 | /** |
||
1192 | * Get the show checkbox. |
||
1193 | * |
||
1194 | * @return boolean Returns the show checkbox. |
||
1195 | */ |
||
1196 | public function getShowCheckbox() { |
||
1199 | |||
1200 | /** |
||
1201 | * Get the show in legend. |
||
1202 | * |
||
1203 | * @return boolean Returns the show in legend. |
||
1204 | */ |
||
1205 | public function getShowInLegend() { |
||
1208 | |||
1209 | /** |
||
1210 | * Get the skip keyboard navigation. |
||
1211 | * |
||
1212 | * @return boolean Returns the skip keyboard navigation. |
||
1213 | */ |
||
1214 | public function getSkipKeyboardNavigation() { |
||
1217 | |||
1218 | /** |
||
1219 | * Get the soft threshold. |
||
1220 | * |
||
1221 | * @return boolean Returns the soft threshold. |
||
1222 | */ |
||
1223 | public function getSoftThreshold() { |
||
1226 | |||
1227 | /** |
||
1228 | * Get the stack. |
||
1229 | * |
||
1230 | * @return string Returns the stack. |
||
1231 | */ |
||
1232 | public function getStack() { |
||
1235 | |||
1236 | /** |
||
1237 | * Get the states. |
||
1238 | * |
||
1239 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Waterfall\HighchartsStates Returns the states. |
||
1240 | */ |
||
1241 | public function getStates() { |
||
1244 | |||
1245 | /** |
||
1246 | * Get the sticky tracking. |
||
1247 | * |
||
1248 | * @return boolean Returns the sticky tracking. |
||
1249 | */ |
||
1250 | public function getStickyTracking() { |
||
1253 | |||
1254 | /** |
||
1255 | * Get the threshold. |
||
1256 | * |
||
1257 | * @return integer Returns the threshold. |
||
1258 | */ |
||
1259 | public function getThreshold() { |
||
1262 | |||
1263 | /** |
||
1264 | * Get the tooltip. |
||
1265 | * |
||
1266 | * @return array Returns the tooltip. |
||
1267 | */ |
||
1268 | public function getTooltip() { |
||
1271 | |||
1272 | /** |
||
1273 | * Get the type. |
||
1274 | * |
||
1275 | * @return string Returns the type. |
||
1276 | */ |
||
1277 | public function getType() { |
||
1280 | |||
1281 | /** |
||
1282 | * Get the up color. |
||
1283 | * |
||
1284 | * @return string Returns the up color. |
||
1285 | */ |
||
1286 | public function getUpColor() { |
||
1289 | |||
1290 | /** |
||
1291 | * Get the visible. |
||
1292 | * |
||
1293 | * @return boolean Returns the visible. |
||
1294 | */ |
||
1295 | public function getVisible() { |
||
1298 | |||
1299 | /** |
||
1300 | * Get the x axis. |
||
1301 | * |
||
1302 | * @return integer|string Returns the x axis. |
||
1303 | */ |
||
1304 | public function getXAxis() { |
||
1307 | |||
1308 | /** |
||
1309 | * Get the y axis. |
||
1310 | * |
||
1311 | * @return integer|string Returns the y axis. |
||
1312 | */ |
||
1313 | public function getYAxis() { |
||
1316 | |||
1317 | /** |
||
1318 | * Get the z index. |
||
1319 | * |
||
1320 | * @return integer Returns the z index. |
||
1321 | */ |
||
1322 | public function getZIndex() { |
||
1325 | |||
1326 | /** |
||
1327 | * Get the zone axis. |
||
1328 | * |
||
1329 | * @return string Returns the zone axis. |
||
1330 | */ |
||
1331 | public function getZoneAxis() { |
||
1334 | |||
1335 | /** |
||
1336 | * Get the zones. |
||
1337 | * |
||
1338 | * @return array Returns the zones. |
||
1339 | */ |
||
1340 | public function getZones() { |
||
1343 | |||
1344 | /** |
||
1345 | * Serialize this instance. |
||
1346 | * |
||
1347 | * @return array Returns an array representing this instance. |
||
1348 | */ |
||
1349 | public function jsonSerialize() { |
||
1352 | |||
1353 | /** |
||
1354 | * Create a new data labels. |
||
1355 | * |
||
1356 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Waterfall\HighchartsDataLabels Returns the data labels. |
||
1357 | */ |
||
1358 | public function newDataLabels() { |
||
1362 | |||
1363 | /** |
||
1364 | * Create a new events. |
||
1365 | * |
||
1366 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Waterfall\HighchartsEvents Returns the events. |
||
1367 | */ |
||
1368 | public function newEvents() { |
||
1372 | |||
1373 | /** |
||
1374 | * Create a new point. |
||
1375 | * |
||
1376 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Waterfall\HighchartsPoint Returns the point. |
||
1377 | */ |
||
1378 | public function newPoint() { |
||
1382 | |||
1383 | /** |
||
1384 | * Create a new states. |
||
1385 | * |
||
1386 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Waterfall\HighchartsStates Returns the states. |
||
1387 | */ |
||
1388 | public function newStates() { |
||
1392 | |||
1393 | /** |
||
1394 | * Set the allow point select. |
||
1395 | * |
||
1396 | * @param boolean $allowPointSelect The allow point select. |
||
1397 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1398 | */ |
||
1399 | public function setAllowPointSelect($allowPointSelect) { |
||
1403 | |||
1404 | /** |
||
1405 | * Set the animation. |
||
1406 | * |
||
1407 | * @param boolean $animation The animation. |
||
1408 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1409 | */ |
||
1410 | public function setAnimation($animation) { |
||
1414 | |||
1415 | /** |
||
1416 | * Set the animation limit. |
||
1417 | * |
||
1418 | * @param integer $animationLimit The animation limit. |
||
1419 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1420 | */ |
||
1421 | public function setAnimationLimit($animationLimit) { |
||
1425 | |||
1426 | /** |
||
1427 | * Set the border color. |
||
1428 | * |
||
1429 | * @param string $borderColor The border color. |
||
1430 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1431 | */ |
||
1432 | public function setBorderColor($borderColor) { |
||
1436 | |||
1437 | /** |
||
1438 | * Set the border radius. |
||
1439 | * |
||
1440 | * @param integer $borderRadius The border radius. |
||
1441 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1442 | */ |
||
1443 | public function setBorderRadius($borderRadius) { |
||
1447 | |||
1448 | /** |
||
1449 | * Set the border width. |
||
1450 | * |
||
1451 | * @param integer $borderWidth The border width. |
||
1452 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1453 | */ |
||
1454 | public function setBorderWidth($borderWidth) { |
||
1458 | |||
1459 | /** |
||
1460 | * Set the class name. |
||
1461 | * |
||
1462 | * @param string $className The class name. |
||
1463 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1464 | */ |
||
1465 | public function setClassName($className) { |
||
1469 | |||
1470 | /** |
||
1471 | * Set the color. |
||
1472 | * |
||
1473 | * @param string $color The color. |
||
1474 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1475 | */ |
||
1476 | public function setColor($color) { |
||
1480 | |||
1481 | /** |
||
1482 | * Set the color by point. |
||
1483 | * |
||
1484 | * @param boolean $colorByPoint The color by point. |
||
1485 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1486 | */ |
||
1487 | public function setColorByPoint($colorByPoint) { |
||
1491 | |||
1492 | /** |
||
1493 | * Set the color index. |
||
1494 | * |
||
1495 | * @param integer $colorIndex The color index. |
||
1496 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1497 | */ |
||
1498 | public function setColorIndex($colorIndex) { |
||
1502 | |||
1503 | /** |
||
1504 | * Set the colors. |
||
1505 | * |
||
1506 | * @param array $colors The colors. |
||
1507 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1508 | */ |
||
1509 | public function setColors(array $colors = null) { |
||
1513 | |||
1514 | /** |
||
1515 | * Set the crisp. |
||
1516 | * |
||
1517 | * @param boolean $crisp The crisp. |
||
1518 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1519 | */ |
||
1520 | public function setCrisp($crisp) { |
||
1524 | |||
1525 | /** |
||
1526 | * Set the cursor. |
||
1527 | * |
||
1528 | * @param string $cursor The cursor. |
||
1529 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1530 | */ |
||
1531 | public function setCursor($cursor) { |
||
1544 | |||
1545 | /** |
||
1546 | * Set the dash style. |
||
1547 | * |
||
1548 | * @param string $dashStyle The dash style. |
||
1549 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1550 | */ |
||
1551 | public function setDashStyle($dashStyle) { |
||
1555 | |||
1556 | /** |
||
1557 | * Set the data. |
||
1558 | * |
||
1559 | * @param array $data The data. |
||
1560 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1561 | */ |
||
1562 | public function setData(array $data = null) { |
||
1566 | |||
1567 | /** |
||
1568 | * Set the data labels. |
||
1569 | * |
||
1570 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\Series\Waterfall\HighchartsDataLabels $dataLabels The data labels. |
||
1571 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1572 | */ |
||
1573 | public function setDataLabels(\WBW\Bundle\HighchartsBundle\API\Chart\Series\Waterfall\HighchartsDataLabels $dataLabels = null) { |
||
1577 | |||
1578 | /** |
||
1579 | * Set the depth. |
||
1580 | * |
||
1581 | * @param integer $depth The depth. |
||
1582 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1583 | */ |
||
1584 | public function setDepth($depth) { |
||
1588 | |||
1589 | /** |
||
1590 | * Set the description. |
||
1591 | * |
||
1592 | * @param string $description The description. |
||
1593 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1594 | */ |
||
1595 | public function setDescription($description) { |
||
1599 | |||
1600 | /** |
||
1601 | * Set the edge color. |
||
1602 | * |
||
1603 | * @param string $edgeColor The edge color. |
||
1604 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1605 | */ |
||
1606 | public function setEdgeColor($edgeColor) { |
||
1610 | |||
1611 | /** |
||
1612 | * Set the edge width. |
||
1613 | * |
||
1614 | * @param integer $edgeWidth The edge width. |
||
1615 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1616 | */ |
||
1617 | public function setEdgeWidth($edgeWidth) { |
||
1621 | |||
1622 | /** |
||
1623 | * Set the enable mouse tracking. |
||
1624 | * |
||
1625 | * @param boolean $enableMouseTracking The enable mouse tracking. |
||
1626 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1627 | */ |
||
1628 | public function setEnableMouseTracking($enableMouseTracking) { |
||
1632 | |||
1633 | /** |
||
1634 | * Set the events. |
||
1635 | * |
||
1636 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\Series\Waterfall\HighchartsEvents $events The events. |
||
1637 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1638 | */ |
||
1639 | public function setEvents(\WBW\Bundle\HighchartsBundle\API\Chart\Series\Waterfall\HighchartsEvents $events = null) { |
||
1643 | |||
1644 | /** |
||
1645 | * Set the expose element to a11y. |
||
1646 | * |
||
1647 | * @param boolean $exposeElementToA11y The expose element to a11y. |
||
1648 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1649 | */ |
||
1650 | public function setExposeElementToA11y($exposeElementToA11y) { |
||
1654 | |||
1655 | /** |
||
1656 | * Set the find nearest point by. |
||
1657 | * |
||
1658 | * @param string $findNearestPointBy The find nearest point by. |
||
1659 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1660 | */ |
||
1661 | public function setFindNearestPointBy($findNearestPointBy) { |
||
1670 | |||
1671 | /** |
||
1672 | * Set the get extremes from all. |
||
1673 | * |
||
1674 | * @param boolean $getExtremesFromAll The get extremes from all. |
||
1675 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1676 | */ |
||
1677 | public function setGetExtremesFromAll($getExtremesFromAll) { |
||
1681 | |||
1682 | /** |
||
1683 | * Set the group padding. |
||
1684 | * |
||
1685 | * @param integer $groupPadding The group padding. |
||
1686 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1687 | */ |
||
1688 | public function setGroupPadding($groupPadding) { |
||
1692 | |||
1693 | /** |
||
1694 | * Set the group z padding. |
||
1695 | * |
||
1696 | * @param integer $groupZPadding The group z padding. |
||
1697 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1698 | */ |
||
1699 | public function setGroupZPadding($groupZPadding) { |
||
1703 | |||
1704 | /** |
||
1705 | * Set the grouping. |
||
1706 | * |
||
1707 | * @param boolean $grouping The grouping. |
||
1708 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1709 | */ |
||
1710 | public function setGrouping($grouping) { |
||
1714 | |||
1715 | /** |
||
1716 | * Set the id. |
||
1717 | * |
||
1718 | * @param string $id The id. |
||
1719 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1720 | */ |
||
1721 | public function setId($id) { |
||
1725 | |||
1726 | /** |
||
1727 | * Set the index. |
||
1728 | * |
||
1729 | * @param integer $index The index. |
||
1730 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1731 | */ |
||
1732 | public function setIndex($index) { |
||
1736 | |||
1737 | /** |
||
1738 | * Set the keys. |
||
1739 | * |
||
1740 | * @param array $keys The keys. |
||
1741 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1742 | */ |
||
1743 | public function setKeys(array $keys = null) { |
||
1747 | |||
1748 | /** |
||
1749 | * Set the legend index. |
||
1750 | * |
||
1751 | * @param integer $legendIndex The legend index. |
||
1752 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1753 | */ |
||
1754 | public function setLegendIndex($legendIndex) { |
||
1758 | |||
1759 | /** |
||
1760 | * Set the line color. |
||
1761 | * |
||
1762 | * @param string $lineColor The line color. |
||
1763 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1764 | */ |
||
1765 | public function setLineColor($lineColor) { |
||
1769 | |||
1770 | /** |
||
1771 | * Set the line width. |
||
1772 | * |
||
1773 | * @param integer $lineWidth The line width. |
||
1774 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1775 | */ |
||
1776 | public function setLineWidth($lineWidth) { |
||
1780 | |||
1781 | /** |
||
1782 | * Set the linked to. |
||
1783 | * |
||
1784 | * @param string $linkedTo The linked to. |
||
1785 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1786 | */ |
||
1787 | public function setLinkedTo($linkedTo) { |
||
1791 | |||
1792 | /** |
||
1793 | * Set the max point width. |
||
1794 | * |
||
1795 | * @param integer $maxPointWidth The max point width. |
||
1796 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1797 | */ |
||
1798 | public function setMaxPointWidth($maxPointWidth) { |
||
1802 | |||
1803 | /** |
||
1804 | * Set the min point length. |
||
1805 | * |
||
1806 | * @param integer $minPointLength The min point length. |
||
1807 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1808 | */ |
||
1809 | public function setMinPointLength($minPointLength) { |
||
1813 | |||
1814 | /** |
||
1815 | * Set the name. |
||
1816 | * |
||
1817 | * @param string $name The name. |
||
1818 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1819 | */ |
||
1820 | public function setName($name) { |
||
1824 | |||
1825 | /** |
||
1826 | * Set the point. |
||
1827 | * |
||
1828 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\Series\Waterfall\HighchartsPoint $point The point. |
||
1829 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1830 | */ |
||
1831 | public function setPoint(\WBW\Bundle\HighchartsBundle\API\Chart\Series\Waterfall\HighchartsPoint $point = null) { |
||
1835 | |||
1836 | /** |
||
1837 | * Set the point description formatter. |
||
1838 | * |
||
1839 | * @param string $pointDescriptionFormatter The point description formatter. |
||
1840 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1841 | */ |
||
1842 | public function setPointDescriptionFormatter($pointDescriptionFormatter) { |
||
1846 | |||
1847 | /** |
||
1848 | * Set the point interval. |
||
1849 | * |
||
1850 | * @param integer $pointInterval The point interval. |
||
1851 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1852 | */ |
||
1853 | public function setPointInterval($pointInterval) { |
||
1857 | |||
1858 | /** |
||
1859 | * Set the point interval unit. |
||
1860 | * |
||
1861 | * @param string $pointIntervalUnit The point interval unit. |
||
1862 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1863 | */ |
||
1864 | public function setPointIntervalUnit($pointIntervalUnit) { |
||
1875 | |||
1876 | /** |
||
1877 | * Set the point padding. |
||
1878 | * |
||
1879 | * @param integer $pointPadding The point padding. |
||
1880 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1881 | */ |
||
1882 | public function setPointPadding($pointPadding) { |
||
1886 | |||
1887 | /** |
||
1888 | * Set the point placement. |
||
1889 | * |
||
1890 | * @param string|integer $pointPlacement The point placement. |
||
1891 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1892 | */ |
||
1893 | public function setPointPlacement($pointPlacement) { |
||
1903 | |||
1904 | /** |
||
1905 | * Set the point range. |
||
1906 | * |
||
1907 | * @param integer $pointRange The point range. |
||
1908 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1909 | */ |
||
1910 | public function setPointRange($pointRange) { |
||
1914 | |||
1915 | /** |
||
1916 | * Set the point start. |
||
1917 | * |
||
1918 | * @param integer $pointStart The point start. |
||
1919 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1920 | */ |
||
1921 | public function setPointStart($pointStart) { |
||
1925 | |||
1926 | /** |
||
1927 | * Set the point width. |
||
1928 | * |
||
1929 | * @param integer $pointWidth The point width. |
||
1930 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1931 | */ |
||
1932 | public function setPointWidth($pointWidth) { |
||
1936 | |||
1937 | /** |
||
1938 | * Set the selected. |
||
1939 | * |
||
1940 | * @param boolean $selected The selected. |
||
1941 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1942 | */ |
||
1943 | public function setSelected($selected) { |
||
1947 | |||
1948 | /** |
||
1949 | * Set the shadow. |
||
1950 | * |
||
1951 | * @param boolean|array $shadow The shadow. |
||
1952 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1953 | */ |
||
1954 | public function setShadow($shadow) { |
||
1958 | |||
1959 | /** |
||
1960 | * Set the show checkbox. |
||
1961 | * |
||
1962 | * @param boolean $showCheckbox The show checkbox. |
||
1963 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1964 | */ |
||
1965 | public function setShowCheckbox($showCheckbox) { |
||
1969 | |||
1970 | /** |
||
1971 | * Set the show in legend. |
||
1972 | * |
||
1973 | * @param boolean $showInLegend The show in legend. |
||
1974 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1975 | */ |
||
1976 | public function setShowInLegend($showInLegend) { |
||
1980 | |||
1981 | /** |
||
1982 | * Set the skip keyboard navigation. |
||
1983 | * |
||
1984 | * @param boolean $skipKeyboardNavigation The skip keyboard navigation. |
||
1985 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1986 | */ |
||
1987 | public function setSkipKeyboardNavigation($skipKeyboardNavigation) { |
||
1991 | |||
1992 | /** |
||
1993 | * Set the soft threshold. |
||
1994 | * |
||
1995 | * @param boolean $softThreshold The soft threshold. |
||
1996 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
1997 | */ |
||
1998 | public function setSoftThreshold($softThreshold) { |
||
2002 | |||
2003 | /** |
||
2004 | * Set the stack. |
||
2005 | * |
||
2006 | * @param string $stack The stack. |
||
2007 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
2008 | */ |
||
2009 | public function setStack($stack) { |
||
2013 | |||
2014 | /** |
||
2015 | * Set the states. |
||
2016 | * |
||
2017 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\Series\Waterfall\HighchartsStates $states The states. |
||
2018 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
2019 | */ |
||
2020 | public function setStates(\WBW\Bundle\HighchartsBundle\API\Chart\Series\Waterfall\HighchartsStates $states = null) { |
||
2024 | |||
2025 | /** |
||
2026 | * Set the sticky tracking. |
||
2027 | * |
||
2028 | * @param boolean $stickyTracking The sticky tracking. |
||
2029 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
2030 | */ |
||
2031 | public function setStickyTracking($stickyTracking) { |
||
2035 | |||
2036 | /** |
||
2037 | * Set the threshold. |
||
2038 | * |
||
2039 | * @param integer $threshold The threshold. |
||
2040 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
2041 | */ |
||
2042 | public function setThreshold($threshold) { |
||
2046 | |||
2047 | /** |
||
2048 | * Set the tooltip. |
||
2049 | * |
||
2050 | * @param array $tooltip The tooltip. |
||
2051 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
2052 | */ |
||
2053 | public function setTooltip(array $tooltip = null) { |
||
2057 | |||
2058 | /** |
||
2059 | * Set the type. |
||
2060 | * |
||
2061 | * @param string $type The type. |
||
2062 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
2063 | */ |
||
2064 | public function setType($type) { |
||
2088 | |||
2089 | /** |
||
2090 | * Set the up color. |
||
2091 | * |
||
2092 | * @param string $upColor The up color. |
||
2093 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
2094 | */ |
||
2095 | public function setUpColor($upColor) { |
||
2099 | |||
2100 | /** |
||
2101 | * Set the visible. |
||
2102 | * |
||
2103 | * @param boolean $visible The visible. |
||
2104 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
2105 | */ |
||
2106 | public function setVisible($visible) { |
||
2110 | |||
2111 | /** |
||
2112 | * Set the x axis. |
||
2113 | * |
||
2114 | * @param integer|string $xAxis The x axis. |
||
2115 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
2116 | */ |
||
2117 | public function setXAxis($xAxis) { |
||
2121 | |||
2122 | /** |
||
2123 | * Set the y axis. |
||
2124 | * |
||
2125 | * @param integer|string $yAxis The y axis. |
||
2126 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
2127 | */ |
||
2128 | public function setYAxis($yAxis) { |
||
2132 | |||
2133 | /** |
||
2134 | * Set the z index. |
||
2135 | * |
||
2136 | * @param integer $zIndex The z index. |
||
2137 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
2138 | */ |
||
2139 | public function setZIndex($zIndex) { |
||
2143 | |||
2144 | /** |
||
2145 | * Set the zone axis. |
||
2146 | * |
||
2147 | * @param string $zoneAxis The zone axis. |
||
2148 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
2149 | */ |
||
2150 | public function setZoneAxis($zoneAxis) { |
||
2154 | |||
2155 | /** |
||
2156 | * Set the zones. |
||
2157 | * |
||
2158 | * @param array $zones The zones. |
||
2159 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsWaterfall Returns the highcharts waterfall. |
||
2160 | */ |
||
2161 | public function setZones(array $zones = null) { |
||
2165 | |||
2166 | /** |
||
2167 | * Convert into an array representing this instance. |
||
2168 | * |
||
2169 | * @return array Returns an array representing this instance. |
||
2170 | */ |
||
2171 | public function toArray() { |
||
2385 | |||
2386 | } |
||
2387 |
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..