Complex classes like HighchartsColumnrange 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 HighchartsColumnrange, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 25 | final class HighchartsColumnrange 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 | */ |
||
| 54 | private $borderColor = "#ffffff"; |
||
| 55 | |||
| 56 | /** |
||
| 57 | * Border radius. |
||
| 58 | * |
||
| 59 | * @var integer |
||
| 60 | */ |
||
| 61 | private $borderRadius = 0; |
||
| 62 | |||
| 63 | /** |
||
| 64 | * Border width. |
||
| 65 | * |
||
| 66 | * @var integer |
||
| 67 | */ |
||
| 68 | private $borderWidth = 1; |
||
| 69 | |||
| 70 | /** |
||
| 71 | * Class name. |
||
| 72 | * |
||
| 73 | * @var string |
||
| 74 | * @since 5.0.0 |
||
| 75 | */ |
||
| 76 | private $className; |
||
| 77 | |||
| 78 | /** |
||
| 79 | * Color. |
||
| 80 | * |
||
| 81 | * @var string |
||
| 82 | */ |
||
| 83 | private $color; |
||
| 84 | |||
| 85 | /** |
||
| 86 | * Color by point. |
||
| 87 | * |
||
| 88 | * @var boolean |
||
| 89 | * @since 2.0 |
||
| 90 | */ |
||
| 91 | private $colorByPoint = false; |
||
| 92 | |||
| 93 | /** |
||
| 94 | * Color index. |
||
| 95 | * |
||
| 96 | * @var integer |
||
| 97 | * @since 5.0.0 |
||
| 98 | */ |
||
| 99 | private $colorIndex; |
||
| 100 | |||
| 101 | /** |
||
| 102 | * Colors. |
||
| 103 | * |
||
| 104 | * @var array |
||
| 105 | * @since 3.0 |
||
| 106 | */ |
||
| 107 | private $colors; |
||
| 108 | |||
| 109 | /** |
||
| 110 | * Crisp. |
||
| 111 | * |
||
| 112 | * @var boolean |
||
| 113 | * @since 5.0.10 |
||
| 114 | */ |
||
| 115 | private $crisp = true; |
||
| 116 | |||
| 117 | /** |
||
| 118 | * Crop threshold. |
||
| 119 | * |
||
| 120 | * @var integer |
||
| 121 | */ |
||
| 122 | private $cropThreshold = 50; |
||
| 123 | |||
| 124 | /** |
||
| 125 | * Cursor. |
||
| 126 | * |
||
| 127 | * @var string |
||
| 128 | */ |
||
| 129 | private $cursor; |
||
| 130 | |||
| 131 | /** |
||
| 132 | * Data labels. |
||
| 133 | * |
||
| 134 | * @var array |
||
| 135 | * @since 2.3.0 |
||
| 136 | */ |
||
| 137 | private $dataLabels; |
||
| 138 | |||
| 139 | /** |
||
| 140 | * Depth. |
||
| 141 | * |
||
| 142 | * @var integer |
||
| 143 | * @since 4.0 |
||
| 144 | */ |
||
| 145 | private $depth = 25; |
||
| 146 | |||
| 147 | /** |
||
| 148 | * Description. |
||
| 149 | * |
||
| 150 | * @var string |
||
| 151 | * @since 5.0.0 |
||
| 152 | */ |
||
| 153 | private $description; |
||
| 154 | |||
| 155 | /** |
||
| 156 | * Edge color. |
||
| 157 | * |
||
| 158 | * @var string |
||
| 159 | */ |
||
| 160 | private $edgeColor; |
||
| 161 | |||
| 162 | /** |
||
| 163 | * Edge width. |
||
| 164 | * |
||
| 165 | * @var integer |
||
| 166 | */ |
||
| 167 | private $edgeWidth = 1; |
||
| 168 | |||
| 169 | /** |
||
| 170 | * Enable mouse tracking. |
||
| 171 | * |
||
| 172 | * @var boolean |
||
| 173 | */ |
||
| 174 | private $enableMouseTracking = true; |
||
| 175 | |||
| 176 | /** |
||
| 177 | * Events. |
||
| 178 | * |
||
| 179 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Columnrange\HighchartsEvents |
||
| 180 | */ |
||
| 181 | private $events; |
||
| 182 | |||
| 183 | /** |
||
| 184 | * Expose element to a11y. |
||
| 185 | * |
||
| 186 | * @var boolean |
||
| 187 | * @since 5.0.12 |
||
| 188 | */ |
||
| 189 | private $exposeElementToA11y; |
||
| 190 | |||
| 191 | /** |
||
| 192 | * Find nearest point by. |
||
| 193 | * |
||
| 194 | * @var string |
||
| 195 | * @since 5.0.10 |
||
| 196 | */ |
||
| 197 | private $findNearestPointBy; |
||
| 198 | |||
| 199 | /** |
||
| 200 | * Get extremes from all. |
||
| 201 | * |
||
| 202 | * @var boolean |
||
| 203 | * @since 4.1.6 |
||
| 204 | */ |
||
| 205 | private $getExtremesFromAll = false; |
||
| 206 | |||
| 207 | /** |
||
| 208 | * Group padding. |
||
| 209 | * |
||
| 210 | * @var integer |
||
| 211 | */ |
||
| 212 | private $groupPadding = 0.2; |
||
| 213 | |||
| 214 | /** |
||
| 215 | * Group z padding. |
||
| 216 | * |
||
| 217 | * @var integer |
||
| 218 | * @since 4.0 |
||
| 219 | */ |
||
| 220 | private $groupZPadding = 1; |
||
| 221 | |||
| 222 | /** |
||
| 223 | * Grouping. |
||
| 224 | * |
||
| 225 | * @var boolean |
||
| 226 | * @since 2.3.0 |
||
| 227 | */ |
||
| 228 | private $grouping = true; |
||
| 229 | |||
| 230 | /** |
||
| 231 | * Keys. |
||
| 232 | * |
||
| 233 | * @var array |
||
| 234 | * @since 4.1.6 |
||
| 235 | */ |
||
| 236 | private $keys; |
||
| 237 | |||
| 238 | /** |
||
| 239 | * Linked to. |
||
| 240 | * |
||
| 241 | * @var string |
||
| 242 | * @since 3.0 |
||
| 243 | */ |
||
| 244 | private $linkedTo; |
||
| 245 | |||
| 246 | /** |
||
| 247 | * Max point width. |
||
| 248 | * |
||
| 249 | * @var integer |
||
| 250 | * @since 4.1.8 |
||
| 251 | */ |
||
| 252 | private $maxPointWidth; |
||
| 253 | |||
| 254 | /** |
||
| 255 | * Min point length. |
||
| 256 | * |
||
| 257 | * @var integer |
||
| 258 | */ |
||
| 259 | private $minPointLength = 0; |
||
| 260 | |||
| 261 | /** |
||
| 262 | * Point. |
||
| 263 | * |
||
| 264 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Columnrange\HighchartsPoint |
||
| 265 | */ |
||
| 266 | private $point; |
||
| 267 | |||
| 268 | /** |
||
| 269 | * Point description formatter. |
||
| 270 | * |
||
| 271 | * @var string |
||
| 272 | * @since 5.0.12 |
||
| 273 | */ |
||
| 274 | private $pointDescriptionFormatter; |
||
| 275 | |||
| 276 | /** |
||
| 277 | * Point interval. |
||
| 278 | * |
||
| 279 | * @var integer |
||
| 280 | */ |
||
| 281 | private $pointInterval = 1; |
||
| 282 | |||
| 283 | /** |
||
| 284 | * Point interval unit. |
||
| 285 | * |
||
| 286 | * @var string |
||
| 287 | * @since 4.1.0 |
||
| 288 | */ |
||
| 289 | private $pointIntervalUnit; |
||
| 290 | |||
| 291 | /** |
||
| 292 | * Point padding. |
||
| 293 | * |
||
| 294 | * @var integer |
||
| 295 | */ |
||
| 296 | private $pointPadding = 0.1; |
||
| 297 | |||
| 298 | /** |
||
| 299 | * Point placement. |
||
| 300 | * |
||
| 301 | * @var string|integer |
||
| 302 | * @since 2.3.0 |
||
| 303 | */ |
||
| 304 | private $pointPlacement; |
||
| 305 | |||
| 306 | /** |
||
| 307 | * Point range. |
||
| 308 | * |
||
| 309 | * @var integer |
||
| 310 | * @since 2.3 |
||
| 311 | */ |
||
| 312 | private $pointRange; |
||
| 313 | |||
| 314 | /** |
||
| 315 | * Point start. |
||
| 316 | * |
||
| 317 | * @var integer |
||
| 318 | */ |
||
| 319 | private $pointStart = 0; |
||
| 320 | |||
| 321 | /** |
||
| 322 | * Point width. |
||
| 323 | * |
||
| 324 | * @var integer |
||
| 325 | * @since 1.2.5 |
||
| 326 | */ |
||
| 327 | private $pointWidth; |
||
| 328 | |||
| 329 | /** |
||
| 330 | * Selected. |
||
| 331 | * |
||
| 332 | * @var boolean |
||
| 333 | * @since 1.2.0 |
||
| 334 | */ |
||
| 335 | private $selected = false; |
||
| 336 | |||
| 337 | /** |
||
| 338 | * Shadow. |
||
| 339 | * |
||
| 340 | * @var boolean|array |
||
| 341 | */ |
||
| 342 | private $shadow = false; |
||
| 343 | |||
| 344 | /** |
||
| 345 | * Show checkbox. |
||
| 346 | * |
||
| 347 | * @var boolean |
||
| 348 | * @since 1.2.0 |
||
| 349 | */ |
||
| 350 | private $showCheckbox = false; |
||
| 351 | |||
| 352 | /** |
||
| 353 | * Show in legend. |
||
| 354 | * |
||
| 355 | * @var boolean |
||
| 356 | */ |
||
| 357 | private $showInLegend = true; |
||
| 358 | |||
| 359 | /** |
||
| 360 | * Skip keyboard navigation. |
||
| 361 | * |
||
| 362 | * @var boolean |
||
| 363 | * @since 5.0.12 |
||
| 364 | */ |
||
| 365 | private $skipKeyboardNavigation; |
||
| 366 | |||
| 367 | /** |
||
| 368 | * States. |
||
| 369 | * |
||
| 370 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Columnrange\HighchartsStates |
||
| 371 | */ |
||
| 372 | private $states; |
||
| 373 | |||
| 374 | /** |
||
| 375 | * Sticky tracking. |
||
| 376 | * |
||
| 377 | * @var boolean |
||
| 378 | * @since 2.0 |
||
| 379 | */ |
||
| 380 | private $stickyTracking = true; |
||
| 381 | |||
| 382 | /** |
||
| 383 | * Tooltip. |
||
| 384 | * |
||
| 385 | * @var array |
||
| 386 | * @since 2.3 |
||
| 387 | */ |
||
| 388 | private $tooltip; |
||
| 389 | |||
| 390 | /** |
||
| 391 | * Turbo threshold. |
||
| 392 | * |
||
| 393 | * @var integer |
||
| 394 | * @since 2.2 |
||
| 395 | */ |
||
| 396 | private $turboThreshold = 1000; |
||
| 397 | |||
| 398 | /** |
||
| 399 | * Visible. |
||
| 400 | * |
||
| 401 | * @var boolean |
||
| 402 | */ |
||
| 403 | private $visible = true; |
||
| 404 | |||
| 405 | /** |
||
| 406 | * Zone axis. |
||
| 407 | * |
||
| 408 | * @var string |
||
| 409 | * @since 4.1.0 |
||
| 410 | */ |
||
| 411 | private $zoneAxis = "y"; |
||
| 412 | |||
| 413 | /** |
||
| 414 | * Zones. |
||
| 415 | * |
||
| 416 | * @var array |
||
| 417 | * @since 4.1.0 |
||
| 418 | */ |
||
| 419 | private $zones; |
||
| 420 | |||
| 421 | /** |
||
| 422 | * Constructor. |
||
| 423 | * |
||
| 424 | * @param boolean $ignoreDefaultValues Ignore the default values. |
||
| 425 | */ |
||
| 426 | public function __construct($ignoreDefaultValues = true) { |
||
| 431 | |||
| 432 | /** |
||
| 433 | * Clear. |
||
| 434 | * |
||
| 435 | * @return void |
||
| 436 | */ |
||
| 437 | public function clear() { |
||
| 601 | |||
| 602 | /** |
||
| 603 | * Get the allow point select. |
||
| 604 | * |
||
| 605 | * @return boolean Returns the allow point select. |
||
| 606 | */ |
||
| 607 | public function getAllowPointSelect() { |
||
| 610 | |||
| 611 | /** |
||
| 612 | * Get the animation. |
||
| 613 | * |
||
| 614 | * @return boolean Returns the animation. |
||
| 615 | */ |
||
| 616 | public function getAnimation() { |
||
| 619 | |||
| 620 | /** |
||
| 621 | * Get the animation limit. |
||
| 622 | * |
||
| 623 | * @return integer Returns the animation limit. |
||
| 624 | */ |
||
| 625 | public function getAnimationLimit() { |
||
| 628 | |||
| 629 | /** |
||
| 630 | * Get the border color. |
||
| 631 | * |
||
| 632 | * @return string Returns the border color. |
||
| 633 | */ |
||
| 634 | public function getBorderColor() { |
||
| 637 | |||
| 638 | /** |
||
| 639 | * Get the border radius. |
||
| 640 | * |
||
| 641 | * @return integer Returns the border radius. |
||
| 642 | */ |
||
| 643 | public function getBorderRadius() { |
||
| 646 | |||
| 647 | /** |
||
| 648 | * Get the border width. |
||
| 649 | * |
||
| 650 | * @return integer Returns the border width. |
||
| 651 | */ |
||
| 652 | public function getBorderWidth() { |
||
| 655 | |||
| 656 | /** |
||
| 657 | * Get the class name. |
||
| 658 | * |
||
| 659 | * @return string Returns the class name. |
||
| 660 | */ |
||
| 661 | public function getClassName() { |
||
| 664 | |||
| 665 | /** |
||
| 666 | * Get the color. |
||
| 667 | * |
||
| 668 | * @return string Returns the color. |
||
| 669 | */ |
||
| 670 | public function getColor() { |
||
| 673 | |||
| 674 | /** |
||
| 675 | * Get the color by point. |
||
| 676 | * |
||
| 677 | * @return boolean Returns the color by point. |
||
| 678 | */ |
||
| 679 | public function getColorByPoint() { |
||
| 682 | |||
| 683 | /** |
||
| 684 | * Get the color index. |
||
| 685 | * |
||
| 686 | * @return integer Returns the color index. |
||
| 687 | */ |
||
| 688 | public function getColorIndex() { |
||
| 691 | |||
| 692 | /** |
||
| 693 | * Get the colors. |
||
| 694 | * |
||
| 695 | * @return array Returns the colors. |
||
| 696 | */ |
||
| 697 | public function getColors() { |
||
| 700 | |||
| 701 | /** |
||
| 702 | * Get the crisp. |
||
| 703 | * |
||
| 704 | * @return boolean Returns the crisp. |
||
| 705 | */ |
||
| 706 | public function getCrisp() { |
||
| 709 | |||
| 710 | /** |
||
| 711 | * Get the crop threshold. |
||
| 712 | * |
||
| 713 | * @return integer Returns the crop threshold. |
||
| 714 | */ |
||
| 715 | public function getCropThreshold() { |
||
| 718 | |||
| 719 | /** |
||
| 720 | * Get the cursor. |
||
| 721 | * |
||
| 722 | * @return string Returns the cursor. |
||
| 723 | */ |
||
| 724 | public function getCursor() { |
||
| 727 | |||
| 728 | /** |
||
| 729 | * Get the data labels. |
||
| 730 | * |
||
| 731 | * @return array Returns the data labels. |
||
| 732 | */ |
||
| 733 | public function getDataLabels() { |
||
| 736 | |||
| 737 | /** |
||
| 738 | * Get the depth. |
||
| 739 | * |
||
| 740 | * @return integer Returns the depth. |
||
| 741 | */ |
||
| 742 | public function getDepth() { |
||
| 745 | |||
| 746 | /** |
||
| 747 | * Get the description. |
||
| 748 | * |
||
| 749 | * @return string Returns the description. |
||
| 750 | */ |
||
| 751 | public function getDescription() { |
||
| 754 | |||
| 755 | /** |
||
| 756 | * Get the edge color. |
||
| 757 | * |
||
| 758 | * @return string Returns the edge color. |
||
| 759 | */ |
||
| 760 | public function getEdgeColor() { |
||
| 763 | |||
| 764 | /** |
||
| 765 | * Get the edge width. |
||
| 766 | * |
||
| 767 | * @return integer Returns the edge width. |
||
| 768 | */ |
||
| 769 | public function getEdgeWidth() { |
||
| 772 | |||
| 773 | /** |
||
| 774 | * Get the enable mouse tracking. |
||
| 775 | * |
||
| 776 | * @return boolean Returns the enable mouse tracking. |
||
| 777 | */ |
||
| 778 | public function getEnableMouseTracking() { |
||
| 781 | |||
| 782 | /** |
||
| 783 | * Get the events. |
||
| 784 | * |
||
| 785 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Columnrange\HighchartsEvents Returns the events. |
||
| 786 | */ |
||
| 787 | public function getEvents() { |
||
| 790 | |||
| 791 | /** |
||
| 792 | * Get the expose element to a11y. |
||
| 793 | * |
||
| 794 | * @return boolean Returns the expose element to a11y. |
||
| 795 | */ |
||
| 796 | public function getExposeElementToA11y() { |
||
| 799 | |||
| 800 | /** |
||
| 801 | * Get the find nearest point by. |
||
| 802 | * |
||
| 803 | * @return string Returns the find nearest point by. |
||
| 804 | */ |
||
| 805 | public function getFindNearestPointBy() { |
||
| 808 | |||
| 809 | /** |
||
| 810 | * Get the get extremes from all. |
||
| 811 | * |
||
| 812 | * @return boolean Returns the get extremes from all. |
||
| 813 | */ |
||
| 814 | public function getGetExtremesFromAll() { |
||
| 817 | |||
| 818 | /** |
||
| 819 | * Get the group padding. |
||
| 820 | * |
||
| 821 | * @return integer Returns the group padding. |
||
| 822 | */ |
||
| 823 | public function getGroupPadding() { |
||
| 826 | |||
| 827 | /** |
||
| 828 | * Get the group z padding. |
||
| 829 | * |
||
| 830 | * @return integer Returns the group z padding. |
||
| 831 | */ |
||
| 832 | public function getGroupZPadding() { |
||
| 835 | |||
| 836 | /** |
||
| 837 | * Get the grouping. |
||
| 838 | * |
||
| 839 | * @return boolean Returns the grouping. |
||
| 840 | */ |
||
| 841 | public function getGrouping() { |
||
| 844 | |||
| 845 | /** |
||
| 846 | * Get the keys. |
||
| 847 | * |
||
| 848 | * @return array Returns the keys. |
||
| 849 | */ |
||
| 850 | public function getKeys() { |
||
| 853 | |||
| 854 | /** |
||
| 855 | * Get the linked to. |
||
| 856 | * |
||
| 857 | * @return string Returns the linked to. |
||
| 858 | */ |
||
| 859 | public function getLinkedTo() { |
||
| 862 | |||
| 863 | /** |
||
| 864 | * Get the max point width. |
||
| 865 | * |
||
| 866 | * @return integer Returns the max point width. |
||
| 867 | */ |
||
| 868 | public function getMaxPointWidth() { |
||
| 871 | |||
| 872 | /** |
||
| 873 | * Get the min point length. |
||
| 874 | * |
||
| 875 | * @return integer Returns the min point length. |
||
| 876 | */ |
||
| 877 | public function getMinPointLength() { |
||
| 880 | |||
| 881 | /** |
||
| 882 | * Get the point. |
||
| 883 | * |
||
| 884 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Columnrange\HighchartsPoint Returns the point. |
||
| 885 | */ |
||
| 886 | public function getPoint() { |
||
| 889 | |||
| 890 | /** |
||
| 891 | * Get the point description formatter. |
||
| 892 | * |
||
| 893 | * @return string Returns the point description formatter. |
||
| 894 | */ |
||
| 895 | public function getPointDescriptionFormatter() { |
||
| 898 | |||
| 899 | /** |
||
| 900 | * Get the point interval. |
||
| 901 | * |
||
| 902 | * @return integer Returns the point interval. |
||
| 903 | */ |
||
| 904 | public function getPointInterval() { |
||
| 907 | |||
| 908 | /** |
||
| 909 | * Get the point interval unit. |
||
| 910 | * |
||
| 911 | * @return string Returns the point interval unit. |
||
| 912 | */ |
||
| 913 | public function getPointIntervalUnit() { |
||
| 916 | |||
| 917 | /** |
||
| 918 | * Get the point padding. |
||
| 919 | * |
||
| 920 | * @return integer Returns the point padding. |
||
| 921 | */ |
||
| 922 | public function getPointPadding() { |
||
| 925 | |||
| 926 | /** |
||
| 927 | * Get the point placement. |
||
| 928 | * |
||
| 929 | * @return string|integer Returns the point placement. |
||
| 930 | */ |
||
| 931 | public function getPointPlacement() { |
||
| 934 | |||
| 935 | /** |
||
| 936 | * Get the point range. |
||
| 937 | * |
||
| 938 | * @return integer Returns the point range. |
||
| 939 | */ |
||
| 940 | public function getPointRange() { |
||
| 943 | |||
| 944 | /** |
||
| 945 | * Get the point start. |
||
| 946 | * |
||
| 947 | * @return integer Returns the point start. |
||
| 948 | */ |
||
| 949 | public function getPointStart() { |
||
| 952 | |||
| 953 | /** |
||
| 954 | * Get the point width. |
||
| 955 | * |
||
| 956 | * @return integer Returns the point width. |
||
| 957 | */ |
||
| 958 | public function getPointWidth() { |
||
| 961 | |||
| 962 | /** |
||
| 963 | * Get the selected. |
||
| 964 | * |
||
| 965 | * @return boolean Returns the selected. |
||
| 966 | */ |
||
| 967 | public function getSelected() { |
||
| 970 | |||
| 971 | /** |
||
| 972 | * Get the shadow. |
||
| 973 | * |
||
| 974 | * @return boolean|array Returns the shadow. |
||
| 975 | */ |
||
| 976 | public function getShadow() { |
||
| 979 | |||
| 980 | /** |
||
| 981 | * Get the show checkbox. |
||
| 982 | * |
||
| 983 | * @return boolean Returns the show checkbox. |
||
| 984 | */ |
||
| 985 | public function getShowCheckbox() { |
||
| 988 | |||
| 989 | /** |
||
| 990 | * Get the show in legend. |
||
| 991 | * |
||
| 992 | * @return boolean Returns the show in legend. |
||
| 993 | */ |
||
| 994 | public function getShowInLegend() { |
||
| 997 | |||
| 998 | /** |
||
| 999 | * Get the skip keyboard navigation. |
||
| 1000 | * |
||
| 1001 | * @return boolean Returns the skip keyboard navigation. |
||
| 1002 | */ |
||
| 1003 | public function getSkipKeyboardNavigation() { |
||
| 1006 | |||
| 1007 | /** |
||
| 1008 | * Get the states. |
||
| 1009 | * |
||
| 1010 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Columnrange\HighchartsStates Returns the states. |
||
| 1011 | */ |
||
| 1012 | public function getStates() { |
||
| 1015 | |||
| 1016 | /** |
||
| 1017 | * Get the sticky tracking. |
||
| 1018 | * |
||
| 1019 | * @return boolean Returns the sticky tracking. |
||
| 1020 | */ |
||
| 1021 | public function getStickyTracking() { |
||
| 1024 | |||
| 1025 | /** |
||
| 1026 | * Get the tooltip. |
||
| 1027 | * |
||
| 1028 | * @return array Returns the tooltip. |
||
| 1029 | */ |
||
| 1030 | public function getTooltip() { |
||
| 1033 | |||
| 1034 | /** |
||
| 1035 | * Get the turbo threshold. |
||
| 1036 | * |
||
| 1037 | * @return integer Returns the turbo threshold. |
||
| 1038 | */ |
||
| 1039 | public function getTurboThreshold() { |
||
| 1042 | |||
| 1043 | /** |
||
| 1044 | * Get the visible. |
||
| 1045 | * |
||
| 1046 | * @return boolean Returns the visible. |
||
| 1047 | */ |
||
| 1048 | public function getVisible() { |
||
| 1051 | |||
| 1052 | /** |
||
| 1053 | * Get the zone axis. |
||
| 1054 | * |
||
| 1055 | * @return string Returns the zone axis. |
||
| 1056 | */ |
||
| 1057 | public function getZoneAxis() { |
||
| 1060 | |||
| 1061 | /** |
||
| 1062 | * Get the zones. |
||
| 1063 | * |
||
| 1064 | * @return array Returns the zones. |
||
| 1065 | */ |
||
| 1066 | public function getZones() { |
||
| 1069 | |||
| 1070 | /** |
||
| 1071 | * Serialize this instance. |
||
| 1072 | * |
||
| 1073 | * @return array Returns an array representing this instance. |
||
| 1074 | */ |
||
| 1075 | public function jsonSerialize() { |
||
| 1078 | |||
| 1079 | /** |
||
| 1080 | * Create a new events. |
||
| 1081 | * |
||
| 1082 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Columnrange\HighchartsEvents Returns the events. |
||
| 1083 | */ |
||
| 1084 | public function newEvents() { |
||
| 1088 | |||
| 1089 | /** |
||
| 1090 | * Create a new point. |
||
| 1091 | * |
||
| 1092 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Columnrange\HighchartsPoint Returns the point. |
||
| 1093 | */ |
||
| 1094 | public function newPoint() { |
||
| 1098 | |||
| 1099 | /** |
||
| 1100 | * Create a new states. |
||
| 1101 | * |
||
| 1102 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Columnrange\HighchartsStates Returns the states. |
||
| 1103 | */ |
||
| 1104 | public function newStates() { |
||
| 1108 | |||
| 1109 | /** |
||
| 1110 | * Set the allow point select. |
||
| 1111 | * |
||
| 1112 | * @param boolean $allowPointSelect The allow point select. |
||
| 1113 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1114 | */ |
||
| 1115 | public function setAllowPointSelect($allowPointSelect) { |
||
| 1119 | |||
| 1120 | /** |
||
| 1121 | * Set the animation. |
||
| 1122 | * |
||
| 1123 | * @param boolean $animation The animation. |
||
| 1124 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1125 | */ |
||
| 1126 | public function setAnimation($animation) { |
||
| 1130 | |||
| 1131 | /** |
||
| 1132 | * Set the animation limit. |
||
| 1133 | * |
||
| 1134 | * @param integer $animationLimit The animation limit. |
||
| 1135 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1136 | */ |
||
| 1137 | public function setAnimationLimit($animationLimit) { |
||
| 1141 | |||
| 1142 | /** |
||
| 1143 | * Set the border color. |
||
| 1144 | * |
||
| 1145 | * @param string $borderColor The border color. |
||
| 1146 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1147 | */ |
||
| 1148 | public function setBorderColor($borderColor) { |
||
| 1152 | |||
| 1153 | /** |
||
| 1154 | * Set the border radius. |
||
| 1155 | * |
||
| 1156 | * @param integer $borderRadius The border radius. |
||
| 1157 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1158 | */ |
||
| 1159 | public function setBorderRadius($borderRadius) { |
||
| 1163 | |||
| 1164 | /** |
||
| 1165 | * Set the border width. |
||
| 1166 | * |
||
| 1167 | * @param integer $borderWidth The border width. |
||
| 1168 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1169 | */ |
||
| 1170 | public function setBorderWidth($borderWidth) { |
||
| 1174 | |||
| 1175 | /** |
||
| 1176 | * Set the class name. |
||
| 1177 | * |
||
| 1178 | * @param string $className The class name. |
||
| 1179 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1180 | */ |
||
| 1181 | public function setClassName($className) { |
||
| 1185 | |||
| 1186 | /** |
||
| 1187 | * Set the color. |
||
| 1188 | * |
||
| 1189 | * @param string $color The color. |
||
| 1190 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1191 | */ |
||
| 1192 | public function setColor($color) { |
||
| 1196 | |||
| 1197 | /** |
||
| 1198 | * Set the color by point. |
||
| 1199 | * |
||
| 1200 | * @param boolean $colorByPoint The color by point. |
||
| 1201 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1202 | */ |
||
| 1203 | public function setColorByPoint($colorByPoint) { |
||
| 1207 | |||
| 1208 | /** |
||
| 1209 | * Set the color index. |
||
| 1210 | * |
||
| 1211 | * @param integer $colorIndex The color index. |
||
| 1212 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1213 | */ |
||
| 1214 | public function setColorIndex($colorIndex) { |
||
| 1218 | |||
| 1219 | /** |
||
| 1220 | * Set the colors. |
||
| 1221 | * |
||
| 1222 | * @param array $colors The colors. |
||
| 1223 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1224 | */ |
||
| 1225 | public function setColors(array $colors = null) { |
||
| 1229 | |||
| 1230 | /** |
||
| 1231 | * Set the crisp. |
||
| 1232 | * |
||
| 1233 | * @param boolean $crisp The crisp. |
||
| 1234 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1235 | */ |
||
| 1236 | public function setCrisp($crisp) { |
||
| 1240 | |||
| 1241 | /** |
||
| 1242 | * Set the crop threshold. |
||
| 1243 | * |
||
| 1244 | * @param integer $cropThreshold The crop threshold. |
||
| 1245 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1246 | */ |
||
| 1247 | public function setCropThreshold($cropThreshold) { |
||
| 1251 | |||
| 1252 | /** |
||
| 1253 | * Set the cursor. |
||
| 1254 | * |
||
| 1255 | * @param string $cursor The cursor. |
||
| 1256 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1257 | */ |
||
| 1258 | public function setCursor($cursor) { |
||
| 1271 | |||
| 1272 | /** |
||
| 1273 | * Set the data labels. |
||
| 1274 | * |
||
| 1275 | * @param array $dataLabels The data labels. |
||
| 1276 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1277 | */ |
||
| 1278 | public function setDataLabels(array $dataLabels = null) { |
||
| 1282 | |||
| 1283 | /** |
||
| 1284 | * Set the depth. |
||
| 1285 | * |
||
| 1286 | * @param integer $depth The depth. |
||
| 1287 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1288 | */ |
||
| 1289 | public function setDepth($depth) { |
||
| 1293 | |||
| 1294 | /** |
||
| 1295 | * Set the description. |
||
| 1296 | * |
||
| 1297 | * @param string $description The description. |
||
| 1298 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1299 | */ |
||
| 1300 | public function setDescription($description) { |
||
| 1304 | |||
| 1305 | /** |
||
| 1306 | * Set the edge color. |
||
| 1307 | * |
||
| 1308 | * @param string $edgeColor The edge color. |
||
| 1309 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1310 | */ |
||
| 1311 | public function setEdgeColor($edgeColor) { |
||
| 1315 | |||
| 1316 | /** |
||
| 1317 | * Set the edge width. |
||
| 1318 | * |
||
| 1319 | * @param integer $edgeWidth The edge width. |
||
| 1320 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1321 | */ |
||
| 1322 | public function setEdgeWidth($edgeWidth) { |
||
| 1326 | |||
| 1327 | /** |
||
| 1328 | * Set the enable mouse tracking. |
||
| 1329 | * |
||
| 1330 | * @param boolean $enableMouseTracking The enable mouse tracking. |
||
| 1331 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1332 | */ |
||
| 1333 | public function setEnableMouseTracking($enableMouseTracking) { |
||
| 1337 | |||
| 1338 | /** |
||
| 1339 | * Set the events. |
||
| 1340 | * |
||
| 1341 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Columnrange\HighchartsEvents $events The events. |
||
| 1342 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1343 | */ |
||
| 1344 | public function setEvents(\WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Columnrange\HighchartsEvents $events = null) { |
||
| 1348 | |||
| 1349 | /** |
||
| 1350 | * Set the expose element to a11y. |
||
| 1351 | * |
||
| 1352 | * @param boolean $exposeElementToA11y The expose element to a11y. |
||
| 1353 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1354 | */ |
||
| 1355 | public function setExposeElementToA11y($exposeElementToA11y) { |
||
| 1359 | |||
| 1360 | /** |
||
| 1361 | * Set the find nearest point by. |
||
| 1362 | * |
||
| 1363 | * @param string $findNearestPointBy The find nearest point by. |
||
| 1364 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1365 | */ |
||
| 1366 | public function setFindNearestPointBy($findNearestPointBy) { |
||
| 1375 | |||
| 1376 | /** |
||
| 1377 | * Set the get extremes from all. |
||
| 1378 | * |
||
| 1379 | * @param boolean $getExtremesFromAll The get extremes from all. |
||
| 1380 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1381 | */ |
||
| 1382 | public function setGetExtremesFromAll($getExtremesFromAll) { |
||
| 1386 | |||
| 1387 | /** |
||
| 1388 | * Set the group padding. |
||
| 1389 | * |
||
| 1390 | * @param integer $groupPadding The group padding. |
||
| 1391 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1392 | */ |
||
| 1393 | public function setGroupPadding($groupPadding) { |
||
| 1397 | |||
| 1398 | /** |
||
| 1399 | * Set the group z padding. |
||
| 1400 | * |
||
| 1401 | * @param integer $groupZPadding The group z padding. |
||
| 1402 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1403 | */ |
||
| 1404 | public function setGroupZPadding($groupZPadding) { |
||
| 1408 | |||
| 1409 | /** |
||
| 1410 | * Set the grouping. |
||
| 1411 | * |
||
| 1412 | * @param boolean $grouping The grouping. |
||
| 1413 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1414 | */ |
||
| 1415 | public function setGrouping($grouping) { |
||
| 1419 | |||
| 1420 | /** |
||
| 1421 | * Set the keys. |
||
| 1422 | * |
||
| 1423 | * @param array $keys The keys. |
||
| 1424 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1425 | */ |
||
| 1426 | public function setKeys(array $keys = null) { |
||
| 1430 | |||
| 1431 | /** |
||
| 1432 | * Set the linked to. |
||
| 1433 | * |
||
| 1434 | * @param string $linkedTo The linked to. |
||
| 1435 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1436 | */ |
||
| 1437 | public function setLinkedTo($linkedTo) { |
||
| 1441 | |||
| 1442 | /** |
||
| 1443 | * Set the max point width. |
||
| 1444 | * |
||
| 1445 | * @param integer $maxPointWidth The max point width. |
||
| 1446 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1447 | */ |
||
| 1448 | public function setMaxPointWidth($maxPointWidth) { |
||
| 1452 | |||
| 1453 | /** |
||
| 1454 | * Set the min point length. |
||
| 1455 | * |
||
| 1456 | * @param integer $minPointLength The min point length. |
||
| 1457 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1458 | */ |
||
| 1459 | public function setMinPointLength($minPointLength) { |
||
| 1463 | |||
| 1464 | /** |
||
| 1465 | * Set the point. |
||
| 1466 | * |
||
| 1467 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Columnrange\HighchartsPoint $point The point. |
||
| 1468 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1469 | */ |
||
| 1470 | public function setPoint(\WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Columnrange\HighchartsPoint $point = null) { |
||
| 1474 | |||
| 1475 | /** |
||
| 1476 | * Set the point description formatter. |
||
| 1477 | * |
||
| 1478 | * @param string $pointDescriptionFormatter The point description formatter. |
||
| 1479 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1480 | */ |
||
| 1481 | public function setPointDescriptionFormatter($pointDescriptionFormatter) { |
||
| 1485 | |||
| 1486 | /** |
||
| 1487 | * Set the point interval. |
||
| 1488 | * |
||
| 1489 | * @param integer $pointInterval The point interval. |
||
| 1490 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1491 | */ |
||
| 1492 | public function setPointInterval($pointInterval) { |
||
| 1496 | |||
| 1497 | /** |
||
| 1498 | * Set the point interval unit. |
||
| 1499 | * |
||
| 1500 | * @param string $pointIntervalUnit The point interval unit. |
||
| 1501 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1502 | */ |
||
| 1503 | public function setPointIntervalUnit($pointIntervalUnit) { |
||
| 1514 | |||
| 1515 | /** |
||
| 1516 | * Set the point padding. |
||
| 1517 | * |
||
| 1518 | * @param integer $pointPadding The point padding. |
||
| 1519 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1520 | */ |
||
| 1521 | public function setPointPadding($pointPadding) { |
||
| 1525 | |||
| 1526 | /** |
||
| 1527 | * Set the point placement. |
||
| 1528 | * |
||
| 1529 | * @param string|integer $pointPlacement The point placement. |
||
| 1530 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1531 | */ |
||
| 1532 | public function setPointPlacement($pointPlacement) { |
||
| 1542 | |||
| 1543 | /** |
||
| 1544 | * Set the point range. |
||
| 1545 | * |
||
| 1546 | * @param integer $pointRange The point range. |
||
| 1547 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1548 | */ |
||
| 1549 | public function setPointRange($pointRange) { |
||
| 1553 | |||
| 1554 | /** |
||
| 1555 | * Set the point start. |
||
| 1556 | * |
||
| 1557 | * @param integer $pointStart The point start. |
||
| 1558 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1559 | */ |
||
| 1560 | public function setPointStart($pointStart) { |
||
| 1564 | |||
| 1565 | /** |
||
| 1566 | * Set the point width. |
||
| 1567 | * |
||
| 1568 | * @param integer $pointWidth The point width. |
||
| 1569 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1570 | */ |
||
| 1571 | public function setPointWidth($pointWidth) { |
||
| 1575 | |||
| 1576 | /** |
||
| 1577 | * Set the selected. |
||
| 1578 | * |
||
| 1579 | * @param boolean $selected The selected. |
||
| 1580 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1581 | */ |
||
| 1582 | public function setSelected($selected) { |
||
| 1586 | |||
| 1587 | /** |
||
| 1588 | * Set the shadow. |
||
| 1589 | * |
||
| 1590 | * @param boolean|array $shadow The shadow. |
||
| 1591 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1592 | */ |
||
| 1593 | public function setShadow($shadow) { |
||
| 1597 | |||
| 1598 | /** |
||
| 1599 | * Set the show checkbox. |
||
| 1600 | * |
||
| 1601 | * @param boolean $showCheckbox The show checkbox. |
||
| 1602 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1603 | */ |
||
| 1604 | public function setShowCheckbox($showCheckbox) { |
||
| 1608 | |||
| 1609 | /** |
||
| 1610 | * Set the show in legend. |
||
| 1611 | * |
||
| 1612 | * @param boolean $showInLegend The show in legend. |
||
| 1613 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1614 | */ |
||
| 1615 | public function setShowInLegend($showInLegend) { |
||
| 1619 | |||
| 1620 | /** |
||
| 1621 | * Set the skip keyboard navigation. |
||
| 1622 | * |
||
| 1623 | * @param boolean $skipKeyboardNavigation The skip keyboard navigation. |
||
| 1624 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1625 | */ |
||
| 1626 | public function setSkipKeyboardNavigation($skipKeyboardNavigation) { |
||
| 1630 | |||
| 1631 | /** |
||
| 1632 | * Set the states. |
||
| 1633 | * |
||
| 1634 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Columnrange\HighchartsStates $states The states. |
||
| 1635 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1636 | */ |
||
| 1637 | public function setStates(\WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\Columnrange\HighchartsStates $states = null) { |
||
| 1641 | |||
| 1642 | /** |
||
| 1643 | * Set the sticky tracking. |
||
| 1644 | * |
||
| 1645 | * @param boolean $stickyTracking The sticky tracking. |
||
| 1646 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1647 | */ |
||
| 1648 | public function setStickyTracking($stickyTracking) { |
||
| 1652 | |||
| 1653 | /** |
||
| 1654 | * Set the tooltip. |
||
| 1655 | * |
||
| 1656 | * @param array $tooltip The tooltip. |
||
| 1657 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1658 | */ |
||
| 1659 | public function setTooltip(array $tooltip = null) { |
||
| 1663 | |||
| 1664 | /** |
||
| 1665 | * Set the turbo threshold. |
||
| 1666 | * |
||
| 1667 | * @param integer $turboThreshold The turbo threshold. |
||
| 1668 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1669 | */ |
||
| 1670 | public function setTurboThreshold($turboThreshold) { |
||
| 1674 | |||
| 1675 | /** |
||
| 1676 | * Set the visible. |
||
| 1677 | * |
||
| 1678 | * @param boolean $visible The visible. |
||
| 1679 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1680 | */ |
||
| 1681 | public function setVisible($visible) { |
||
| 1685 | |||
| 1686 | /** |
||
| 1687 | * Set the zone axis. |
||
| 1688 | * |
||
| 1689 | * @param string $zoneAxis The zone axis. |
||
| 1690 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1691 | */ |
||
| 1692 | public function setZoneAxis($zoneAxis) { |
||
| 1696 | |||
| 1697 | /** |
||
| 1698 | * Set the zones. |
||
| 1699 | * |
||
| 1700 | * @param array $zones The zones. |
||
| 1701 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\PlotOptions\HighchartsColumnrange Returns the highcharts columnrange. |
||
| 1702 | */ |
||
| 1703 | public function setZones(array $zones = null) { |
||
| 1707 | |||
| 1708 | /** |
||
| 1709 | * Convert into an array representing this instance. |
||
| 1710 | * |
||
| 1711 | * @return array Returns an array representing this instance. |
||
| 1712 | */ |
||
| 1713 | public function toArray() { |
||
| 1883 | |||
| 1884 | } |
||
| 1885 |
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..