Complex classes like HighchartsErrorbar 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 HighchartsErrorbar, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 25 | final class HighchartsErrorbar 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 limit. |
||
| 37 | * |
||
| 38 | * @var integer |
||
| 39 | */ |
||
| 40 | private $animationLimit; |
||
| 41 | |||
| 42 | /** |
||
| 43 | * Class name. |
||
| 44 | * |
||
| 45 | * @var string |
||
| 46 | * @since 5.0.0 |
||
| 47 | */ |
||
| 48 | private $className; |
||
| 49 | |||
| 50 | /** |
||
| 51 | * Color. |
||
| 52 | * |
||
| 53 | * @var string |
||
| 54 | * @since 3.0 |
||
| 55 | */ |
||
| 56 | private $color = "#000000"; |
||
| 57 | |||
| 58 | /** |
||
| 59 | * Color by point. |
||
| 60 | * |
||
| 61 | * @var boolean |
||
| 62 | * @since 2.0 |
||
| 63 | */ |
||
| 64 | private $colorByPoint = false; |
||
| 65 | |||
| 66 | /** |
||
| 67 | * Color index. |
||
| 68 | * |
||
| 69 | * @var integer |
||
| 70 | * @since 5.0.0 |
||
| 71 | */ |
||
| 72 | private $colorIndex; |
||
| 73 | |||
| 74 | /** |
||
| 75 | * Colors. |
||
| 76 | * |
||
| 77 | * @var array |
||
| 78 | * @since 3.0 |
||
| 79 | */ |
||
| 80 | private $colors; |
||
| 81 | |||
| 82 | /** |
||
| 83 | * Crisp. |
||
| 84 | * |
||
| 85 | * @var boolean |
||
| 86 | * @since 5.0.10 |
||
| 87 | */ |
||
| 88 | private $crisp = true; |
||
| 89 | |||
| 90 | /** |
||
| 91 | * Cursor. |
||
| 92 | * |
||
| 93 | * @var string |
||
| 94 | */ |
||
| 95 | private $cursor; |
||
| 96 | |||
| 97 | /** |
||
| 98 | * Data. |
||
| 99 | * |
||
| 100 | * @var array |
||
| 101 | */ |
||
| 102 | private $data; |
||
| 103 | |||
| 104 | /** |
||
| 105 | * Depth. |
||
| 106 | * |
||
| 107 | * @var integer |
||
| 108 | * @since 4.0 |
||
| 109 | */ |
||
| 110 | private $depth = 25; |
||
| 111 | |||
| 112 | /** |
||
| 113 | * Description. |
||
| 114 | * |
||
| 115 | * @var string |
||
| 116 | * @since 5.0.0 |
||
| 117 | */ |
||
| 118 | private $description; |
||
| 119 | |||
| 120 | /** |
||
| 121 | * Edge color. |
||
| 122 | * |
||
| 123 | * @var string |
||
| 124 | */ |
||
| 125 | private $edgeColor; |
||
| 126 | |||
| 127 | /** |
||
| 128 | * Edge width. |
||
| 129 | * |
||
| 130 | * @var integer |
||
| 131 | */ |
||
| 132 | private $edgeWidth = 1; |
||
| 133 | |||
| 134 | /** |
||
| 135 | * Enable mouse tracking. |
||
| 136 | * |
||
| 137 | * @var boolean |
||
| 138 | */ |
||
| 139 | private $enableMouseTracking = true; |
||
| 140 | |||
| 141 | /** |
||
| 142 | * Events. |
||
| 143 | * |
||
| 144 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\Series\Errorbar\HighchartsEvents |
||
| 145 | */ |
||
| 146 | private $events; |
||
| 147 | |||
| 148 | /** |
||
| 149 | * Expose element to a11y. |
||
| 150 | * |
||
| 151 | * @var boolean |
||
| 152 | * @since 5.0.12 |
||
| 153 | */ |
||
| 154 | private $exposeElementToA11y; |
||
| 155 | |||
| 156 | /** |
||
| 157 | * Find nearest point by. |
||
| 158 | * |
||
| 159 | * @var string |
||
| 160 | * @since 5.0.10 |
||
| 161 | */ |
||
| 162 | private $findNearestPointBy; |
||
| 163 | |||
| 164 | /** |
||
| 165 | * Get extremes from all. |
||
| 166 | * |
||
| 167 | * @var boolean |
||
| 168 | * @since 4.1.6 |
||
| 169 | */ |
||
| 170 | private $getExtremesFromAll = false; |
||
| 171 | |||
| 172 | /** |
||
| 173 | * Group z padding. |
||
| 174 | * |
||
| 175 | * @var integer |
||
| 176 | * @since 4.0 |
||
| 177 | */ |
||
| 178 | private $groupZPadding = 1; |
||
| 179 | |||
| 180 | /** |
||
| 181 | * Id. |
||
| 182 | * |
||
| 183 | * @var string |
||
| 184 | * @since 1.2.0 |
||
| 185 | */ |
||
| 186 | private $id; |
||
| 187 | |||
| 188 | /** |
||
| 189 | * Index. |
||
| 190 | * |
||
| 191 | * @var integer |
||
| 192 | * @since 2.3.0 |
||
| 193 | */ |
||
| 194 | private $index; |
||
| 195 | |||
| 196 | /** |
||
| 197 | * Keys. |
||
| 198 | * |
||
| 199 | * @var array |
||
| 200 | * @since 4.1.6 |
||
| 201 | */ |
||
| 202 | private $keys; |
||
| 203 | |||
| 204 | /** |
||
| 205 | * Legend index. |
||
| 206 | * |
||
| 207 | * @var integer |
||
| 208 | */ |
||
| 209 | private $legendIndex; |
||
| 210 | |||
| 211 | /** |
||
| 212 | * Line width. |
||
| 213 | * |
||
| 214 | * @var integer |
||
| 215 | * @since 3.0 |
||
| 216 | */ |
||
| 217 | private $lineWidth = 1; |
||
| 218 | |||
| 219 | /** |
||
| 220 | * Linked to. |
||
| 221 | * |
||
| 222 | * @var string |
||
| 223 | * @since 3.0 |
||
| 224 | */ |
||
| 225 | private $linkedTo = ":previous"; |
||
| 226 | |||
| 227 | /** |
||
| 228 | * Max point width. |
||
| 229 | * |
||
| 230 | * @var integer |
||
| 231 | * @since 4.1.8 |
||
| 232 | */ |
||
| 233 | private $maxPointWidth; |
||
| 234 | |||
| 235 | /** |
||
| 236 | * Name. |
||
| 237 | * |
||
| 238 | * @var string |
||
| 239 | */ |
||
| 240 | private $name; |
||
| 241 | |||
| 242 | /** |
||
| 243 | * Negative color. |
||
| 244 | * |
||
| 245 | * @var string |
||
| 246 | * @since 3.0 |
||
| 247 | */ |
||
| 248 | private $negativeColor; |
||
| 249 | |||
| 250 | /** |
||
| 251 | * Point. |
||
| 252 | * |
||
| 253 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\Series\Errorbar\HighchartsPoint |
||
| 254 | */ |
||
| 255 | private $point; |
||
| 256 | |||
| 257 | /** |
||
| 258 | * Point description formatter. |
||
| 259 | * |
||
| 260 | * @var string |
||
| 261 | * @since 5.0.12 |
||
| 262 | */ |
||
| 263 | private $pointDescriptionFormatter; |
||
| 264 | |||
| 265 | /** |
||
| 266 | * Point interval. |
||
| 267 | * |
||
| 268 | * @var integer |
||
| 269 | */ |
||
| 270 | private $pointInterval = 1; |
||
| 271 | |||
| 272 | /** |
||
| 273 | * Point interval unit. |
||
| 274 | * |
||
| 275 | * @var string |
||
| 276 | * @since 4.1.0 |
||
| 277 | */ |
||
| 278 | private $pointIntervalUnit; |
||
| 279 | |||
| 280 | /** |
||
| 281 | * Point padding. |
||
| 282 | * |
||
| 283 | * @var integer |
||
| 284 | */ |
||
| 285 | private $pointPadding = 0.1; |
||
| 286 | |||
| 287 | /** |
||
| 288 | * Point placement. |
||
| 289 | * |
||
| 290 | * @var string|integer |
||
| 291 | * @since 2.3.0 |
||
| 292 | */ |
||
| 293 | private $pointPlacement; |
||
| 294 | |||
| 295 | /** |
||
| 296 | * Point range. |
||
| 297 | * |
||
| 298 | * @var integer |
||
| 299 | * @since 2.3 |
||
| 300 | */ |
||
| 301 | private $pointRange; |
||
| 302 | |||
| 303 | /** |
||
| 304 | * Point start. |
||
| 305 | * |
||
| 306 | * @var integer |
||
| 307 | */ |
||
| 308 | private $pointStart = 0; |
||
| 309 | |||
| 310 | /** |
||
| 311 | * Point width. |
||
| 312 | * |
||
| 313 | * @var integer |
||
| 314 | * @since 1.2.5 |
||
| 315 | */ |
||
| 316 | private $pointWidth; |
||
| 317 | |||
| 318 | /** |
||
| 319 | * Selected. |
||
| 320 | * |
||
| 321 | * @var boolean |
||
| 322 | * @since 1.2.0 |
||
| 323 | */ |
||
| 324 | private $selected = false; |
||
| 325 | |||
| 326 | /** |
||
| 327 | * Skip keyboard navigation. |
||
| 328 | * |
||
| 329 | * @var boolean |
||
| 330 | * @since 5.0.12 |
||
| 331 | */ |
||
| 332 | private $skipKeyboardNavigation; |
||
| 333 | |||
| 334 | /** |
||
| 335 | * States. |
||
| 336 | * |
||
| 337 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\Series\Errorbar\HighchartsStates |
||
| 338 | */ |
||
| 339 | private $states; |
||
| 340 | |||
| 341 | /** |
||
| 342 | * Stem color. |
||
| 343 | * |
||
| 344 | * @var string |
||
| 345 | * @since 3.0 |
||
| 346 | */ |
||
| 347 | private $stemColor; |
||
| 348 | |||
| 349 | /** |
||
| 350 | * Stem dash style. |
||
| 351 | * |
||
| 352 | * @var string |
||
| 353 | * @since 3.0 |
||
| 354 | */ |
||
| 355 | private $stemDashStyle = "Solid"; |
||
| 356 | |||
| 357 | /** |
||
| 358 | * Stem width. |
||
| 359 | * |
||
| 360 | * @var integer |
||
| 361 | * @since 3.0 |
||
| 362 | */ |
||
| 363 | private $stemWidth; |
||
| 364 | |||
| 365 | /** |
||
| 366 | * Sticky tracking. |
||
| 367 | * |
||
| 368 | * @var boolean |
||
| 369 | * @since 2.0 |
||
| 370 | */ |
||
| 371 | private $stickyTracking = true; |
||
| 372 | |||
| 373 | /** |
||
| 374 | * Tooltip. |
||
| 375 | * |
||
| 376 | * @var array |
||
| 377 | * @since 2.3 |
||
| 378 | */ |
||
| 379 | private $tooltip; |
||
| 380 | |||
| 381 | /** |
||
| 382 | * Turbo threshold. |
||
| 383 | * |
||
| 384 | * @var integer |
||
| 385 | * @since 2.2 |
||
| 386 | */ |
||
| 387 | private $turboThreshold = 1000; |
||
| 388 | |||
| 389 | /** |
||
| 390 | * Type. |
||
| 391 | * |
||
| 392 | * @var string |
||
| 393 | */ |
||
| 394 | private $type; |
||
| 395 | |||
| 396 | /** |
||
| 397 | * Visible. |
||
| 398 | * |
||
| 399 | * @var boolean |
||
| 400 | */ |
||
| 401 | private $visible = true; |
||
| 402 | |||
| 403 | /** |
||
| 404 | * Whisker color. |
||
| 405 | * |
||
| 406 | * @var string |
||
| 407 | * @since 3.0 |
||
| 408 | */ |
||
| 409 | private $whiskerColor; |
||
| 410 | |||
| 411 | /** |
||
| 412 | * Whisker length. |
||
| 413 | * |
||
| 414 | * @var integer|string |
||
| 415 | * @since 3.0 |
||
| 416 | */ |
||
| 417 | private $whiskerLength = "50%"; |
||
| 418 | |||
| 419 | /** |
||
| 420 | * Whisker width. |
||
| 421 | * |
||
| 422 | * @var integer |
||
| 423 | * @since 3.0 |
||
| 424 | */ |
||
| 425 | private $whiskerWidth; |
||
| 426 | |||
| 427 | /** |
||
| 428 | * X axis. |
||
| 429 | * |
||
| 430 | * @var integer|string |
||
| 431 | */ |
||
| 432 | private $xAxis = "0"; |
||
| 433 | |||
| 434 | /** |
||
| 435 | * Y axis. |
||
| 436 | * |
||
| 437 | * @var integer|string |
||
| 438 | */ |
||
| 439 | private $yAxis = "0"; |
||
| 440 | |||
| 441 | /** |
||
| 442 | * Z index. |
||
| 443 | * |
||
| 444 | * @var integer |
||
| 445 | */ |
||
| 446 | private $zIndex; |
||
| 447 | |||
| 448 | /** |
||
| 449 | * Zone axis. |
||
| 450 | * |
||
| 451 | * @var string |
||
| 452 | * @since 4.1.0 |
||
| 453 | */ |
||
| 454 | private $zoneAxis = "y"; |
||
| 455 | |||
| 456 | /** |
||
| 457 | * Zones. |
||
| 458 | * |
||
| 459 | * @var array |
||
| 460 | * @since 4.1.0 |
||
| 461 | */ |
||
| 462 | private $zones; |
||
| 463 | |||
| 464 | /** |
||
| 465 | * Constructor. |
||
| 466 | * |
||
| 467 | * @param boolean $ignoreDefaultValues Ignore the default values. |
||
| 468 | */ |
||
| 469 | public function __construct($ignoreDefaultValues = true) { |
||
| 474 | |||
| 475 | /** |
||
| 476 | * Clear. |
||
| 477 | * |
||
| 478 | * @return void |
||
| 479 | */ |
||
| 480 | public function clear() { |
||
| 659 | |||
| 660 | /** |
||
| 661 | * Get the allow point select. |
||
| 662 | * |
||
| 663 | * @return boolean Returns the allow point select. |
||
| 664 | */ |
||
| 665 | public function getAllowPointSelect() { |
||
| 668 | |||
| 669 | /** |
||
| 670 | * Get the animation limit. |
||
| 671 | * |
||
| 672 | * @return integer Returns the animation limit. |
||
| 673 | */ |
||
| 674 | public function getAnimationLimit() { |
||
| 677 | |||
| 678 | /** |
||
| 679 | * Get the class name. |
||
| 680 | * |
||
| 681 | * @return string Returns the class name. |
||
| 682 | */ |
||
| 683 | public function getClassName() { |
||
| 686 | |||
| 687 | /** |
||
| 688 | * Get the color. |
||
| 689 | * |
||
| 690 | * @return string Returns the color. |
||
| 691 | */ |
||
| 692 | public function getColor() { |
||
| 695 | |||
| 696 | /** |
||
| 697 | * Get the color by point. |
||
| 698 | * |
||
| 699 | * @return boolean Returns the color by point. |
||
| 700 | */ |
||
| 701 | public function getColorByPoint() { |
||
| 704 | |||
| 705 | /** |
||
| 706 | * Get the color index. |
||
| 707 | * |
||
| 708 | * @return integer Returns the color index. |
||
| 709 | */ |
||
| 710 | public function getColorIndex() { |
||
| 713 | |||
| 714 | /** |
||
| 715 | * Get the colors. |
||
| 716 | * |
||
| 717 | * @return array Returns the colors. |
||
| 718 | */ |
||
| 719 | public function getColors() { |
||
| 722 | |||
| 723 | /** |
||
| 724 | * Get the crisp. |
||
| 725 | * |
||
| 726 | * @return boolean Returns the crisp. |
||
| 727 | */ |
||
| 728 | public function getCrisp() { |
||
| 731 | |||
| 732 | /** |
||
| 733 | * Get the cursor. |
||
| 734 | * |
||
| 735 | * @return string Returns the cursor. |
||
| 736 | */ |
||
| 737 | public function getCursor() { |
||
| 740 | |||
| 741 | /** |
||
| 742 | * Get the data. |
||
| 743 | * |
||
| 744 | * @return array Returns the data. |
||
| 745 | */ |
||
| 746 | public function getData() { |
||
| 749 | |||
| 750 | /** |
||
| 751 | * Get the depth. |
||
| 752 | * |
||
| 753 | * @return integer Returns the depth. |
||
| 754 | */ |
||
| 755 | public function getDepth() { |
||
| 758 | |||
| 759 | /** |
||
| 760 | * Get the description. |
||
| 761 | * |
||
| 762 | * @return string Returns the description. |
||
| 763 | */ |
||
| 764 | public function getDescription() { |
||
| 767 | |||
| 768 | /** |
||
| 769 | * Get the edge color. |
||
| 770 | * |
||
| 771 | * @return string Returns the edge color. |
||
| 772 | */ |
||
| 773 | public function getEdgeColor() { |
||
| 776 | |||
| 777 | /** |
||
| 778 | * Get the edge width. |
||
| 779 | * |
||
| 780 | * @return integer Returns the edge width. |
||
| 781 | */ |
||
| 782 | public function getEdgeWidth() { |
||
| 785 | |||
| 786 | /** |
||
| 787 | * Get the enable mouse tracking. |
||
| 788 | * |
||
| 789 | * @return boolean Returns the enable mouse tracking. |
||
| 790 | */ |
||
| 791 | public function getEnableMouseTracking() { |
||
| 794 | |||
| 795 | /** |
||
| 796 | * Get the events. |
||
| 797 | * |
||
| 798 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Errorbar\HighchartsEvents Returns the events. |
||
| 799 | */ |
||
| 800 | public function getEvents() { |
||
| 803 | |||
| 804 | /** |
||
| 805 | * Get the expose element to a11y. |
||
| 806 | * |
||
| 807 | * @return boolean Returns the expose element to a11y. |
||
| 808 | */ |
||
| 809 | public function getExposeElementToA11y() { |
||
| 812 | |||
| 813 | /** |
||
| 814 | * Get the find nearest point by. |
||
| 815 | * |
||
| 816 | * @return string Returns the find nearest point by. |
||
| 817 | */ |
||
| 818 | public function getFindNearestPointBy() { |
||
| 821 | |||
| 822 | /** |
||
| 823 | * Get the get extremes from all. |
||
| 824 | * |
||
| 825 | * @return boolean Returns the get extremes from all. |
||
| 826 | */ |
||
| 827 | public function getGetExtremesFromAll() { |
||
| 830 | |||
| 831 | /** |
||
| 832 | * Get the group z padding. |
||
| 833 | * |
||
| 834 | * @return integer Returns the group z padding. |
||
| 835 | */ |
||
| 836 | public function getGroupZPadding() { |
||
| 839 | |||
| 840 | /** |
||
| 841 | * Get the id. |
||
| 842 | * |
||
| 843 | * @return string Returns the id. |
||
| 844 | */ |
||
| 845 | public function getId() { |
||
| 848 | |||
| 849 | /** |
||
| 850 | * Get the index. |
||
| 851 | * |
||
| 852 | * @return integer Returns the index. |
||
| 853 | */ |
||
| 854 | public function getIndex() { |
||
| 857 | |||
| 858 | /** |
||
| 859 | * Get the keys. |
||
| 860 | * |
||
| 861 | * @return array Returns the keys. |
||
| 862 | */ |
||
| 863 | public function getKeys() { |
||
| 866 | |||
| 867 | /** |
||
| 868 | * Get the legend index. |
||
| 869 | * |
||
| 870 | * @return integer Returns the legend index. |
||
| 871 | */ |
||
| 872 | public function getLegendIndex() { |
||
| 875 | |||
| 876 | /** |
||
| 877 | * Get the line width. |
||
| 878 | * |
||
| 879 | * @return integer Returns the line width. |
||
| 880 | */ |
||
| 881 | public function getLineWidth() { |
||
| 884 | |||
| 885 | /** |
||
| 886 | * Get the linked to. |
||
| 887 | * |
||
| 888 | * @return string Returns the linked to. |
||
| 889 | */ |
||
| 890 | public function getLinkedTo() { |
||
| 893 | |||
| 894 | /** |
||
| 895 | * Get the max point width. |
||
| 896 | * |
||
| 897 | * @return integer Returns the max point width. |
||
| 898 | */ |
||
| 899 | public function getMaxPointWidth() { |
||
| 902 | |||
| 903 | /** |
||
| 904 | * Get the name. |
||
| 905 | * |
||
| 906 | * @return string Returns the name. |
||
| 907 | */ |
||
| 908 | public function getName() { |
||
| 911 | |||
| 912 | /** |
||
| 913 | * Get the negative color. |
||
| 914 | * |
||
| 915 | * @return string Returns the negative color. |
||
| 916 | */ |
||
| 917 | public function getNegativeColor() { |
||
| 920 | |||
| 921 | /** |
||
| 922 | * Get the point. |
||
| 923 | * |
||
| 924 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Errorbar\HighchartsPoint Returns the point. |
||
| 925 | */ |
||
| 926 | public function getPoint() { |
||
| 929 | |||
| 930 | /** |
||
| 931 | * Get the point description formatter. |
||
| 932 | * |
||
| 933 | * @return string Returns the point description formatter. |
||
| 934 | */ |
||
| 935 | public function getPointDescriptionFormatter() { |
||
| 938 | |||
| 939 | /** |
||
| 940 | * Get the point interval. |
||
| 941 | * |
||
| 942 | * @return integer Returns the point interval. |
||
| 943 | */ |
||
| 944 | public function getPointInterval() { |
||
| 947 | |||
| 948 | /** |
||
| 949 | * Get the point interval unit. |
||
| 950 | * |
||
| 951 | * @return string Returns the point interval unit. |
||
| 952 | */ |
||
| 953 | public function getPointIntervalUnit() { |
||
| 956 | |||
| 957 | /** |
||
| 958 | * Get the point padding. |
||
| 959 | * |
||
| 960 | * @return integer Returns the point padding. |
||
| 961 | */ |
||
| 962 | public function getPointPadding() { |
||
| 965 | |||
| 966 | /** |
||
| 967 | * Get the point placement. |
||
| 968 | * |
||
| 969 | * @return string|integer Returns the point placement. |
||
| 970 | */ |
||
| 971 | public function getPointPlacement() { |
||
| 974 | |||
| 975 | /** |
||
| 976 | * Get the point range. |
||
| 977 | * |
||
| 978 | * @return integer Returns the point range. |
||
| 979 | */ |
||
| 980 | public function getPointRange() { |
||
| 983 | |||
| 984 | /** |
||
| 985 | * Get the point start. |
||
| 986 | * |
||
| 987 | * @return integer Returns the point start. |
||
| 988 | */ |
||
| 989 | public function getPointStart() { |
||
| 992 | |||
| 993 | /** |
||
| 994 | * Get the point width. |
||
| 995 | * |
||
| 996 | * @return integer Returns the point width. |
||
| 997 | */ |
||
| 998 | public function getPointWidth() { |
||
| 1001 | |||
| 1002 | /** |
||
| 1003 | * Get the selected. |
||
| 1004 | * |
||
| 1005 | * @return boolean Returns the selected. |
||
| 1006 | */ |
||
| 1007 | public function getSelected() { |
||
| 1010 | |||
| 1011 | /** |
||
| 1012 | * Get the skip keyboard navigation. |
||
| 1013 | * |
||
| 1014 | * @return boolean Returns the skip keyboard navigation. |
||
| 1015 | */ |
||
| 1016 | public function getSkipKeyboardNavigation() { |
||
| 1019 | |||
| 1020 | /** |
||
| 1021 | * Get the states. |
||
| 1022 | * |
||
| 1023 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Errorbar\HighchartsStates Returns the states. |
||
| 1024 | */ |
||
| 1025 | public function getStates() { |
||
| 1028 | |||
| 1029 | /** |
||
| 1030 | * Get the stem color. |
||
| 1031 | * |
||
| 1032 | * @return string Returns the stem color. |
||
| 1033 | */ |
||
| 1034 | public function getStemColor() { |
||
| 1037 | |||
| 1038 | /** |
||
| 1039 | * Get the stem dash style. |
||
| 1040 | * |
||
| 1041 | * @return string Returns the stem dash style. |
||
| 1042 | */ |
||
| 1043 | public function getStemDashStyle() { |
||
| 1046 | |||
| 1047 | /** |
||
| 1048 | * Get the stem width. |
||
| 1049 | * |
||
| 1050 | * @return integer Returns the stem width. |
||
| 1051 | */ |
||
| 1052 | public function getStemWidth() { |
||
| 1055 | |||
| 1056 | /** |
||
| 1057 | * Get the sticky tracking. |
||
| 1058 | * |
||
| 1059 | * @return boolean Returns the sticky tracking. |
||
| 1060 | */ |
||
| 1061 | public function getStickyTracking() { |
||
| 1064 | |||
| 1065 | /** |
||
| 1066 | * Get the tooltip. |
||
| 1067 | * |
||
| 1068 | * @return array Returns the tooltip. |
||
| 1069 | */ |
||
| 1070 | public function getTooltip() { |
||
| 1073 | |||
| 1074 | /** |
||
| 1075 | * Get the turbo threshold. |
||
| 1076 | * |
||
| 1077 | * @return integer Returns the turbo threshold. |
||
| 1078 | */ |
||
| 1079 | public function getTurboThreshold() { |
||
| 1082 | |||
| 1083 | /** |
||
| 1084 | * Get the type. |
||
| 1085 | * |
||
| 1086 | * @return string Returns the type. |
||
| 1087 | */ |
||
| 1088 | public function getType() { |
||
| 1091 | |||
| 1092 | /** |
||
| 1093 | * Get the visible. |
||
| 1094 | * |
||
| 1095 | * @return boolean Returns the visible. |
||
| 1096 | */ |
||
| 1097 | public function getVisible() { |
||
| 1100 | |||
| 1101 | /** |
||
| 1102 | * Get the whisker color. |
||
| 1103 | * |
||
| 1104 | * @return string Returns the whisker color. |
||
| 1105 | */ |
||
| 1106 | public function getWhiskerColor() { |
||
| 1109 | |||
| 1110 | /** |
||
| 1111 | * Get the whisker length. |
||
| 1112 | * |
||
| 1113 | * @return integer|string Returns the whisker length. |
||
| 1114 | */ |
||
| 1115 | public function getWhiskerLength() { |
||
| 1118 | |||
| 1119 | /** |
||
| 1120 | * Get the whisker width. |
||
| 1121 | * |
||
| 1122 | * @return integer Returns the whisker width. |
||
| 1123 | */ |
||
| 1124 | public function getWhiskerWidth() { |
||
| 1127 | |||
| 1128 | /** |
||
| 1129 | * Get the x axis. |
||
| 1130 | * |
||
| 1131 | * @return integer|string Returns the x axis. |
||
| 1132 | */ |
||
| 1133 | public function getXAxis() { |
||
| 1136 | |||
| 1137 | /** |
||
| 1138 | * Get the y axis. |
||
| 1139 | * |
||
| 1140 | * @return integer|string Returns the y axis. |
||
| 1141 | */ |
||
| 1142 | public function getYAxis() { |
||
| 1145 | |||
| 1146 | /** |
||
| 1147 | * Get the z index. |
||
| 1148 | * |
||
| 1149 | * @return integer Returns the z index. |
||
| 1150 | */ |
||
| 1151 | public function getZIndex() { |
||
| 1154 | |||
| 1155 | /** |
||
| 1156 | * Get the zone axis. |
||
| 1157 | * |
||
| 1158 | * @return string Returns the zone axis. |
||
| 1159 | */ |
||
| 1160 | public function getZoneAxis() { |
||
| 1163 | |||
| 1164 | /** |
||
| 1165 | * Get the zones. |
||
| 1166 | * |
||
| 1167 | * @return array Returns the zones. |
||
| 1168 | */ |
||
| 1169 | public function getZones() { |
||
| 1172 | |||
| 1173 | /** |
||
| 1174 | * Serialize this instance. |
||
| 1175 | * |
||
| 1176 | * @return array Returns an array representing this instance. |
||
| 1177 | */ |
||
| 1178 | public function jsonSerialize() { |
||
| 1181 | |||
| 1182 | /** |
||
| 1183 | * Create a new events. |
||
| 1184 | * |
||
| 1185 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Errorbar\HighchartsEvents Returns the events. |
||
| 1186 | */ |
||
| 1187 | public function newEvents() { |
||
| 1191 | |||
| 1192 | /** |
||
| 1193 | * Create a new point. |
||
| 1194 | * |
||
| 1195 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Errorbar\HighchartsPoint Returns the point. |
||
| 1196 | */ |
||
| 1197 | public function newPoint() { |
||
| 1201 | |||
| 1202 | /** |
||
| 1203 | * Create a new states. |
||
| 1204 | * |
||
| 1205 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Errorbar\HighchartsStates Returns the states. |
||
| 1206 | */ |
||
| 1207 | public function newStates() { |
||
| 1211 | |||
| 1212 | /** |
||
| 1213 | * Set the allow point select. |
||
| 1214 | * |
||
| 1215 | * @param boolean $allowPointSelect The allow point select. |
||
| 1216 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1217 | */ |
||
| 1218 | public function setAllowPointSelect($allowPointSelect) { |
||
| 1222 | |||
| 1223 | /** |
||
| 1224 | * Set the animation limit. |
||
| 1225 | * |
||
| 1226 | * @param integer $animationLimit The animation limit. |
||
| 1227 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1228 | */ |
||
| 1229 | public function setAnimationLimit($animationLimit) { |
||
| 1233 | |||
| 1234 | /** |
||
| 1235 | * Set the class name. |
||
| 1236 | * |
||
| 1237 | * @param string $className The class name. |
||
| 1238 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1239 | */ |
||
| 1240 | public function setClassName($className) { |
||
| 1244 | |||
| 1245 | /** |
||
| 1246 | * Set the color. |
||
| 1247 | * |
||
| 1248 | * @param string $color The color. |
||
| 1249 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1250 | */ |
||
| 1251 | public function setColor($color) { |
||
| 1255 | |||
| 1256 | /** |
||
| 1257 | * Set the color by point. |
||
| 1258 | * |
||
| 1259 | * @param boolean $colorByPoint The color by point. |
||
| 1260 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1261 | */ |
||
| 1262 | public function setColorByPoint($colorByPoint) { |
||
| 1266 | |||
| 1267 | /** |
||
| 1268 | * Set the color index. |
||
| 1269 | * |
||
| 1270 | * @param integer $colorIndex The color index. |
||
| 1271 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1272 | */ |
||
| 1273 | public function setColorIndex($colorIndex) { |
||
| 1277 | |||
| 1278 | /** |
||
| 1279 | * Set the colors. |
||
| 1280 | * |
||
| 1281 | * @param array $colors The colors. |
||
| 1282 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1283 | */ |
||
| 1284 | public function setColors(array $colors = null) { |
||
| 1288 | |||
| 1289 | /** |
||
| 1290 | * Set the crisp. |
||
| 1291 | * |
||
| 1292 | * @param boolean $crisp The crisp. |
||
| 1293 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1294 | */ |
||
| 1295 | public function setCrisp($crisp) { |
||
| 1299 | |||
| 1300 | /** |
||
| 1301 | * Set the cursor. |
||
| 1302 | * |
||
| 1303 | * @param string $cursor The cursor. |
||
| 1304 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1305 | */ |
||
| 1306 | public function setCursor($cursor) { |
||
| 1319 | |||
| 1320 | /** |
||
| 1321 | * Set the data. |
||
| 1322 | * |
||
| 1323 | * @param array $data The data. |
||
| 1324 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1325 | */ |
||
| 1326 | public function setData(array $data = null) { |
||
| 1330 | |||
| 1331 | /** |
||
| 1332 | * Set the depth. |
||
| 1333 | * |
||
| 1334 | * @param integer $depth The depth. |
||
| 1335 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1336 | */ |
||
| 1337 | public function setDepth($depth) { |
||
| 1341 | |||
| 1342 | /** |
||
| 1343 | * Set the description. |
||
| 1344 | * |
||
| 1345 | * @param string $description The description. |
||
| 1346 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1347 | */ |
||
| 1348 | public function setDescription($description) { |
||
| 1352 | |||
| 1353 | /** |
||
| 1354 | * Set the edge color. |
||
| 1355 | * |
||
| 1356 | * @param string $edgeColor The edge color. |
||
| 1357 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1358 | */ |
||
| 1359 | public function setEdgeColor($edgeColor) { |
||
| 1363 | |||
| 1364 | /** |
||
| 1365 | * Set the edge width. |
||
| 1366 | * |
||
| 1367 | * @param integer $edgeWidth The edge width. |
||
| 1368 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1369 | */ |
||
| 1370 | public function setEdgeWidth($edgeWidth) { |
||
| 1374 | |||
| 1375 | /** |
||
| 1376 | * Set the enable mouse tracking. |
||
| 1377 | * |
||
| 1378 | * @param boolean $enableMouseTracking The enable mouse tracking. |
||
| 1379 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1380 | */ |
||
| 1381 | public function setEnableMouseTracking($enableMouseTracking) { |
||
| 1385 | |||
| 1386 | /** |
||
| 1387 | * Set the events. |
||
| 1388 | * |
||
| 1389 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\Series\Errorbar\HighchartsEvents $events The events. |
||
| 1390 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1391 | */ |
||
| 1392 | public function setEvents(\WBW\Bundle\HighchartsBundle\API\Chart\Series\Errorbar\HighchartsEvents $events = null) { |
||
| 1396 | |||
| 1397 | /** |
||
| 1398 | * Set the expose element to a11y. |
||
| 1399 | * |
||
| 1400 | * @param boolean $exposeElementToA11y The expose element to a11y. |
||
| 1401 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1402 | */ |
||
| 1403 | public function setExposeElementToA11y($exposeElementToA11y) { |
||
| 1407 | |||
| 1408 | /** |
||
| 1409 | * Set the find nearest point by. |
||
| 1410 | * |
||
| 1411 | * @param string $findNearestPointBy The find nearest point by. |
||
| 1412 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1413 | */ |
||
| 1414 | public function setFindNearestPointBy($findNearestPointBy) { |
||
| 1423 | |||
| 1424 | /** |
||
| 1425 | * Set the get extremes from all. |
||
| 1426 | * |
||
| 1427 | * @param boolean $getExtremesFromAll The get extremes from all. |
||
| 1428 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1429 | */ |
||
| 1430 | public function setGetExtremesFromAll($getExtremesFromAll) { |
||
| 1434 | |||
| 1435 | /** |
||
| 1436 | * Set the group z padding. |
||
| 1437 | * |
||
| 1438 | * @param integer $groupZPadding The group z padding. |
||
| 1439 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1440 | */ |
||
| 1441 | public function setGroupZPadding($groupZPadding) { |
||
| 1445 | |||
| 1446 | /** |
||
| 1447 | * Set the id. |
||
| 1448 | * |
||
| 1449 | * @param string $id The id. |
||
| 1450 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1451 | */ |
||
| 1452 | public function setId($id) { |
||
| 1456 | |||
| 1457 | /** |
||
| 1458 | * Set the index. |
||
| 1459 | * |
||
| 1460 | * @param integer $index The index. |
||
| 1461 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1462 | */ |
||
| 1463 | public function setIndex($index) { |
||
| 1467 | |||
| 1468 | /** |
||
| 1469 | * Set the keys. |
||
| 1470 | * |
||
| 1471 | * @param array $keys The keys. |
||
| 1472 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1473 | */ |
||
| 1474 | public function setKeys(array $keys = null) { |
||
| 1478 | |||
| 1479 | /** |
||
| 1480 | * Set the legend index. |
||
| 1481 | * |
||
| 1482 | * @param integer $legendIndex The legend index. |
||
| 1483 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1484 | */ |
||
| 1485 | public function setLegendIndex($legendIndex) { |
||
| 1489 | |||
| 1490 | /** |
||
| 1491 | * Set the line width. |
||
| 1492 | * |
||
| 1493 | * @param integer $lineWidth The line width. |
||
| 1494 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1495 | */ |
||
| 1496 | public function setLineWidth($lineWidth) { |
||
| 1500 | |||
| 1501 | /** |
||
| 1502 | * Set the linked to. |
||
| 1503 | * |
||
| 1504 | * @param string $linkedTo The linked to. |
||
| 1505 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1506 | */ |
||
| 1507 | public function setLinkedTo($linkedTo) { |
||
| 1511 | |||
| 1512 | /** |
||
| 1513 | * Set the max point width. |
||
| 1514 | * |
||
| 1515 | * @param integer $maxPointWidth The max point width. |
||
| 1516 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1517 | */ |
||
| 1518 | public function setMaxPointWidth($maxPointWidth) { |
||
| 1522 | |||
| 1523 | /** |
||
| 1524 | * Set the name. |
||
| 1525 | * |
||
| 1526 | * @param string $name The name. |
||
| 1527 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1528 | */ |
||
| 1529 | public function setName($name) { |
||
| 1533 | |||
| 1534 | /** |
||
| 1535 | * Set the negative color. |
||
| 1536 | * |
||
| 1537 | * @param string $negativeColor The negative color. |
||
| 1538 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1539 | */ |
||
| 1540 | public function setNegativeColor($negativeColor) { |
||
| 1544 | |||
| 1545 | /** |
||
| 1546 | * Set the point. |
||
| 1547 | * |
||
| 1548 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\Series\Errorbar\HighchartsPoint $point The point. |
||
| 1549 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1550 | */ |
||
| 1551 | public function setPoint(\WBW\Bundle\HighchartsBundle\API\Chart\Series\Errorbar\HighchartsPoint $point = null) { |
||
| 1555 | |||
| 1556 | /** |
||
| 1557 | * Set the point description formatter. |
||
| 1558 | * |
||
| 1559 | * @param string $pointDescriptionFormatter The point description formatter. |
||
| 1560 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1561 | */ |
||
| 1562 | public function setPointDescriptionFormatter($pointDescriptionFormatter) { |
||
| 1566 | |||
| 1567 | /** |
||
| 1568 | * Set the point interval. |
||
| 1569 | * |
||
| 1570 | * @param integer $pointInterval The point interval. |
||
| 1571 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1572 | */ |
||
| 1573 | public function setPointInterval($pointInterval) { |
||
| 1577 | |||
| 1578 | /** |
||
| 1579 | * Set the point interval unit. |
||
| 1580 | * |
||
| 1581 | * @param string $pointIntervalUnit The point interval unit. |
||
| 1582 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1583 | */ |
||
| 1584 | public function setPointIntervalUnit($pointIntervalUnit) { |
||
| 1595 | |||
| 1596 | /** |
||
| 1597 | * Set the point padding. |
||
| 1598 | * |
||
| 1599 | * @param integer $pointPadding The point padding. |
||
| 1600 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1601 | */ |
||
| 1602 | public function setPointPadding($pointPadding) { |
||
| 1606 | |||
| 1607 | /** |
||
| 1608 | * Set the point placement. |
||
| 1609 | * |
||
| 1610 | * @param string|integer $pointPlacement The point placement. |
||
| 1611 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1612 | */ |
||
| 1613 | public function setPointPlacement($pointPlacement) { |
||
| 1623 | |||
| 1624 | /** |
||
| 1625 | * Set the point range. |
||
| 1626 | * |
||
| 1627 | * @param integer $pointRange The point range. |
||
| 1628 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1629 | */ |
||
| 1630 | public function setPointRange($pointRange) { |
||
| 1634 | |||
| 1635 | /** |
||
| 1636 | * Set the point start. |
||
| 1637 | * |
||
| 1638 | * @param integer $pointStart The point start. |
||
| 1639 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1640 | */ |
||
| 1641 | public function setPointStart($pointStart) { |
||
| 1645 | |||
| 1646 | /** |
||
| 1647 | * Set the point width. |
||
| 1648 | * |
||
| 1649 | * @param integer $pointWidth The point width. |
||
| 1650 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1651 | */ |
||
| 1652 | public function setPointWidth($pointWidth) { |
||
| 1656 | |||
| 1657 | /** |
||
| 1658 | * Set the selected. |
||
| 1659 | * |
||
| 1660 | * @param boolean $selected The selected. |
||
| 1661 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1662 | */ |
||
| 1663 | public function setSelected($selected) { |
||
| 1667 | |||
| 1668 | /** |
||
| 1669 | * Set the skip keyboard navigation. |
||
| 1670 | * |
||
| 1671 | * @param boolean $skipKeyboardNavigation The skip keyboard navigation. |
||
| 1672 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1673 | */ |
||
| 1674 | public function setSkipKeyboardNavigation($skipKeyboardNavigation) { |
||
| 1678 | |||
| 1679 | /** |
||
| 1680 | * Set the states. |
||
| 1681 | * |
||
| 1682 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\Series\Errorbar\HighchartsStates $states The states. |
||
| 1683 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1684 | */ |
||
| 1685 | public function setStates(\WBW\Bundle\HighchartsBundle\API\Chart\Series\Errorbar\HighchartsStates $states = null) { |
||
| 1689 | |||
| 1690 | /** |
||
| 1691 | * Set the stem color. |
||
| 1692 | * |
||
| 1693 | * @param string $stemColor The stem color. |
||
| 1694 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1695 | */ |
||
| 1696 | public function setStemColor($stemColor) { |
||
| 1700 | |||
| 1701 | /** |
||
| 1702 | * Set the stem dash style. |
||
| 1703 | * |
||
| 1704 | * @param string $stemDashStyle The stem dash style. |
||
| 1705 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1706 | */ |
||
| 1707 | public function setStemDashStyle($stemDashStyle) { |
||
| 1725 | |||
| 1726 | /** |
||
| 1727 | * Set the stem width. |
||
| 1728 | * |
||
| 1729 | * @param integer $stemWidth The stem width. |
||
| 1730 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1731 | */ |
||
| 1732 | public function setStemWidth($stemWidth) { |
||
| 1736 | |||
| 1737 | /** |
||
| 1738 | * Set the sticky tracking. |
||
| 1739 | * |
||
| 1740 | * @param boolean $stickyTracking The sticky tracking. |
||
| 1741 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1742 | */ |
||
| 1743 | public function setStickyTracking($stickyTracking) { |
||
| 1747 | |||
| 1748 | /** |
||
| 1749 | * Set the tooltip. |
||
| 1750 | * |
||
| 1751 | * @param array $tooltip The tooltip. |
||
| 1752 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1753 | */ |
||
| 1754 | public function setTooltip(array $tooltip = null) { |
||
| 1758 | |||
| 1759 | /** |
||
| 1760 | * Set the turbo threshold. |
||
| 1761 | * |
||
| 1762 | * @param integer $turboThreshold The turbo threshold. |
||
| 1763 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1764 | */ |
||
| 1765 | public function setTurboThreshold($turboThreshold) { |
||
| 1769 | |||
| 1770 | /** |
||
| 1771 | * Set the type. |
||
| 1772 | * |
||
| 1773 | * @param string $type The type. |
||
| 1774 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1775 | */ |
||
| 1776 | public function setType($type) { |
||
| 1800 | |||
| 1801 | /** |
||
| 1802 | * Set the visible. |
||
| 1803 | * |
||
| 1804 | * @param boolean $visible The visible. |
||
| 1805 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1806 | */ |
||
| 1807 | public function setVisible($visible) { |
||
| 1811 | |||
| 1812 | /** |
||
| 1813 | * Set the whisker color. |
||
| 1814 | * |
||
| 1815 | * @param string $whiskerColor The whisker color. |
||
| 1816 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1817 | */ |
||
| 1818 | public function setWhiskerColor($whiskerColor) { |
||
| 1822 | |||
| 1823 | /** |
||
| 1824 | * Set the whisker length. |
||
| 1825 | * |
||
| 1826 | * @param integer|string $whiskerLength The whisker length. |
||
| 1827 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1828 | */ |
||
| 1829 | public function setWhiskerLength($whiskerLength) { |
||
| 1833 | |||
| 1834 | /** |
||
| 1835 | * Set the whisker width. |
||
| 1836 | * |
||
| 1837 | * @param integer $whiskerWidth The whisker width. |
||
| 1838 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1839 | */ |
||
| 1840 | public function setWhiskerWidth($whiskerWidth) { |
||
| 1844 | |||
| 1845 | /** |
||
| 1846 | * Set the x axis. |
||
| 1847 | * |
||
| 1848 | * @param integer|string $xAxis The x axis. |
||
| 1849 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1850 | */ |
||
| 1851 | public function setXAxis($xAxis) { |
||
| 1855 | |||
| 1856 | /** |
||
| 1857 | * Set the y axis. |
||
| 1858 | * |
||
| 1859 | * @param integer|string $yAxis The y axis. |
||
| 1860 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1861 | */ |
||
| 1862 | public function setYAxis($yAxis) { |
||
| 1866 | |||
| 1867 | /** |
||
| 1868 | * Set the z index. |
||
| 1869 | * |
||
| 1870 | * @param integer $zIndex The z index. |
||
| 1871 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1872 | */ |
||
| 1873 | public function setZIndex($zIndex) { |
||
| 1877 | |||
| 1878 | /** |
||
| 1879 | * Set the zone axis. |
||
| 1880 | * |
||
| 1881 | * @param string $zoneAxis The zone axis. |
||
| 1882 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1883 | */ |
||
| 1884 | public function setZoneAxis($zoneAxis) { |
||
| 1888 | |||
| 1889 | /** |
||
| 1890 | * Set the zones. |
||
| 1891 | * |
||
| 1892 | * @param array $zones The zones. |
||
| 1893 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar Returns the highcharts errorbar. |
||
| 1894 | */ |
||
| 1895 | public function setZones(array $zones = null) { |
||
| 1899 | |||
| 1900 | /** |
||
| 1901 | * Convert into an array representing this instance. |
||
| 1902 | * |
||
| 1903 | * @return array Returns an array representing this instance. |
||
| 1904 | */ |
||
| 1905 | public function toArray() { |
||
| 2090 | |||
| 2091 | } |
||
| 2092 |
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..