Complex classes like HighchartsYAxis 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 HighchartsYAxis, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
25 | final class HighchartsYAxis implements JsonSerializable { |
||
26 | |||
27 | /** |
||
28 | * Allow decimals. |
||
29 | * |
||
30 | * @var boolean |
||
31 | * @since 2.0 |
||
32 | */ |
||
33 | private $allowDecimals = true; |
||
34 | |||
35 | /** |
||
36 | * Alternate grid color. |
||
37 | * |
||
38 | * @var string |
||
39 | */ |
||
40 | private $alternateGridColor; |
||
41 | |||
42 | /** |
||
43 | * Angle. |
||
44 | * |
||
45 | * @var integer |
||
46 | * @since 4.2.7 |
||
47 | */ |
||
48 | private $angle = 0; |
||
49 | |||
50 | /** |
||
51 | * Breaks. |
||
52 | * |
||
53 | * @var array |
||
54 | * @since 4.1.0 |
||
55 | */ |
||
56 | private $breaks; |
||
57 | |||
58 | /** |
||
59 | * Categories. |
||
60 | * |
||
61 | * @var array |
||
62 | */ |
||
63 | private $categories; |
||
64 | |||
65 | /** |
||
66 | * Ceiling. |
||
67 | * |
||
68 | * @var integer |
||
69 | * @since 4.0 |
||
70 | */ |
||
71 | private $ceiling; |
||
72 | |||
73 | /** |
||
74 | * Class name. |
||
75 | * |
||
76 | * @var string |
||
77 | * @since 5.0.0 |
||
78 | */ |
||
79 | private $className; |
||
80 | |||
81 | /** |
||
82 | * Crosshair. |
||
83 | * |
||
84 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsCrosshair |
||
85 | * @since 4.1 |
||
86 | */ |
||
87 | private $crosshair; |
||
88 | |||
89 | /** |
||
90 | * Date time label formats. |
||
91 | * |
||
92 | * @var array |
||
93 | */ |
||
94 | private $dateTimeLabelFormats; |
||
95 | |||
96 | /** |
||
97 | * Description. |
||
98 | * |
||
99 | * @var string |
||
100 | * @since 5.0.0 |
||
101 | */ |
||
102 | private $description; |
||
103 | |||
104 | /** |
||
105 | * End on tick. |
||
106 | * |
||
107 | * @var boolean |
||
108 | * @since 1.2.0 |
||
109 | */ |
||
110 | private $endOnTick = true; |
||
111 | |||
112 | /** |
||
113 | * Events. |
||
114 | * |
||
115 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsEvents |
||
116 | */ |
||
117 | private $events; |
||
118 | |||
119 | /** |
||
120 | * Floor. |
||
121 | * |
||
122 | * @var integer |
||
123 | * @since 4.0 |
||
124 | */ |
||
125 | private $floor; |
||
126 | |||
127 | /** |
||
128 | * Grid line color. |
||
129 | * |
||
130 | * @var string |
||
131 | */ |
||
132 | private $gridLineColor = "#e6e6e6"; |
||
133 | |||
134 | /** |
||
135 | * Grid line dash style. |
||
136 | * |
||
137 | * @var string |
||
138 | * @since 1.2 |
||
139 | */ |
||
140 | private $gridLineDashStyle = "Solid"; |
||
141 | |||
142 | /** |
||
143 | * Grid line interpolation. |
||
144 | * |
||
145 | * @var string |
||
146 | */ |
||
147 | private $gridLineInterpolation; |
||
148 | |||
149 | /** |
||
150 | * Grid line width. |
||
151 | * |
||
152 | * @var integer |
||
153 | */ |
||
154 | private $gridLineWidth = 1; |
||
155 | |||
156 | /** |
||
157 | * Grid z index. |
||
158 | * |
||
159 | * @var integer |
||
160 | */ |
||
161 | private $gridZIndex = 1; |
||
162 | |||
163 | /** |
||
164 | * Id. |
||
165 | * |
||
166 | * @var string |
||
167 | * @since 1.2.0 |
||
168 | */ |
||
169 | private $id; |
||
170 | |||
171 | /** |
||
172 | * Labels. |
||
173 | * |
||
174 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsLabels |
||
175 | */ |
||
176 | private $labels; |
||
177 | |||
178 | /** |
||
179 | * Line color. |
||
180 | * |
||
181 | * @var string |
||
182 | */ |
||
183 | private $lineColor = "#ccd6eb"; |
||
184 | |||
185 | /** |
||
186 | * Line width. |
||
187 | * |
||
188 | * @var integer |
||
189 | */ |
||
190 | private $lineWidth = 0; |
||
191 | |||
192 | /** |
||
193 | * Linked to. |
||
194 | * |
||
195 | * @var integer |
||
196 | * @since 2.0.2 |
||
197 | */ |
||
198 | private $linkedTo; |
||
199 | |||
200 | /** |
||
201 | * Max. |
||
202 | * |
||
203 | * @var integer |
||
204 | */ |
||
205 | private $max; |
||
206 | |||
207 | /** |
||
208 | * Max color. |
||
209 | * |
||
210 | * @var string |
||
211 | * @since 4.0 |
||
212 | */ |
||
213 | private $maxColor = "#003399"; |
||
214 | |||
215 | /** |
||
216 | * Max padding. |
||
217 | * |
||
218 | * @var integer |
||
219 | * @since 1.2.0 |
||
220 | */ |
||
221 | private $maxPadding = 0.05; |
||
222 | |||
223 | /** |
||
224 | * Max zoom. |
||
225 | * |
||
226 | * @var integer |
||
227 | * @deprecated |
||
228 | */ |
||
229 | private $maxZoom; |
||
230 | |||
231 | /** |
||
232 | * Min. |
||
233 | * |
||
234 | * @var integer |
||
235 | */ |
||
236 | private $min; |
||
237 | |||
238 | /** |
||
239 | * Min color. |
||
240 | * |
||
241 | * @var string |
||
242 | * @since 4.0 |
||
243 | */ |
||
244 | private $minColor = "#e6ebf5"; |
||
245 | |||
246 | /** |
||
247 | * Min padding. |
||
248 | * |
||
249 | * @var integer |
||
250 | * @since 1.2.0 |
||
251 | */ |
||
252 | private $minPadding = 0.05; |
||
253 | |||
254 | /** |
||
255 | * Min range. |
||
256 | * |
||
257 | * @var integer |
||
258 | */ |
||
259 | private $minRange; |
||
260 | |||
261 | /** |
||
262 | * Min tick interval. |
||
263 | * |
||
264 | * @var integer |
||
265 | * @since 2.3.0 |
||
266 | */ |
||
267 | private $minTickInterval; |
||
268 | |||
269 | /** |
||
270 | * Minor grid line color. |
||
271 | * |
||
272 | * @var string |
||
273 | */ |
||
274 | private $minorGridLineColor = "#f2f2f2"; |
||
275 | |||
276 | /** |
||
277 | * Minor grid line dash style. |
||
278 | * |
||
279 | * @var string |
||
280 | * @since 1.2 |
||
281 | */ |
||
282 | private $minorGridLineDashStyle = "Solid"; |
||
283 | |||
284 | /** |
||
285 | * Minor grid line width. |
||
286 | * |
||
287 | * @var integer |
||
288 | */ |
||
289 | private $minorGridLineWidth = 1; |
||
290 | |||
291 | /** |
||
292 | * Minor tick color. |
||
293 | * |
||
294 | * @var string |
||
295 | */ |
||
296 | private $minorTickColor = "#999999"; |
||
297 | |||
298 | /** |
||
299 | * Minor tick interval. |
||
300 | * |
||
301 | * @var string|integer |
||
302 | */ |
||
303 | private $minorTickInterval; |
||
304 | |||
305 | /** |
||
306 | * Minor tick length. |
||
307 | * |
||
308 | * @var integer |
||
309 | */ |
||
310 | private $minorTickLength = 2; |
||
311 | |||
312 | /** |
||
313 | * Minor tick position. |
||
314 | * |
||
315 | * @var string |
||
316 | */ |
||
317 | private $minorTickPosition = "outside"; |
||
318 | |||
319 | /** |
||
320 | * Minor tick width. |
||
321 | * |
||
322 | * @var integer |
||
323 | */ |
||
324 | private $minorTickWidth = 0; |
||
325 | |||
326 | /** |
||
327 | * Offset. |
||
328 | * |
||
329 | * @var integer |
||
330 | */ |
||
331 | private $offset = 0; |
||
332 | |||
333 | /** |
||
334 | * Opposite. |
||
335 | * |
||
336 | * @var boolean |
||
337 | */ |
||
338 | private $opposite = false; |
||
339 | |||
340 | /** |
||
341 | * Plot bands. |
||
342 | * |
||
343 | * @var array |
||
344 | */ |
||
345 | private $plotBands; |
||
346 | |||
347 | /** |
||
348 | * Plot lines. |
||
349 | * |
||
350 | * @var array |
||
351 | */ |
||
352 | private $plotLines; |
||
353 | |||
354 | /** |
||
355 | * Reversed. |
||
356 | * |
||
357 | * @var boolean |
||
358 | */ |
||
359 | private $reversed = false; |
||
360 | |||
361 | /** |
||
362 | * Reversed stacks. |
||
363 | * |
||
364 | * @var boolean |
||
365 | * @since 3.0.10 |
||
366 | */ |
||
367 | private $reversedStacks = true; |
||
368 | |||
369 | /** |
||
370 | * Show empty. |
||
371 | * |
||
372 | * @var boolean |
||
373 | * @since 1.1 |
||
374 | */ |
||
375 | private $showEmpty = true; |
||
376 | |||
377 | /** |
||
378 | * Show first label. |
||
379 | * |
||
380 | * @var boolean |
||
381 | */ |
||
382 | private $showFirstLabel = true; |
||
383 | |||
384 | /** |
||
385 | * Show last label. |
||
386 | * |
||
387 | * @var boolean |
||
388 | */ |
||
389 | private $showLastLabel; |
||
390 | |||
391 | /** |
||
392 | * Soft max. |
||
393 | * |
||
394 | * @var integer |
||
395 | * @since 5.0.1 |
||
396 | */ |
||
397 | private $softMax; |
||
398 | |||
399 | /** |
||
400 | * Soft min. |
||
401 | * |
||
402 | * @var integer |
||
403 | * @since 5.0.1 |
||
404 | */ |
||
405 | private $softMin; |
||
406 | |||
407 | /** |
||
408 | * Stack labels. |
||
409 | * |
||
410 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsStackLabels |
||
411 | */ |
||
412 | private $stackLabels; |
||
413 | |||
414 | /** |
||
415 | * Start of week. |
||
416 | * |
||
417 | * @var integer |
||
418 | */ |
||
419 | private $startOfWeek = 1; |
||
420 | |||
421 | /** |
||
422 | * Start on tick. |
||
423 | * |
||
424 | * @var boolean |
||
425 | * @since 1.2.0 |
||
426 | */ |
||
427 | private $startOnTick = true; |
||
428 | |||
429 | /** |
||
430 | * Stops. |
||
431 | * |
||
432 | * @var array |
||
433 | * @since 4.0 |
||
434 | */ |
||
435 | private $stops; |
||
436 | |||
437 | /** |
||
438 | * Tick amount. |
||
439 | * |
||
440 | * @var integer |
||
441 | * @since 4.1.0 |
||
442 | */ |
||
443 | private $tickAmount; |
||
444 | |||
445 | /** |
||
446 | * Tick color. |
||
447 | * |
||
448 | * @var string |
||
449 | */ |
||
450 | private $tickColor = "#ccd6eb"; |
||
451 | |||
452 | /** |
||
453 | * Tick interval. |
||
454 | * |
||
455 | * @var integer |
||
456 | */ |
||
457 | private $tickInterval; |
||
458 | |||
459 | /** |
||
460 | * Tick length. |
||
461 | * |
||
462 | * @var integer |
||
463 | */ |
||
464 | private $tickLength = 10; |
||
465 | |||
466 | /** |
||
467 | * Tick pixel interval. |
||
468 | * |
||
469 | * @var integer |
||
470 | */ |
||
471 | private $tickPixelInterval; |
||
472 | |||
473 | /** |
||
474 | * Tick position. |
||
475 | * |
||
476 | * @var string |
||
477 | */ |
||
478 | private $tickPosition = "outside"; |
||
479 | |||
480 | /** |
||
481 | * Tick positioner. |
||
482 | * |
||
483 | * @var string |
||
484 | */ |
||
485 | private $tickPositioner; |
||
486 | |||
487 | /** |
||
488 | * Tick positions. |
||
489 | * |
||
490 | * @var array |
||
491 | */ |
||
492 | private $tickPositions; |
||
493 | |||
494 | /** |
||
495 | * Tick width. |
||
496 | * |
||
497 | * @var integer |
||
498 | */ |
||
499 | private $tickWidth = 0; |
||
500 | |||
501 | /** |
||
502 | * Tickmark placement. |
||
503 | * |
||
504 | * @var string |
||
505 | */ |
||
506 | private $tickmarkPlacement; |
||
507 | |||
508 | /** |
||
509 | * Title. |
||
510 | * |
||
511 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsTitle |
||
512 | */ |
||
513 | private $title; |
||
514 | |||
515 | /** |
||
516 | * Type. |
||
517 | * |
||
518 | * @var string |
||
519 | */ |
||
520 | private $type = "linear"; |
||
521 | |||
522 | /** |
||
523 | * Unique names. |
||
524 | * |
||
525 | * @var boolean |
||
526 | * @since 4.2.7 |
||
527 | */ |
||
528 | private $uniqueNames = true; |
||
529 | |||
530 | /** |
||
531 | * Units. |
||
532 | * |
||
533 | * @var array |
||
534 | */ |
||
535 | private $units; |
||
536 | |||
537 | /** |
||
538 | * Visible. |
||
539 | * |
||
540 | * @var boolean |
||
541 | * @since 4.1.9 |
||
542 | */ |
||
543 | private $visible = true; |
||
544 | |||
545 | /** |
||
546 | * Constructor. |
||
547 | * |
||
548 | * @param boolean $ignoreDefaultValues Ignore the default values. |
||
549 | */ |
||
550 | public function __construct($ignoreDefaultValues = true) { |
||
555 | |||
556 | /** |
||
557 | * Clear. |
||
558 | * |
||
559 | * @return void |
||
560 | */ |
||
561 | public function clear() { |
||
783 | |||
784 | /** |
||
785 | * Get the allow decimals. |
||
786 | * |
||
787 | * @return boolean Returns the allow decimals. |
||
788 | */ |
||
789 | public function getAllowDecimals() { |
||
792 | |||
793 | /** |
||
794 | * Get the alternate grid color. |
||
795 | * |
||
796 | * @return string Returns the alternate grid color. |
||
797 | */ |
||
798 | public function getAlternateGridColor() { |
||
801 | |||
802 | /** |
||
803 | * Get the angle. |
||
804 | * |
||
805 | * @return integer Returns the angle. |
||
806 | */ |
||
807 | public function getAngle() { |
||
810 | |||
811 | /** |
||
812 | * Get the breaks. |
||
813 | * |
||
814 | * @return array Returns the breaks. |
||
815 | */ |
||
816 | public function getBreaks() { |
||
819 | |||
820 | /** |
||
821 | * Get the categories. |
||
822 | * |
||
823 | * @return array Returns the categories. |
||
824 | */ |
||
825 | public function getCategories() { |
||
828 | |||
829 | /** |
||
830 | * Get the ceiling. |
||
831 | * |
||
832 | * @return integer Returns the ceiling. |
||
833 | */ |
||
834 | public function getCeiling() { |
||
837 | |||
838 | /** |
||
839 | * Get the class name. |
||
840 | * |
||
841 | * @return string Returns the class name. |
||
842 | */ |
||
843 | public function getClassName() { |
||
846 | |||
847 | /** |
||
848 | * Get the crosshair. |
||
849 | * |
||
850 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsCrosshair Returns the crosshair. |
||
851 | */ |
||
852 | public function getCrosshair() { |
||
855 | |||
856 | /** |
||
857 | * Get the date time label formats. |
||
858 | * |
||
859 | * @return array Returns the date time label formats. |
||
860 | */ |
||
861 | public function getDateTimeLabelFormats() { |
||
864 | |||
865 | /** |
||
866 | * Get the description. |
||
867 | * |
||
868 | * @return string Returns the description. |
||
869 | */ |
||
870 | public function getDescription() { |
||
873 | |||
874 | /** |
||
875 | * Get the end on tick. |
||
876 | * |
||
877 | * @return boolean Returns the end on tick. |
||
878 | */ |
||
879 | public function getEndOnTick() { |
||
882 | |||
883 | /** |
||
884 | * Get the events. |
||
885 | * |
||
886 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsEvents Returns the events. |
||
887 | */ |
||
888 | public function getEvents() { |
||
891 | |||
892 | /** |
||
893 | * Get the floor. |
||
894 | * |
||
895 | * @return integer Returns the floor. |
||
896 | */ |
||
897 | public function getFloor() { |
||
900 | |||
901 | /** |
||
902 | * Get the grid line color. |
||
903 | * |
||
904 | * @return string Returns the grid line color. |
||
905 | */ |
||
906 | public function getGridLineColor() { |
||
909 | |||
910 | /** |
||
911 | * Get the grid line dash style. |
||
912 | * |
||
913 | * @return string Returns the grid line dash style. |
||
914 | */ |
||
915 | public function getGridLineDashStyle() { |
||
918 | |||
919 | /** |
||
920 | * Get the grid line interpolation. |
||
921 | * |
||
922 | * @return string Returns the grid line interpolation. |
||
923 | */ |
||
924 | public function getGridLineInterpolation() { |
||
927 | |||
928 | /** |
||
929 | * Get the grid line width. |
||
930 | * |
||
931 | * @return integer Returns the grid line width. |
||
932 | */ |
||
933 | public function getGridLineWidth() { |
||
936 | |||
937 | /** |
||
938 | * Get the grid z index. |
||
939 | * |
||
940 | * @return integer Returns the grid z index. |
||
941 | */ |
||
942 | public function getGridZIndex() { |
||
945 | |||
946 | /** |
||
947 | * Get the id. |
||
948 | * |
||
949 | * @return string Returns the id. |
||
950 | */ |
||
951 | public function getId() { |
||
954 | |||
955 | /** |
||
956 | * Get the labels. |
||
957 | * |
||
958 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsLabels Returns the labels. |
||
959 | */ |
||
960 | public function getLabels() { |
||
963 | |||
964 | /** |
||
965 | * Get the line color. |
||
966 | * |
||
967 | * @return string Returns the line color. |
||
968 | */ |
||
969 | public function getLineColor() { |
||
972 | |||
973 | /** |
||
974 | * Get the line width. |
||
975 | * |
||
976 | * @return integer Returns the line width. |
||
977 | */ |
||
978 | public function getLineWidth() { |
||
981 | |||
982 | /** |
||
983 | * Get the linked to. |
||
984 | * |
||
985 | * @return integer Returns the linked to. |
||
986 | */ |
||
987 | public function getLinkedTo() { |
||
990 | |||
991 | /** |
||
992 | * Get the max. |
||
993 | * |
||
994 | * @return integer Returns the max. |
||
995 | */ |
||
996 | public function getMax() { |
||
999 | |||
1000 | /** |
||
1001 | * Get the max color. |
||
1002 | * |
||
1003 | * @return string Returns the max color. |
||
1004 | */ |
||
1005 | public function getMaxColor() { |
||
1008 | |||
1009 | /** |
||
1010 | * Get the max padding. |
||
1011 | * |
||
1012 | * @return integer Returns the max padding. |
||
1013 | */ |
||
1014 | public function getMaxPadding() { |
||
1017 | |||
1018 | /** |
||
1019 | * Get the max zoom. |
||
1020 | * |
||
1021 | * @return integer Returns the max zoom. |
||
1022 | * @deprecated |
||
1023 | */ |
||
1024 | public function getMaxZoom() { |
||
1027 | |||
1028 | /** |
||
1029 | * Get the min. |
||
1030 | * |
||
1031 | * @return integer Returns the min. |
||
1032 | */ |
||
1033 | public function getMin() { |
||
1036 | |||
1037 | /** |
||
1038 | * Get the min color. |
||
1039 | * |
||
1040 | * @return string Returns the min color. |
||
1041 | */ |
||
1042 | public function getMinColor() { |
||
1045 | |||
1046 | /** |
||
1047 | * Get the min padding. |
||
1048 | * |
||
1049 | * @return integer Returns the min padding. |
||
1050 | */ |
||
1051 | public function getMinPadding() { |
||
1054 | |||
1055 | /** |
||
1056 | * Get the min range. |
||
1057 | * |
||
1058 | * @return integer Returns the min range. |
||
1059 | */ |
||
1060 | public function getMinRange() { |
||
1063 | |||
1064 | /** |
||
1065 | * Get the min tick interval. |
||
1066 | * |
||
1067 | * @return integer Returns the min tick interval. |
||
1068 | */ |
||
1069 | public function getMinTickInterval() { |
||
1072 | |||
1073 | /** |
||
1074 | * Get the minor grid line color. |
||
1075 | * |
||
1076 | * @return string Returns the minor grid line color. |
||
1077 | */ |
||
1078 | public function getMinorGridLineColor() { |
||
1081 | |||
1082 | /** |
||
1083 | * Get the minor grid line dash style. |
||
1084 | * |
||
1085 | * @return string Returns the minor grid line dash style. |
||
1086 | */ |
||
1087 | public function getMinorGridLineDashStyle() { |
||
1090 | |||
1091 | /** |
||
1092 | * Get the minor grid line width. |
||
1093 | * |
||
1094 | * @return integer Returns the minor grid line width. |
||
1095 | */ |
||
1096 | public function getMinorGridLineWidth() { |
||
1099 | |||
1100 | /** |
||
1101 | * Get the minor tick color. |
||
1102 | * |
||
1103 | * @return string Returns the minor tick color. |
||
1104 | */ |
||
1105 | public function getMinorTickColor() { |
||
1108 | |||
1109 | /** |
||
1110 | * Get the minor tick interval. |
||
1111 | * |
||
1112 | * @return string|integer Returns the minor tick interval. |
||
1113 | */ |
||
1114 | public function getMinorTickInterval() { |
||
1117 | |||
1118 | /** |
||
1119 | * Get the minor tick length. |
||
1120 | * |
||
1121 | * @return integer Returns the minor tick length. |
||
1122 | */ |
||
1123 | public function getMinorTickLength() { |
||
1126 | |||
1127 | /** |
||
1128 | * Get the minor tick position. |
||
1129 | * |
||
1130 | * @return string Returns the minor tick position. |
||
1131 | */ |
||
1132 | public function getMinorTickPosition() { |
||
1135 | |||
1136 | /** |
||
1137 | * Get the minor tick width. |
||
1138 | * |
||
1139 | * @return integer Returns the minor tick width. |
||
1140 | */ |
||
1141 | public function getMinorTickWidth() { |
||
1144 | |||
1145 | /** |
||
1146 | * Get the offset. |
||
1147 | * |
||
1148 | * @return integer Returns the offset. |
||
1149 | */ |
||
1150 | public function getOffset() { |
||
1153 | |||
1154 | /** |
||
1155 | * Get the opposite. |
||
1156 | * |
||
1157 | * @return boolean Returns the opposite. |
||
1158 | */ |
||
1159 | public function getOpposite() { |
||
1162 | |||
1163 | /** |
||
1164 | * Get the plot bands. |
||
1165 | * |
||
1166 | * @return array Returns the plot bands. |
||
1167 | */ |
||
1168 | public function getPlotBands() { |
||
1171 | |||
1172 | /** |
||
1173 | * Get the plot lines. |
||
1174 | * |
||
1175 | * @return array Returns the plot lines. |
||
1176 | */ |
||
1177 | public function getPlotLines() { |
||
1180 | |||
1181 | /** |
||
1182 | * Get the reversed. |
||
1183 | * |
||
1184 | * @return boolean Returns the reversed. |
||
1185 | */ |
||
1186 | public function getReversed() { |
||
1189 | |||
1190 | /** |
||
1191 | * Get the reversed stacks. |
||
1192 | * |
||
1193 | * @return boolean Returns the reversed stacks. |
||
1194 | */ |
||
1195 | public function getReversedStacks() { |
||
1198 | |||
1199 | /** |
||
1200 | * Get the show empty. |
||
1201 | * |
||
1202 | * @return boolean Returns the show empty. |
||
1203 | */ |
||
1204 | public function getShowEmpty() { |
||
1207 | |||
1208 | /** |
||
1209 | * Get the show first label. |
||
1210 | * |
||
1211 | * @return boolean Returns the show first label. |
||
1212 | */ |
||
1213 | public function getShowFirstLabel() { |
||
1216 | |||
1217 | /** |
||
1218 | * Get the show last label. |
||
1219 | * |
||
1220 | * @return boolean Returns the show last label. |
||
1221 | */ |
||
1222 | public function getShowLastLabel() { |
||
1225 | |||
1226 | /** |
||
1227 | * Get the soft max. |
||
1228 | * |
||
1229 | * @return integer Returns the soft max. |
||
1230 | */ |
||
1231 | public function getSoftMax() { |
||
1234 | |||
1235 | /** |
||
1236 | * Get the soft min. |
||
1237 | * |
||
1238 | * @return integer Returns the soft min. |
||
1239 | */ |
||
1240 | public function getSoftMin() { |
||
1243 | |||
1244 | /** |
||
1245 | * Get the stack labels. |
||
1246 | * |
||
1247 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsStackLabels Returns the stack labels. |
||
1248 | */ |
||
1249 | public function getStackLabels() { |
||
1252 | |||
1253 | /** |
||
1254 | * Get the start of week. |
||
1255 | * |
||
1256 | * @return integer Returns the start of week. |
||
1257 | */ |
||
1258 | public function getStartOfWeek() { |
||
1261 | |||
1262 | /** |
||
1263 | * Get the start on tick. |
||
1264 | * |
||
1265 | * @return boolean Returns the start on tick. |
||
1266 | */ |
||
1267 | public function getStartOnTick() { |
||
1270 | |||
1271 | /** |
||
1272 | * Get the stops. |
||
1273 | * |
||
1274 | * @return array Returns the stops. |
||
1275 | */ |
||
1276 | public function getStops() { |
||
1279 | |||
1280 | /** |
||
1281 | * Get the tick amount. |
||
1282 | * |
||
1283 | * @return integer Returns the tick amount. |
||
1284 | */ |
||
1285 | public function getTickAmount() { |
||
1288 | |||
1289 | /** |
||
1290 | * Get the tick color. |
||
1291 | * |
||
1292 | * @return string Returns the tick color. |
||
1293 | */ |
||
1294 | public function getTickColor() { |
||
1297 | |||
1298 | /** |
||
1299 | * Get the tick interval. |
||
1300 | * |
||
1301 | * @return integer Returns the tick interval. |
||
1302 | */ |
||
1303 | public function getTickInterval() { |
||
1306 | |||
1307 | /** |
||
1308 | * Get the tick length. |
||
1309 | * |
||
1310 | * @return integer Returns the tick length. |
||
1311 | */ |
||
1312 | public function getTickLength() { |
||
1315 | |||
1316 | /** |
||
1317 | * Get the tick pixel interval. |
||
1318 | * |
||
1319 | * @return integer Returns the tick pixel interval. |
||
1320 | */ |
||
1321 | public function getTickPixelInterval() { |
||
1324 | |||
1325 | /** |
||
1326 | * Get the tick position. |
||
1327 | * |
||
1328 | * @return string Returns the tick position. |
||
1329 | */ |
||
1330 | public function getTickPosition() { |
||
1333 | |||
1334 | /** |
||
1335 | * Get the tick positioner. |
||
1336 | * |
||
1337 | * @return string Returns the tick positioner. |
||
1338 | */ |
||
1339 | public function getTickPositioner() { |
||
1342 | |||
1343 | /** |
||
1344 | * Get the tick positions. |
||
1345 | * |
||
1346 | * @return array Returns the tick positions. |
||
1347 | */ |
||
1348 | public function getTickPositions() { |
||
1351 | |||
1352 | /** |
||
1353 | * Get the tick width. |
||
1354 | * |
||
1355 | * @return integer Returns the tick width. |
||
1356 | */ |
||
1357 | public function getTickWidth() { |
||
1360 | |||
1361 | /** |
||
1362 | * Get the tickmark placement. |
||
1363 | * |
||
1364 | * @return string Returns the tickmark placement. |
||
1365 | */ |
||
1366 | public function getTickmarkPlacement() { |
||
1369 | |||
1370 | /** |
||
1371 | * Get the title. |
||
1372 | * |
||
1373 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsTitle Returns the title. |
||
1374 | */ |
||
1375 | public function getTitle() { |
||
1378 | |||
1379 | /** |
||
1380 | * Get the type. |
||
1381 | * |
||
1382 | * @return string Returns the type. |
||
1383 | */ |
||
1384 | public function getType() { |
||
1387 | |||
1388 | /** |
||
1389 | * Get the unique names. |
||
1390 | * |
||
1391 | * @return boolean Returns the unique names. |
||
1392 | */ |
||
1393 | public function getUniqueNames() { |
||
1396 | |||
1397 | /** |
||
1398 | * Get the units. |
||
1399 | * |
||
1400 | * @return array Returns the units. |
||
1401 | */ |
||
1402 | public function getUnits() { |
||
1405 | |||
1406 | /** |
||
1407 | * Get the visible. |
||
1408 | * |
||
1409 | * @return boolean Returns the visible. |
||
1410 | */ |
||
1411 | public function getVisible() { |
||
1414 | |||
1415 | /** |
||
1416 | * Serialize this instance. |
||
1417 | * |
||
1418 | * @return array Returns an array representing this instance. |
||
1419 | */ |
||
1420 | public function jsonSerialize() { |
||
1423 | |||
1424 | /** |
||
1425 | * Create a new crosshair. |
||
1426 | * |
||
1427 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsCrosshair Returns the crosshair. |
||
1428 | */ |
||
1429 | public function newCrosshair() { |
||
1433 | |||
1434 | /** |
||
1435 | * Create a new events. |
||
1436 | * |
||
1437 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsEvents Returns the events. |
||
1438 | */ |
||
1439 | public function newEvents() { |
||
1443 | |||
1444 | /** |
||
1445 | * Create a new labels. |
||
1446 | * |
||
1447 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsLabels Returns the labels. |
||
1448 | */ |
||
1449 | public function newLabels() { |
||
1453 | |||
1454 | /** |
||
1455 | * Create a new stack labels. |
||
1456 | * |
||
1457 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsStackLabels Returns the stack labels. |
||
1458 | */ |
||
1459 | public function newStackLabels() { |
||
1463 | |||
1464 | /** |
||
1465 | * Create a new title. |
||
1466 | * |
||
1467 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsTitle Returns the title. |
||
1468 | */ |
||
1469 | public function newTitle() { |
||
1473 | |||
1474 | /** |
||
1475 | * Set the allow decimals. |
||
1476 | * |
||
1477 | * @param boolean $allowDecimals The allow decimals. |
||
1478 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1479 | */ |
||
1480 | public function setAllowDecimals($allowDecimals) { |
||
1484 | |||
1485 | /** |
||
1486 | * Set the alternate grid color. |
||
1487 | * |
||
1488 | * @param string $alternateGridColor The alternate grid color. |
||
1489 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1490 | */ |
||
1491 | public function setAlternateGridColor($alternateGridColor) { |
||
1495 | |||
1496 | /** |
||
1497 | * Set the angle. |
||
1498 | * |
||
1499 | * @param integer $angle The angle. |
||
1500 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1501 | */ |
||
1502 | public function setAngle($angle) { |
||
1506 | |||
1507 | /** |
||
1508 | * Set the breaks. |
||
1509 | * |
||
1510 | * @param array $breaks The breaks. |
||
1511 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1512 | */ |
||
1513 | public function setBreaks(array $breaks = null) { |
||
1517 | |||
1518 | /** |
||
1519 | * Set the categories. |
||
1520 | * |
||
1521 | * @param array $categories The categories. |
||
1522 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1523 | */ |
||
1524 | public function setCategories(array $categories = null) { |
||
1528 | |||
1529 | /** |
||
1530 | * Set the ceiling. |
||
1531 | * |
||
1532 | * @param integer $ceiling The ceiling. |
||
1533 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1534 | */ |
||
1535 | public function setCeiling($ceiling) { |
||
1539 | |||
1540 | /** |
||
1541 | * Set the class name. |
||
1542 | * |
||
1543 | * @param string $className The class name. |
||
1544 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1545 | */ |
||
1546 | public function setClassName($className) { |
||
1550 | |||
1551 | /** |
||
1552 | * Set the crosshair. |
||
1553 | * |
||
1554 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsCrosshair $crosshair The crosshair. |
||
1555 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1556 | */ |
||
1557 | public function setCrosshair(\WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsCrosshair $crosshair = null) { |
||
1561 | |||
1562 | /** |
||
1563 | * Set the date time label formats. |
||
1564 | * |
||
1565 | * @param array $dateTimeLabelFormats The date time label formats. |
||
1566 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1567 | */ |
||
1568 | public function setDateTimeLabelFormats(array $dateTimeLabelFormats = null) { |
||
1572 | |||
1573 | /** |
||
1574 | * Set the description. |
||
1575 | * |
||
1576 | * @param string $description The description. |
||
1577 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1578 | */ |
||
1579 | public function setDescription($description) { |
||
1583 | |||
1584 | /** |
||
1585 | * Set the end on tick. |
||
1586 | * |
||
1587 | * @param boolean $endOnTick The end on tick. |
||
1588 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1589 | */ |
||
1590 | public function setEndOnTick($endOnTick) { |
||
1594 | |||
1595 | /** |
||
1596 | * Set the events. |
||
1597 | * |
||
1598 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsEvents $events The events. |
||
1599 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1600 | */ |
||
1601 | public function setEvents(\WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsEvents $events = null) { |
||
1605 | |||
1606 | /** |
||
1607 | * Set the floor. |
||
1608 | * |
||
1609 | * @param integer $floor The floor. |
||
1610 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1611 | */ |
||
1612 | public function setFloor($floor) { |
||
1616 | |||
1617 | /** |
||
1618 | * Set the grid line color. |
||
1619 | * |
||
1620 | * @param string $gridLineColor The grid line color. |
||
1621 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1622 | */ |
||
1623 | public function setGridLineColor($gridLineColor) { |
||
1627 | |||
1628 | /** |
||
1629 | * Set the grid line dash style. |
||
1630 | * |
||
1631 | * @param string $gridLineDashStyle The grid line dash style. |
||
1632 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1633 | */ |
||
1634 | public function setGridLineDashStyle($gridLineDashStyle) { |
||
1652 | |||
1653 | /** |
||
1654 | * Set the grid line interpolation. |
||
1655 | * |
||
1656 | * @param string $gridLineInterpolation The grid line interpolation. |
||
1657 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1658 | */ |
||
1659 | public function setGridLineInterpolation($gridLineInterpolation) { |
||
1668 | |||
1669 | /** |
||
1670 | * Set the grid line width. |
||
1671 | * |
||
1672 | * @param integer $gridLineWidth The grid line width. |
||
1673 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1674 | */ |
||
1675 | public function setGridLineWidth($gridLineWidth) { |
||
1679 | |||
1680 | /** |
||
1681 | * Set the grid z index. |
||
1682 | * |
||
1683 | * @param integer $gridZIndex The grid z index. |
||
1684 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1685 | */ |
||
1686 | public function setGridZIndex($gridZIndex) { |
||
1690 | |||
1691 | /** |
||
1692 | * Set the id. |
||
1693 | * |
||
1694 | * @param string $id The id. |
||
1695 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1696 | */ |
||
1697 | public function setId($id) { |
||
1701 | |||
1702 | /** |
||
1703 | * Set the labels. |
||
1704 | * |
||
1705 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsLabels $labels The labels. |
||
1706 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1707 | */ |
||
1708 | public function setLabels(\WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsLabels $labels = null) { |
||
1712 | |||
1713 | /** |
||
1714 | * Set the line color. |
||
1715 | * |
||
1716 | * @param string $lineColor The line color. |
||
1717 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1718 | */ |
||
1719 | public function setLineColor($lineColor) { |
||
1723 | |||
1724 | /** |
||
1725 | * Set the line width. |
||
1726 | * |
||
1727 | * @param integer $lineWidth The line width. |
||
1728 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1729 | */ |
||
1730 | public function setLineWidth($lineWidth) { |
||
1734 | |||
1735 | /** |
||
1736 | * Set the linked to. |
||
1737 | * |
||
1738 | * @param integer $linkedTo The linked to. |
||
1739 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1740 | */ |
||
1741 | public function setLinkedTo($linkedTo) { |
||
1745 | |||
1746 | /** |
||
1747 | * Set the max. |
||
1748 | * |
||
1749 | * @param integer $max The max. |
||
1750 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1751 | */ |
||
1752 | public function setMax($max) { |
||
1756 | |||
1757 | /** |
||
1758 | * Set the max color. |
||
1759 | * |
||
1760 | * @param string $maxColor The max color. |
||
1761 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1762 | */ |
||
1763 | public function setMaxColor($maxColor) { |
||
1767 | |||
1768 | /** |
||
1769 | * Set the max padding. |
||
1770 | * |
||
1771 | * @param integer $maxPadding The max padding. |
||
1772 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1773 | */ |
||
1774 | public function setMaxPadding($maxPadding) { |
||
1778 | |||
1779 | /** |
||
1780 | * Set the max zoom. |
||
1781 | * |
||
1782 | * @param integer $maxZoom The max zoom. |
||
1783 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1784 | * @deprecated |
||
1785 | */ |
||
1786 | public function setMaxZoom($maxZoom) { |
||
1790 | |||
1791 | /** |
||
1792 | * Set the min. |
||
1793 | * |
||
1794 | * @param integer $min The min. |
||
1795 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1796 | */ |
||
1797 | public function setMin($min) { |
||
1801 | |||
1802 | /** |
||
1803 | * Set the min color. |
||
1804 | * |
||
1805 | * @param string $minColor The min color. |
||
1806 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1807 | */ |
||
1808 | public function setMinColor($minColor) { |
||
1812 | |||
1813 | /** |
||
1814 | * Set the min padding. |
||
1815 | * |
||
1816 | * @param integer $minPadding The min padding. |
||
1817 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1818 | */ |
||
1819 | public function setMinPadding($minPadding) { |
||
1823 | |||
1824 | /** |
||
1825 | * Set the min range. |
||
1826 | * |
||
1827 | * @param integer $minRange The min range. |
||
1828 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1829 | */ |
||
1830 | public function setMinRange($minRange) { |
||
1834 | |||
1835 | /** |
||
1836 | * Set the min tick interval. |
||
1837 | * |
||
1838 | * @param integer $minTickInterval The min tick interval. |
||
1839 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1840 | */ |
||
1841 | public function setMinTickInterval($minTickInterval) { |
||
1845 | |||
1846 | /** |
||
1847 | * Set the minor grid line color. |
||
1848 | * |
||
1849 | * @param string $minorGridLineColor The minor grid line color. |
||
1850 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1851 | */ |
||
1852 | public function setMinorGridLineColor($minorGridLineColor) { |
||
1856 | |||
1857 | /** |
||
1858 | * Set the minor grid line dash style. |
||
1859 | * |
||
1860 | * @param string $minorGridLineDashStyle The minor grid line dash style. |
||
1861 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1862 | */ |
||
1863 | public function setMinorGridLineDashStyle($minorGridLineDashStyle) { |
||
1881 | |||
1882 | /** |
||
1883 | * Set the minor grid line width. |
||
1884 | * |
||
1885 | * @param integer $minorGridLineWidth The minor grid line width. |
||
1886 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1887 | */ |
||
1888 | public function setMinorGridLineWidth($minorGridLineWidth) { |
||
1892 | |||
1893 | /** |
||
1894 | * Set the minor tick color. |
||
1895 | * |
||
1896 | * @param string $minorTickColor The minor tick color. |
||
1897 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1898 | */ |
||
1899 | public function setMinorTickColor($minorTickColor) { |
||
1903 | |||
1904 | /** |
||
1905 | * Set the minor tick interval. |
||
1906 | * |
||
1907 | * @param string|integer $minorTickInterval The minor tick interval. |
||
1908 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1909 | */ |
||
1910 | public function setMinorTickInterval($minorTickInterval) { |
||
1914 | |||
1915 | /** |
||
1916 | * Set the minor tick length. |
||
1917 | * |
||
1918 | * @param integer $minorTickLength The minor tick length. |
||
1919 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1920 | */ |
||
1921 | public function setMinorTickLength($minorTickLength) { |
||
1925 | |||
1926 | /** |
||
1927 | * Set the minor tick position. |
||
1928 | * |
||
1929 | * @param string $minorTickPosition The minor tick position. |
||
1930 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1931 | */ |
||
1932 | public function setMinorTickPosition($minorTickPosition) { |
||
1941 | |||
1942 | /** |
||
1943 | * Set the minor tick width. |
||
1944 | * |
||
1945 | * @param integer $minorTickWidth The minor tick width. |
||
1946 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1947 | */ |
||
1948 | public function setMinorTickWidth($minorTickWidth) { |
||
1952 | |||
1953 | /** |
||
1954 | * Set the offset. |
||
1955 | * |
||
1956 | * @param integer $offset The offset. |
||
1957 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1958 | */ |
||
1959 | public function setOffset($offset) { |
||
1963 | |||
1964 | /** |
||
1965 | * Set the opposite. |
||
1966 | * |
||
1967 | * @param boolean $opposite The opposite. |
||
1968 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1969 | */ |
||
1970 | public function setOpposite($opposite) { |
||
1974 | |||
1975 | /** |
||
1976 | * Set the plot bands. |
||
1977 | * |
||
1978 | * @param array $plotBands The plot bands. |
||
1979 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1980 | */ |
||
1981 | public function setPlotBands(array $plotBands = null) { |
||
1985 | |||
1986 | /** |
||
1987 | * Set the plot lines. |
||
1988 | * |
||
1989 | * @param array $plotLines The plot lines. |
||
1990 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
1991 | */ |
||
1992 | public function setPlotLines(array $plotLines = null) { |
||
1996 | |||
1997 | /** |
||
1998 | * Set the reversed. |
||
1999 | * |
||
2000 | * @param boolean $reversed The reversed. |
||
2001 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
2002 | */ |
||
2003 | public function setReversed($reversed) { |
||
2007 | |||
2008 | /** |
||
2009 | * Set the reversed stacks. |
||
2010 | * |
||
2011 | * @param boolean $reversedStacks The reversed stacks. |
||
2012 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
2013 | */ |
||
2014 | public function setReversedStacks($reversedStacks) { |
||
2018 | |||
2019 | /** |
||
2020 | * Set the show empty. |
||
2021 | * |
||
2022 | * @param boolean $showEmpty The show empty. |
||
2023 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
2024 | */ |
||
2025 | public function setShowEmpty($showEmpty) { |
||
2029 | |||
2030 | /** |
||
2031 | * Set the show first label. |
||
2032 | * |
||
2033 | * @param boolean $showFirstLabel The show first label. |
||
2034 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
2035 | */ |
||
2036 | public function setShowFirstLabel($showFirstLabel) { |
||
2040 | |||
2041 | /** |
||
2042 | * Set the show last label. |
||
2043 | * |
||
2044 | * @param boolean $showLastLabel The show last label. |
||
2045 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
2046 | */ |
||
2047 | public function setShowLastLabel($showLastLabel) { |
||
2051 | |||
2052 | /** |
||
2053 | * Set the soft max. |
||
2054 | * |
||
2055 | * @param integer $softMax The soft max. |
||
2056 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
2057 | */ |
||
2058 | public function setSoftMax($softMax) { |
||
2062 | |||
2063 | /** |
||
2064 | * Set the soft min. |
||
2065 | * |
||
2066 | * @param integer $softMin The soft min. |
||
2067 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
2068 | */ |
||
2069 | public function setSoftMin($softMin) { |
||
2073 | |||
2074 | /** |
||
2075 | * Set the stack labels. |
||
2076 | * |
||
2077 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsStackLabels $stackLabels The stack labels. |
||
2078 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
2079 | */ |
||
2080 | public function setStackLabels(\WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsStackLabels $stackLabels = null) { |
||
2084 | |||
2085 | /** |
||
2086 | * Set the start of week. |
||
2087 | * |
||
2088 | * @param integer $startOfWeek The start of week. |
||
2089 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
2090 | */ |
||
2091 | public function setStartOfWeek($startOfWeek) { |
||
2095 | |||
2096 | /** |
||
2097 | * Set the start on tick. |
||
2098 | * |
||
2099 | * @param boolean $startOnTick The start on tick. |
||
2100 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
2101 | */ |
||
2102 | public function setStartOnTick($startOnTick) { |
||
2106 | |||
2107 | /** |
||
2108 | * Set the stops. |
||
2109 | * |
||
2110 | * @param array $stops The stops. |
||
2111 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
2112 | */ |
||
2113 | public function setStops(array $stops = null) { |
||
2117 | |||
2118 | /** |
||
2119 | * Set the tick amount. |
||
2120 | * |
||
2121 | * @param integer $tickAmount The tick amount. |
||
2122 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
2123 | */ |
||
2124 | public function setTickAmount($tickAmount) { |
||
2128 | |||
2129 | /** |
||
2130 | * Set the tick color. |
||
2131 | * |
||
2132 | * @param string $tickColor The tick color. |
||
2133 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
2134 | */ |
||
2135 | public function setTickColor($tickColor) { |
||
2139 | |||
2140 | /** |
||
2141 | * Set the tick interval. |
||
2142 | * |
||
2143 | * @param integer $tickInterval The tick interval. |
||
2144 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
2145 | */ |
||
2146 | public function setTickInterval($tickInterval) { |
||
2150 | |||
2151 | /** |
||
2152 | * Set the tick length. |
||
2153 | * |
||
2154 | * @param integer $tickLength The tick length. |
||
2155 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
2156 | */ |
||
2157 | public function setTickLength($tickLength) { |
||
2161 | |||
2162 | /** |
||
2163 | * Set the tick pixel interval. |
||
2164 | * |
||
2165 | * @param integer $tickPixelInterval The tick pixel interval. |
||
2166 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
2167 | */ |
||
2168 | public function setTickPixelInterval($tickPixelInterval) { |
||
2172 | |||
2173 | /** |
||
2174 | * Set the tick position. |
||
2175 | * |
||
2176 | * @param string $tickPosition The tick position. |
||
2177 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
2178 | */ |
||
2179 | public function setTickPosition($tickPosition) { |
||
2188 | |||
2189 | /** |
||
2190 | * Set the tick positioner. |
||
2191 | * |
||
2192 | * @param string $tickPositioner The tick positioner. |
||
2193 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
2194 | */ |
||
2195 | public function setTickPositioner($tickPositioner) { |
||
2199 | |||
2200 | /** |
||
2201 | * Set the tick positions. |
||
2202 | * |
||
2203 | * @param array $tickPositions The tick positions. |
||
2204 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
2205 | */ |
||
2206 | public function setTickPositions(array $tickPositions = null) { |
||
2210 | |||
2211 | /** |
||
2212 | * Set the tick width. |
||
2213 | * |
||
2214 | * @param integer $tickWidth The tick width. |
||
2215 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
2216 | */ |
||
2217 | public function setTickWidth($tickWidth) { |
||
2221 | |||
2222 | /** |
||
2223 | * Set the tickmark placement. |
||
2224 | * |
||
2225 | * @param string $tickmarkPlacement The tickmark placement. |
||
2226 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
2227 | */ |
||
2228 | public function setTickmarkPlacement($tickmarkPlacement) { |
||
2238 | |||
2239 | /** |
||
2240 | * Set the title. |
||
2241 | * |
||
2242 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsTitle $title The title. |
||
2243 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
2244 | */ |
||
2245 | public function setTitle(\WBW\Bundle\HighchartsBundle\API\Chart\YAxis\HighchartsTitle $title = null) { |
||
2249 | |||
2250 | /** |
||
2251 | * Set the type. |
||
2252 | * |
||
2253 | * @param string $type The type. |
||
2254 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
2255 | */ |
||
2256 | public function setType($type) { |
||
2267 | |||
2268 | /** |
||
2269 | * Set the unique names. |
||
2270 | * |
||
2271 | * @param boolean $uniqueNames The unique names. |
||
2272 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
2273 | */ |
||
2274 | public function setUniqueNames($uniqueNames) { |
||
2278 | |||
2279 | /** |
||
2280 | * Set the units. |
||
2281 | * |
||
2282 | * @param array $units The units. |
||
2283 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
2284 | */ |
||
2285 | public function setUnits(array $units = null) { |
||
2289 | |||
2290 | /** |
||
2291 | * Set the visible. |
||
2292 | * |
||
2293 | * @param boolean $visible The visible. |
||
2294 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsYAxis Returns the highcharts y axis. |
||
2295 | */ |
||
2296 | public function setVisible($visible) { |
||
2300 | |||
2301 | /** |
||
2302 | * Convert into an array representing this instance. |
||
2303 | * |
||
2304 | * @return array Returns an array representing this instance. |
||
2305 | */ |
||
2306 | public function toArray() { |
||
2534 | |||
2535 | } |
||
2536 |
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..