Complex classes like HighchartsColumn 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 HighchartsColumn, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 25 | final class HighchartsColumn 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. |
||
| 133 | * |
||
| 134 | * @var array |
||
| 135 | */ |
||
| 136 | private $data; |
||
| 137 | |||
| 138 | /** |
||
| 139 | * Data labels. |
||
| 140 | * |
||
| 141 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\Series\Column\HighchartsDataLabels |
||
| 142 | */ |
||
| 143 | private $dataLabels; |
||
| 144 | |||
| 145 | /** |
||
| 146 | * Depth. |
||
| 147 | * |
||
| 148 | * @var integer |
||
| 149 | * @since 4.0 |
||
| 150 | */ |
||
| 151 | private $depth = 25; |
||
| 152 | |||
| 153 | /** |
||
| 154 | * Description. |
||
| 155 | * |
||
| 156 | * @var string |
||
| 157 | * @since 5.0.0 |
||
| 158 | */ |
||
| 159 | private $description; |
||
| 160 | |||
| 161 | /** |
||
| 162 | * Edge color. |
||
| 163 | * |
||
| 164 | * @var string |
||
| 165 | */ |
||
| 166 | private $edgeColor; |
||
| 167 | |||
| 168 | /** |
||
| 169 | * Edge width. |
||
| 170 | * |
||
| 171 | * @var integer |
||
| 172 | */ |
||
| 173 | private $edgeWidth = 1; |
||
| 174 | |||
| 175 | /** |
||
| 176 | * Enable mouse tracking. |
||
| 177 | * |
||
| 178 | * @var boolean |
||
| 179 | */ |
||
| 180 | private $enableMouseTracking = true; |
||
| 181 | |||
| 182 | /** |
||
| 183 | * Events. |
||
| 184 | * |
||
| 185 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\Series\Column\HighchartsEvents |
||
| 186 | */ |
||
| 187 | private $events; |
||
| 188 | |||
| 189 | /** |
||
| 190 | * Expose element to a11y. |
||
| 191 | * |
||
| 192 | * @var boolean |
||
| 193 | * @since 5.0.12 |
||
| 194 | */ |
||
| 195 | private $exposeElementToA11y; |
||
| 196 | |||
| 197 | /** |
||
| 198 | * Find nearest point by. |
||
| 199 | * |
||
| 200 | * @var string |
||
| 201 | * @since 5.0.10 |
||
| 202 | */ |
||
| 203 | private $findNearestPointBy; |
||
| 204 | |||
| 205 | /** |
||
| 206 | * Get extremes from all. |
||
| 207 | * |
||
| 208 | * @var boolean |
||
| 209 | * @since 4.1.6 |
||
| 210 | */ |
||
| 211 | private $getExtremesFromAll = false; |
||
| 212 | |||
| 213 | /** |
||
| 214 | * Group padding. |
||
| 215 | * |
||
| 216 | * @var integer |
||
| 217 | */ |
||
| 218 | private $groupPadding = 0.2; |
||
| 219 | |||
| 220 | /** |
||
| 221 | * Group z padding. |
||
| 222 | * |
||
| 223 | * @var integer |
||
| 224 | * @since 4.0 |
||
| 225 | */ |
||
| 226 | private $groupZPadding = 1; |
||
| 227 | |||
| 228 | /** |
||
| 229 | * Grouping. |
||
| 230 | * |
||
| 231 | * @var boolean |
||
| 232 | * @since 2.3.0 |
||
| 233 | */ |
||
| 234 | private $grouping = true; |
||
| 235 | |||
| 236 | /** |
||
| 237 | * Id. |
||
| 238 | * |
||
| 239 | * @var string |
||
| 240 | * @since 1.2.0 |
||
| 241 | */ |
||
| 242 | private $id; |
||
| 243 | |||
| 244 | /** |
||
| 245 | * Index. |
||
| 246 | * |
||
| 247 | * @var integer |
||
| 248 | * @since 2.3.0 |
||
| 249 | */ |
||
| 250 | private $index; |
||
| 251 | |||
| 252 | /** |
||
| 253 | * Keys. |
||
| 254 | * |
||
| 255 | * @var array |
||
| 256 | * @since 4.1.6 |
||
| 257 | */ |
||
| 258 | private $keys; |
||
| 259 | |||
| 260 | /** |
||
| 261 | * Legend index. |
||
| 262 | * |
||
| 263 | * @var integer |
||
| 264 | */ |
||
| 265 | private $legendIndex; |
||
| 266 | |||
| 267 | /** |
||
| 268 | * Linked to. |
||
| 269 | * |
||
| 270 | * @var string |
||
| 271 | * @since 3.0 |
||
| 272 | */ |
||
| 273 | private $linkedTo; |
||
| 274 | |||
| 275 | /** |
||
| 276 | * Max point width. |
||
| 277 | * |
||
| 278 | * @var integer |
||
| 279 | * @since 4.1.8 |
||
| 280 | */ |
||
| 281 | private $maxPointWidth; |
||
| 282 | |||
| 283 | /** |
||
| 284 | * Min point length. |
||
| 285 | * |
||
| 286 | * @var integer |
||
| 287 | */ |
||
| 288 | private $minPointLength = 0; |
||
| 289 | |||
| 290 | /** |
||
| 291 | * Name. |
||
| 292 | * |
||
| 293 | * @var string |
||
| 294 | */ |
||
| 295 | private $name; |
||
| 296 | |||
| 297 | /** |
||
| 298 | * Negative color. |
||
| 299 | * |
||
| 300 | * @var string |
||
| 301 | * @since 3.0 |
||
| 302 | */ |
||
| 303 | private $negativeColor; |
||
| 304 | |||
| 305 | /** |
||
| 306 | * Point. |
||
| 307 | * |
||
| 308 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\Series\Column\HighchartsPoint |
||
| 309 | */ |
||
| 310 | private $point; |
||
| 311 | |||
| 312 | /** |
||
| 313 | * Point description formatter. |
||
| 314 | * |
||
| 315 | * @var string |
||
| 316 | * @since 5.0.12 |
||
| 317 | */ |
||
| 318 | private $pointDescriptionFormatter; |
||
| 319 | |||
| 320 | /** |
||
| 321 | * Point interval. |
||
| 322 | * |
||
| 323 | * @var integer |
||
| 324 | */ |
||
| 325 | private $pointInterval = 1; |
||
| 326 | |||
| 327 | /** |
||
| 328 | * Point interval unit. |
||
| 329 | * |
||
| 330 | * @var string |
||
| 331 | * @since 4.1.0 |
||
| 332 | */ |
||
| 333 | private $pointIntervalUnit; |
||
| 334 | |||
| 335 | /** |
||
| 336 | * Point padding. |
||
| 337 | * |
||
| 338 | * @var integer |
||
| 339 | */ |
||
| 340 | private $pointPadding = 0.1; |
||
| 341 | |||
| 342 | /** |
||
| 343 | * Point placement. |
||
| 344 | * |
||
| 345 | * @var string|integer |
||
| 346 | * @since 2.3.0 |
||
| 347 | */ |
||
| 348 | private $pointPlacement; |
||
| 349 | |||
| 350 | /** |
||
| 351 | * Point range. |
||
| 352 | * |
||
| 353 | * @var integer |
||
| 354 | * @since 2.3 |
||
| 355 | */ |
||
| 356 | private $pointRange; |
||
| 357 | |||
| 358 | /** |
||
| 359 | * Point start. |
||
| 360 | * |
||
| 361 | * @var integer |
||
| 362 | */ |
||
| 363 | private $pointStart = 0; |
||
| 364 | |||
| 365 | /** |
||
| 366 | * Point width. |
||
| 367 | * |
||
| 368 | * @var integer |
||
| 369 | * @since 1.2.5 |
||
| 370 | */ |
||
| 371 | private $pointWidth; |
||
| 372 | |||
| 373 | /** |
||
| 374 | * Selected. |
||
| 375 | * |
||
| 376 | * @var boolean |
||
| 377 | * @since 1.2.0 |
||
| 378 | */ |
||
| 379 | private $selected = false; |
||
| 380 | |||
| 381 | /** |
||
| 382 | * Shadow. |
||
| 383 | * |
||
| 384 | * @var boolean|array |
||
| 385 | */ |
||
| 386 | private $shadow = false; |
||
| 387 | |||
| 388 | /** |
||
| 389 | * Show checkbox. |
||
| 390 | * |
||
| 391 | * @var boolean |
||
| 392 | * @since 1.2.0 |
||
| 393 | */ |
||
| 394 | private $showCheckbox = false; |
||
| 395 | |||
| 396 | /** |
||
| 397 | * Show in legend. |
||
| 398 | * |
||
| 399 | * @var boolean |
||
| 400 | */ |
||
| 401 | private $showInLegend = true; |
||
| 402 | |||
| 403 | /** |
||
| 404 | * Skip keyboard navigation. |
||
| 405 | * |
||
| 406 | * @var boolean |
||
| 407 | * @since 5.0.12 |
||
| 408 | */ |
||
| 409 | private $skipKeyboardNavigation; |
||
| 410 | |||
| 411 | /** |
||
| 412 | * Soft threshold. |
||
| 413 | * |
||
| 414 | * @var boolean |
||
| 415 | * @since 4.1.9 |
||
| 416 | */ |
||
| 417 | private $softThreshold = true; |
||
| 418 | |||
| 419 | /** |
||
| 420 | * Stack. |
||
| 421 | * |
||
| 422 | * @var string |
||
| 423 | * @since 2.1 |
||
| 424 | */ |
||
| 425 | private $stack; |
||
| 426 | |||
| 427 | /** |
||
| 428 | * Stacking. |
||
| 429 | * |
||
| 430 | * @var string |
||
| 431 | */ |
||
| 432 | private $stacking; |
||
| 433 | |||
| 434 | /** |
||
| 435 | * States. |
||
| 436 | * |
||
| 437 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\Series\Column\HighchartsStates |
||
| 438 | */ |
||
| 439 | private $states; |
||
| 440 | |||
| 441 | /** |
||
| 442 | * Sticky tracking. |
||
| 443 | * |
||
| 444 | * @var boolean |
||
| 445 | * @since 2.0 |
||
| 446 | */ |
||
| 447 | private $stickyTracking = true; |
||
| 448 | |||
| 449 | /** |
||
| 450 | * Threshold. |
||
| 451 | * |
||
| 452 | * @var integer |
||
| 453 | * @since 2.0 |
||
| 454 | */ |
||
| 455 | private $threshold = 0; |
||
| 456 | |||
| 457 | /** |
||
| 458 | * Tooltip. |
||
| 459 | * |
||
| 460 | * @var array |
||
| 461 | * @since 2.3 |
||
| 462 | */ |
||
| 463 | private $tooltip; |
||
| 464 | |||
| 465 | /** |
||
| 466 | * Turbo threshold. |
||
| 467 | * |
||
| 468 | * @var integer |
||
| 469 | * @since 2.2 |
||
| 470 | */ |
||
| 471 | private $turboThreshold = 1000; |
||
| 472 | |||
| 473 | /** |
||
| 474 | * Type. |
||
| 475 | * |
||
| 476 | * @var string |
||
| 477 | */ |
||
| 478 | private $type; |
||
| 479 | |||
| 480 | /** |
||
| 481 | * Visible. |
||
| 482 | * |
||
| 483 | * @var boolean |
||
| 484 | */ |
||
| 485 | private $visible = true; |
||
| 486 | |||
| 487 | /** |
||
| 488 | * X axis. |
||
| 489 | * |
||
| 490 | * @var integer|string |
||
| 491 | */ |
||
| 492 | private $xAxis = "0"; |
||
| 493 | |||
| 494 | /** |
||
| 495 | * Y axis. |
||
| 496 | * |
||
| 497 | * @var integer|string |
||
| 498 | */ |
||
| 499 | private $yAxis = "0"; |
||
| 500 | |||
| 501 | /** |
||
| 502 | * Z index. |
||
| 503 | * |
||
| 504 | * @var integer |
||
| 505 | */ |
||
| 506 | private $zIndex; |
||
| 507 | |||
| 508 | /** |
||
| 509 | * Zone axis. |
||
| 510 | * |
||
| 511 | * @var string |
||
| 512 | * @since 4.1.0 |
||
| 513 | */ |
||
| 514 | private $zoneAxis = "y"; |
||
| 515 | |||
| 516 | /** |
||
| 517 | * Zones. |
||
| 518 | * |
||
| 519 | * @var array |
||
| 520 | * @since 4.1.0 |
||
| 521 | */ |
||
| 522 | private $zones; |
||
| 523 | |||
| 524 | /** |
||
| 525 | * Constructor. |
||
| 526 | * |
||
| 527 | * @param boolean $ignoreDefaultValues Ignore the default values. |
||
| 528 | */ |
||
| 529 | public function __construct($ignoreDefaultValues = true) { |
||
| 534 | |||
| 535 | /** |
||
| 536 | * Clear. |
||
| 537 | * |
||
| 538 | * @return void |
||
| 539 | */ |
||
| 540 | public function clear() { |
||
| 748 | |||
| 749 | /** |
||
| 750 | * Get the allow point select. |
||
| 751 | * |
||
| 752 | * @return boolean Returns the allow point select. |
||
| 753 | */ |
||
| 754 | public function getAllowPointSelect() { |
||
| 757 | |||
| 758 | /** |
||
| 759 | * Get the animation. |
||
| 760 | * |
||
| 761 | * @return boolean Returns the animation. |
||
| 762 | */ |
||
| 763 | public function getAnimation() { |
||
| 766 | |||
| 767 | /** |
||
| 768 | * Get the animation limit. |
||
| 769 | * |
||
| 770 | * @return integer Returns the animation limit. |
||
| 771 | */ |
||
| 772 | public function getAnimationLimit() { |
||
| 775 | |||
| 776 | /** |
||
| 777 | * Get the border color. |
||
| 778 | * |
||
| 779 | * @return string Returns the border color. |
||
| 780 | */ |
||
| 781 | public function getBorderColor() { |
||
| 784 | |||
| 785 | /** |
||
| 786 | * Get the border radius. |
||
| 787 | * |
||
| 788 | * @return integer Returns the border radius. |
||
| 789 | */ |
||
| 790 | public function getBorderRadius() { |
||
| 793 | |||
| 794 | /** |
||
| 795 | * Get the border width. |
||
| 796 | * |
||
| 797 | * @return integer Returns the border width. |
||
| 798 | */ |
||
| 799 | public function getBorderWidth() { |
||
| 802 | |||
| 803 | /** |
||
| 804 | * Get the class name. |
||
| 805 | * |
||
| 806 | * @return string Returns the class name. |
||
| 807 | */ |
||
| 808 | public function getClassName() { |
||
| 811 | |||
| 812 | /** |
||
| 813 | * Get the color. |
||
| 814 | * |
||
| 815 | * @return string Returns the color. |
||
| 816 | */ |
||
| 817 | public function getColor() { |
||
| 820 | |||
| 821 | /** |
||
| 822 | * Get the color by point. |
||
| 823 | * |
||
| 824 | * @return boolean Returns the color by point. |
||
| 825 | */ |
||
| 826 | public function getColorByPoint() { |
||
| 829 | |||
| 830 | /** |
||
| 831 | * Get the color index. |
||
| 832 | * |
||
| 833 | * @return integer Returns the color index. |
||
| 834 | */ |
||
| 835 | public function getColorIndex() { |
||
| 838 | |||
| 839 | /** |
||
| 840 | * Get the colors. |
||
| 841 | * |
||
| 842 | * @return array Returns the colors. |
||
| 843 | */ |
||
| 844 | public function getColors() { |
||
| 847 | |||
| 848 | /** |
||
| 849 | * Get the crisp. |
||
| 850 | * |
||
| 851 | * @return boolean Returns the crisp. |
||
| 852 | */ |
||
| 853 | public function getCrisp() { |
||
| 856 | |||
| 857 | /** |
||
| 858 | * Get the crop threshold. |
||
| 859 | * |
||
| 860 | * @return integer Returns the crop threshold. |
||
| 861 | */ |
||
| 862 | public function getCropThreshold() { |
||
| 865 | |||
| 866 | /** |
||
| 867 | * Get the cursor. |
||
| 868 | * |
||
| 869 | * @return string Returns the cursor. |
||
| 870 | */ |
||
| 871 | public function getCursor() { |
||
| 874 | |||
| 875 | /** |
||
| 876 | * Get the data. |
||
| 877 | * |
||
| 878 | * @return array Returns the data. |
||
| 879 | */ |
||
| 880 | public function getData() { |
||
| 883 | |||
| 884 | /** |
||
| 885 | * Get the data labels. |
||
| 886 | * |
||
| 887 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Column\HighchartsDataLabels Returns the data labels. |
||
| 888 | */ |
||
| 889 | public function getDataLabels() { |
||
| 892 | |||
| 893 | /** |
||
| 894 | * Get the depth. |
||
| 895 | * |
||
| 896 | * @return integer Returns the depth. |
||
| 897 | */ |
||
| 898 | public function getDepth() { |
||
| 901 | |||
| 902 | /** |
||
| 903 | * Get the description. |
||
| 904 | * |
||
| 905 | * @return string Returns the description. |
||
| 906 | */ |
||
| 907 | public function getDescription() { |
||
| 910 | |||
| 911 | /** |
||
| 912 | * Get the edge color. |
||
| 913 | * |
||
| 914 | * @return string Returns the edge color. |
||
| 915 | */ |
||
| 916 | public function getEdgeColor() { |
||
| 919 | |||
| 920 | /** |
||
| 921 | * Get the edge width. |
||
| 922 | * |
||
| 923 | * @return integer Returns the edge width. |
||
| 924 | */ |
||
| 925 | public function getEdgeWidth() { |
||
| 928 | |||
| 929 | /** |
||
| 930 | * Get the enable mouse tracking. |
||
| 931 | * |
||
| 932 | * @return boolean Returns the enable mouse tracking. |
||
| 933 | */ |
||
| 934 | public function getEnableMouseTracking() { |
||
| 937 | |||
| 938 | /** |
||
| 939 | * Get the events. |
||
| 940 | * |
||
| 941 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Column\HighchartsEvents Returns the events. |
||
| 942 | */ |
||
| 943 | public function getEvents() { |
||
| 946 | |||
| 947 | /** |
||
| 948 | * Get the expose element to a11y. |
||
| 949 | * |
||
| 950 | * @return boolean Returns the expose element to a11y. |
||
| 951 | */ |
||
| 952 | public function getExposeElementToA11y() { |
||
| 955 | |||
| 956 | /** |
||
| 957 | * Get the find nearest point by. |
||
| 958 | * |
||
| 959 | * @return string Returns the find nearest point by. |
||
| 960 | */ |
||
| 961 | public function getFindNearestPointBy() { |
||
| 964 | |||
| 965 | /** |
||
| 966 | * Get the get extremes from all. |
||
| 967 | * |
||
| 968 | * @return boolean Returns the get extremes from all. |
||
| 969 | */ |
||
| 970 | public function getGetExtremesFromAll() { |
||
| 973 | |||
| 974 | /** |
||
| 975 | * Get the group padding. |
||
| 976 | * |
||
| 977 | * @return integer Returns the group padding. |
||
| 978 | */ |
||
| 979 | public function getGroupPadding() { |
||
| 982 | |||
| 983 | /** |
||
| 984 | * Get the group z padding. |
||
| 985 | * |
||
| 986 | * @return integer Returns the group z padding. |
||
| 987 | */ |
||
| 988 | public function getGroupZPadding() { |
||
| 991 | |||
| 992 | /** |
||
| 993 | * Get the grouping. |
||
| 994 | * |
||
| 995 | * @return boolean Returns the grouping. |
||
| 996 | */ |
||
| 997 | public function getGrouping() { |
||
| 1000 | |||
| 1001 | /** |
||
| 1002 | * Get the id. |
||
| 1003 | * |
||
| 1004 | * @return string Returns the id. |
||
| 1005 | */ |
||
| 1006 | public function getId() { |
||
| 1009 | |||
| 1010 | /** |
||
| 1011 | * Get the index. |
||
| 1012 | * |
||
| 1013 | * @return integer Returns the index. |
||
| 1014 | */ |
||
| 1015 | public function getIndex() { |
||
| 1018 | |||
| 1019 | /** |
||
| 1020 | * Get the keys. |
||
| 1021 | * |
||
| 1022 | * @return array Returns the keys. |
||
| 1023 | */ |
||
| 1024 | public function getKeys() { |
||
| 1027 | |||
| 1028 | /** |
||
| 1029 | * Get the legend index. |
||
| 1030 | * |
||
| 1031 | * @return integer Returns the legend index. |
||
| 1032 | */ |
||
| 1033 | public function getLegendIndex() { |
||
| 1036 | |||
| 1037 | /** |
||
| 1038 | * Get the linked to. |
||
| 1039 | * |
||
| 1040 | * @return string Returns the linked to. |
||
| 1041 | */ |
||
| 1042 | public function getLinkedTo() { |
||
| 1045 | |||
| 1046 | /** |
||
| 1047 | * Get the max point width. |
||
| 1048 | * |
||
| 1049 | * @return integer Returns the max point width. |
||
| 1050 | */ |
||
| 1051 | public function getMaxPointWidth() { |
||
| 1054 | |||
| 1055 | /** |
||
| 1056 | * Get the min point length. |
||
| 1057 | * |
||
| 1058 | * @return integer Returns the min point length. |
||
| 1059 | */ |
||
| 1060 | public function getMinPointLength() { |
||
| 1063 | |||
| 1064 | /** |
||
| 1065 | * Get the name. |
||
| 1066 | * |
||
| 1067 | * @return string Returns the name. |
||
| 1068 | */ |
||
| 1069 | public function getName() { |
||
| 1072 | |||
| 1073 | /** |
||
| 1074 | * Get the negative color. |
||
| 1075 | * |
||
| 1076 | * @return string Returns the negative color. |
||
| 1077 | */ |
||
| 1078 | public function getNegativeColor() { |
||
| 1081 | |||
| 1082 | /** |
||
| 1083 | * Get the point. |
||
| 1084 | * |
||
| 1085 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Column\HighchartsPoint Returns the point. |
||
| 1086 | */ |
||
| 1087 | public function getPoint() { |
||
| 1090 | |||
| 1091 | /** |
||
| 1092 | * Get the point description formatter. |
||
| 1093 | * |
||
| 1094 | * @return string Returns the point description formatter. |
||
| 1095 | */ |
||
| 1096 | public function getPointDescriptionFormatter() { |
||
| 1099 | |||
| 1100 | /** |
||
| 1101 | * Get the point interval. |
||
| 1102 | * |
||
| 1103 | * @return integer Returns the point interval. |
||
| 1104 | */ |
||
| 1105 | public function getPointInterval() { |
||
| 1108 | |||
| 1109 | /** |
||
| 1110 | * Get the point interval unit. |
||
| 1111 | * |
||
| 1112 | * @return string Returns the point interval unit. |
||
| 1113 | */ |
||
| 1114 | public function getPointIntervalUnit() { |
||
| 1117 | |||
| 1118 | /** |
||
| 1119 | * Get the point padding. |
||
| 1120 | * |
||
| 1121 | * @return integer Returns the point padding. |
||
| 1122 | */ |
||
| 1123 | public function getPointPadding() { |
||
| 1126 | |||
| 1127 | /** |
||
| 1128 | * Get the point placement. |
||
| 1129 | * |
||
| 1130 | * @return string|integer Returns the point placement. |
||
| 1131 | */ |
||
| 1132 | public function getPointPlacement() { |
||
| 1135 | |||
| 1136 | /** |
||
| 1137 | * Get the point range. |
||
| 1138 | * |
||
| 1139 | * @return integer Returns the point range. |
||
| 1140 | */ |
||
| 1141 | public function getPointRange() { |
||
| 1144 | |||
| 1145 | /** |
||
| 1146 | * Get the point start. |
||
| 1147 | * |
||
| 1148 | * @return integer Returns the point start. |
||
| 1149 | */ |
||
| 1150 | public function getPointStart() { |
||
| 1153 | |||
| 1154 | /** |
||
| 1155 | * Get the point width. |
||
| 1156 | * |
||
| 1157 | * @return integer Returns the point width. |
||
| 1158 | */ |
||
| 1159 | public function getPointWidth() { |
||
| 1162 | |||
| 1163 | /** |
||
| 1164 | * Get the selected. |
||
| 1165 | * |
||
| 1166 | * @return boolean Returns the selected. |
||
| 1167 | */ |
||
| 1168 | public function getSelected() { |
||
| 1171 | |||
| 1172 | /** |
||
| 1173 | * Get the shadow. |
||
| 1174 | * |
||
| 1175 | * @return boolean|array Returns the shadow. |
||
| 1176 | */ |
||
| 1177 | public function getShadow() { |
||
| 1180 | |||
| 1181 | /** |
||
| 1182 | * Get the show checkbox. |
||
| 1183 | * |
||
| 1184 | * @return boolean Returns the show checkbox. |
||
| 1185 | */ |
||
| 1186 | public function getShowCheckbox() { |
||
| 1189 | |||
| 1190 | /** |
||
| 1191 | * Get the show in legend. |
||
| 1192 | * |
||
| 1193 | * @return boolean Returns the show in legend. |
||
| 1194 | */ |
||
| 1195 | public function getShowInLegend() { |
||
| 1198 | |||
| 1199 | /** |
||
| 1200 | * Get the skip keyboard navigation. |
||
| 1201 | * |
||
| 1202 | * @return boolean Returns the skip keyboard navigation. |
||
| 1203 | */ |
||
| 1204 | public function getSkipKeyboardNavigation() { |
||
| 1207 | |||
| 1208 | /** |
||
| 1209 | * Get the soft threshold. |
||
| 1210 | * |
||
| 1211 | * @return boolean Returns the soft threshold. |
||
| 1212 | */ |
||
| 1213 | public function getSoftThreshold() { |
||
| 1216 | |||
| 1217 | /** |
||
| 1218 | * Get the stack. |
||
| 1219 | * |
||
| 1220 | * @return string Returns the stack. |
||
| 1221 | */ |
||
| 1222 | public function getStack() { |
||
| 1225 | |||
| 1226 | /** |
||
| 1227 | * Get the stacking. |
||
| 1228 | * |
||
| 1229 | * @return string Returns the stacking. |
||
| 1230 | */ |
||
| 1231 | public function getStacking() { |
||
| 1234 | |||
| 1235 | /** |
||
| 1236 | * Get the states. |
||
| 1237 | * |
||
| 1238 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Column\HighchartsStates Returns the states. |
||
| 1239 | */ |
||
| 1240 | public function getStates() { |
||
| 1243 | |||
| 1244 | /** |
||
| 1245 | * Get the sticky tracking. |
||
| 1246 | * |
||
| 1247 | * @return boolean Returns the sticky tracking. |
||
| 1248 | */ |
||
| 1249 | public function getStickyTracking() { |
||
| 1252 | |||
| 1253 | /** |
||
| 1254 | * Get the threshold. |
||
| 1255 | * |
||
| 1256 | * @return integer Returns the threshold. |
||
| 1257 | */ |
||
| 1258 | public function getThreshold() { |
||
| 1261 | |||
| 1262 | /** |
||
| 1263 | * Get the tooltip. |
||
| 1264 | * |
||
| 1265 | * @return array Returns the tooltip. |
||
| 1266 | */ |
||
| 1267 | public function getTooltip() { |
||
| 1270 | |||
| 1271 | /** |
||
| 1272 | * Get the turbo threshold. |
||
| 1273 | * |
||
| 1274 | * @return integer Returns the turbo threshold. |
||
| 1275 | */ |
||
| 1276 | public function getTurboThreshold() { |
||
| 1279 | |||
| 1280 | /** |
||
| 1281 | * Get the type. |
||
| 1282 | * |
||
| 1283 | * @return string Returns the type. |
||
| 1284 | */ |
||
| 1285 | public function getType() { |
||
| 1288 | |||
| 1289 | /** |
||
| 1290 | * Get the visible. |
||
| 1291 | * |
||
| 1292 | * @return boolean Returns the visible. |
||
| 1293 | */ |
||
| 1294 | public function getVisible() { |
||
| 1297 | |||
| 1298 | /** |
||
| 1299 | * Get the x axis. |
||
| 1300 | * |
||
| 1301 | * @return integer|string Returns the x axis. |
||
| 1302 | */ |
||
| 1303 | public function getXAxis() { |
||
| 1306 | |||
| 1307 | /** |
||
| 1308 | * Get the y axis. |
||
| 1309 | * |
||
| 1310 | * @return integer|string Returns the y axis. |
||
| 1311 | */ |
||
| 1312 | public function getYAxis() { |
||
| 1315 | |||
| 1316 | /** |
||
| 1317 | * Get the z index. |
||
| 1318 | * |
||
| 1319 | * @return integer Returns the z index. |
||
| 1320 | */ |
||
| 1321 | public function getZIndex() { |
||
| 1324 | |||
| 1325 | /** |
||
| 1326 | * Get the zone axis. |
||
| 1327 | * |
||
| 1328 | * @return string Returns the zone axis. |
||
| 1329 | */ |
||
| 1330 | public function getZoneAxis() { |
||
| 1333 | |||
| 1334 | /** |
||
| 1335 | * Get the zones. |
||
| 1336 | * |
||
| 1337 | * @return array Returns the zones. |
||
| 1338 | */ |
||
| 1339 | public function getZones() { |
||
| 1342 | |||
| 1343 | /** |
||
| 1344 | * Serialize this instance. |
||
| 1345 | * |
||
| 1346 | * @return array Returns an array representing this instance. |
||
| 1347 | */ |
||
| 1348 | public function jsonSerialize() { |
||
| 1351 | |||
| 1352 | /** |
||
| 1353 | * Create a new data labels. |
||
| 1354 | * |
||
| 1355 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Column\HighchartsDataLabels Returns the data labels. |
||
| 1356 | */ |
||
| 1357 | public function newDataLabels() { |
||
| 1361 | |||
| 1362 | /** |
||
| 1363 | * Create a new events. |
||
| 1364 | * |
||
| 1365 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Column\HighchartsEvents Returns the events. |
||
| 1366 | */ |
||
| 1367 | public function newEvents() { |
||
| 1371 | |||
| 1372 | /** |
||
| 1373 | * Create a new point. |
||
| 1374 | * |
||
| 1375 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Column\HighchartsPoint Returns the point. |
||
| 1376 | */ |
||
| 1377 | public function newPoint() { |
||
| 1381 | |||
| 1382 | /** |
||
| 1383 | * Create a new states. |
||
| 1384 | * |
||
| 1385 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Column\HighchartsStates Returns the states. |
||
| 1386 | */ |
||
| 1387 | public function newStates() { |
||
| 1391 | |||
| 1392 | /** |
||
| 1393 | * Set the allow point select. |
||
| 1394 | * |
||
| 1395 | * @param boolean $allowPointSelect The allow point select. |
||
| 1396 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1397 | */ |
||
| 1398 | public function setAllowPointSelect($allowPointSelect) { |
||
| 1402 | |||
| 1403 | /** |
||
| 1404 | * Set the animation. |
||
| 1405 | * |
||
| 1406 | * @param boolean $animation The animation. |
||
| 1407 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1408 | */ |
||
| 1409 | public function setAnimation($animation) { |
||
| 1413 | |||
| 1414 | /** |
||
| 1415 | * Set the animation limit. |
||
| 1416 | * |
||
| 1417 | * @param integer $animationLimit The animation limit. |
||
| 1418 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1419 | */ |
||
| 1420 | public function setAnimationLimit($animationLimit) { |
||
| 1424 | |||
| 1425 | /** |
||
| 1426 | * Set the border color. |
||
| 1427 | * |
||
| 1428 | * @param string $borderColor The border color. |
||
| 1429 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1430 | */ |
||
| 1431 | public function setBorderColor($borderColor) { |
||
| 1435 | |||
| 1436 | /** |
||
| 1437 | * Set the border radius. |
||
| 1438 | * |
||
| 1439 | * @param integer $borderRadius The border radius. |
||
| 1440 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1441 | */ |
||
| 1442 | public function setBorderRadius($borderRadius) { |
||
| 1446 | |||
| 1447 | /** |
||
| 1448 | * Set the border width. |
||
| 1449 | * |
||
| 1450 | * @param integer $borderWidth The border width. |
||
| 1451 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1452 | */ |
||
| 1453 | public function setBorderWidth($borderWidth) { |
||
| 1457 | |||
| 1458 | /** |
||
| 1459 | * Set the class name. |
||
| 1460 | * |
||
| 1461 | * @param string $className The class name. |
||
| 1462 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1463 | */ |
||
| 1464 | public function setClassName($className) { |
||
| 1468 | |||
| 1469 | /** |
||
| 1470 | * Set the color. |
||
| 1471 | * |
||
| 1472 | * @param string $color The color. |
||
| 1473 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1474 | */ |
||
| 1475 | public function setColor($color) { |
||
| 1479 | |||
| 1480 | /** |
||
| 1481 | * Set the color by point. |
||
| 1482 | * |
||
| 1483 | * @param boolean $colorByPoint The color by point. |
||
| 1484 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1485 | */ |
||
| 1486 | public function setColorByPoint($colorByPoint) { |
||
| 1490 | |||
| 1491 | /** |
||
| 1492 | * Set the color index. |
||
| 1493 | * |
||
| 1494 | * @param integer $colorIndex The color index. |
||
| 1495 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1496 | */ |
||
| 1497 | public function setColorIndex($colorIndex) { |
||
| 1501 | |||
| 1502 | /** |
||
| 1503 | * Set the colors. |
||
| 1504 | * |
||
| 1505 | * @param array $colors The colors. |
||
| 1506 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1507 | */ |
||
| 1508 | public function setColors(array $colors = null) { |
||
| 1512 | |||
| 1513 | /** |
||
| 1514 | * Set the crisp. |
||
| 1515 | * |
||
| 1516 | * @param boolean $crisp The crisp. |
||
| 1517 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1518 | */ |
||
| 1519 | public function setCrisp($crisp) { |
||
| 1523 | |||
| 1524 | /** |
||
| 1525 | * Set the crop threshold. |
||
| 1526 | * |
||
| 1527 | * @param integer $cropThreshold The crop threshold. |
||
| 1528 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1529 | */ |
||
| 1530 | public function setCropThreshold($cropThreshold) { |
||
| 1534 | |||
| 1535 | /** |
||
| 1536 | * Set the cursor. |
||
| 1537 | * |
||
| 1538 | * @param string $cursor The cursor. |
||
| 1539 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1540 | */ |
||
| 1541 | public function setCursor($cursor) { |
||
| 1554 | |||
| 1555 | /** |
||
| 1556 | * Set the data. |
||
| 1557 | * |
||
| 1558 | * @param array $data The data. |
||
| 1559 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1560 | */ |
||
| 1561 | public function setData(array $data = null) { |
||
| 1565 | |||
| 1566 | /** |
||
| 1567 | * Set the data labels. |
||
| 1568 | * |
||
| 1569 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\Series\Column\HighchartsDataLabels $dataLabels The data labels. |
||
| 1570 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1571 | */ |
||
| 1572 | public function setDataLabels(\WBW\Bundle\HighchartsBundle\API\Chart\Series\Column\HighchartsDataLabels $dataLabels = null) { |
||
| 1576 | |||
| 1577 | /** |
||
| 1578 | * Set the depth. |
||
| 1579 | * |
||
| 1580 | * @param integer $depth The depth. |
||
| 1581 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1582 | */ |
||
| 1583 | public function setDepth($depth) { |
||
| 1587 | |||
| 1588 | /** |
||
| 1589 | * Set the description. |
||
| 1590 | * |
||
| 1591 | * @param string $description The description. |
||
| 1592 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1593 | */ |
||
| 1594 | public function setDescription($description) { |
||
| 1598 | |||
| 1599 | /** |
||
| 1600 | * Set the edge color. |
||
| 1601 | * |
||
| 1602 | * @param string $edgeColor The edge color. |
||
| 1603 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1604 | */ |
||
| 1605 | public function setEdgeColor($edgeColor) { |
||
| 1609 | |||
| 1610 | /** |
||
| 1611 | * Set the edge width. |
||
| 1612 | * |
||
| 1613 | * @param integer $edgeWidth The edge width. |
||
| 1614 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1615 | */ |
||
| 1616 | public function setEdgeWidth($edgeWidth) { |
||
| 1620 | |||
| 1621 | /** |
||
| 1622 | * Set the enable mouse tracking. |
||
| 1623 | * |
||
| 1624 | * @param boolean $enableMouseTracking The enable mouse tracking. |
||
| 1625 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1626 | */ |
||
| 1627 | public function setEnableMouseTracking($enableMouseTracking) { |
||
| 1631 | |||
| 1632 | /** |
||
| 1633 | * Set the events. |
||
| 1634 | * |
||
| 1635 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\Series\Column\HighchartsEvents $events The events. |
||
| 1636 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1637 | */ |
||
| 1638 | public function setEvents(\WBW\Bundle\HighchartsBundle\API\Chart\Series\Column\HighchartsEvents $events = null) { |
||
| 1642 | |||
| 1643 | /** |
||
| 1644 | * Set the expose element to a11y. |
||
| 1645 | * |
||
| 1646 | * @param boolean $exposeElementToA11y The expose element to a11y. |
||
| 1647 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1648 | */ |
||
| 1649 | public function setExposeElementToA11y($exposeElementToA11y) { |
||
| 1653 | |||
| 1654 | /** |
||
| 1655 | * Set the find nearest point by. |
||
| 1656 | * |
||
| 1657 | * @param string $findNearestPointBy The find nearest point by. |
||
| 1658 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1659 | */ |
||
| 1660 | public function setFindNearestPointBy($findNearestPointBy) { |
||
| 1669 | |||
| 1670 | /** |
||
| 1671 | * Set the get extremes from all. |
||
| 1672 | * |
||
| 1673 | * @param boolean $getExtremesFromAll The get extremes from all. |
||
| 1674 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1675 | */ |
||
| 1676 | public function setGetExtremesFromAll($getExtremesFromAll) { |
||
| 1680 | |||
| 1681 | /** |
||
| 1682 | * Set the group padding. |
||
| 1683 | * |
||
| 1684 | * @param integer $groupPadding The group padding. |
||
| 1685 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1686 | */ |
||
| 1687 | public function setGroupPadding($groupPadding) { |
||
| 1691 | |||
| 1692 | /** |
||
| 1693 | * Set the group z padding. |
||
| 1694 | * |
||
| 1695 | * @param integer $groupZPadding The group z padding. |
||
| 1696 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1697 | */ |
||
| 1698 | public function setGroupZPadding($groupZPadding) { |
||
| 1702 | |||
| 1703 | /** |
||
| 1704 | * Set the grouping. |
||
| 1705 | * |
||
| 1706 | * @param boolean $grouping The grouping. |
||
| 1707 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1708 | */ |
||
| 1709 | public function setGrouping($grouping) { |
||
| 1713 | |||
| 1714 | /** |
||
| 1715 | * Set the id. |
||
| 1716 | * |
||
| 1717 | * @param string $id The id. |
||
| 1718 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1719 | */ |
||
| 1720 | public function setId($id) { |
||
| 1724 | |||
| 1725 | /** |
||
| 1726 | * Set the index. |
||
| 1727 | * |
||
| 1728 | * @param integer $index The index. |
||
| 1729 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1730 | */ |
||
| 1731 | public function setIndex($index) { |
||
| 1735 | |||
| 1736 | /** |
||
| 1737 | * Set the keys. |
||
| 1738 | * |
||
| 1739 | * @param array $keys The keys. |
||
| 1740 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1741 | */ |
||
| 1742 | public function setKeys(array $keys = null) { |
||
| 1746 | |||
| 1747 | /** |
||
| 1748 | * Set the legend index. |
||
| 1749 | * |
||
| 1750 | * @param integer $legendIndex The legend index. |
||
| 1751 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1752 | */ |
||
| 1753 | public function setLegendIndex($legendIndex) { |
||
| 1757 | |||
| 1758 | /** |
||
| 1759 | * Set the linked to. |
||
| 1760 | * |
||
| 1761 | * @param string $linkedTo The linked to. |
||
| 1762 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1763 | */ |
||
| 1764 | public function setLinkedTo($linkedTo) { |
||
| 1768 | |||
| 1769 | /** |
||
| 1770 | * Set the max point width. |
||
| 1771 | * |
||
| 1772 | * @param integer $maxPointWidth The max point width. |
||
| 1773 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1774 | */ |
||
| 1775 | public function setMaxPointWidth($maxPointWidth) { |
||
| 1779 | |||
| 1780 | /** |
||
| 1781 | * Set the min point length. |
||
| 1782 | * |
||
| 1783 | * @param integer $minPointLength The min point length. |
||
| 1784 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1785 | */ |
||
| 1786 | public function setMinPointLength($minPointLength) { |
||
| 1790 | |||
| 1791 | /** |
||
| 1792 | * Set the name. |
||
| 1793 | * |
||
| 1794 | * @param string $name The name. |
||
| 1795 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1796 | */ |
||
| 1797 | public function setName($name) { |
||
| 1801 | |||
| 1802 | /** |
||
| 1803 | * Set the negative color. |
||
| 1804 | * |
||
| 1805 | * @param string $negativeColor The negative color. |
||
| 1806 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1807 | */ |
||
| 1808 | public function setNegativeColor($negativeColor) { |
||
| 1812 | |||
| 1813 | /** |
||
| 1814 | * Set the point. |
||
| 1815 | * |
||
| 1816 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\Series\Column\HighchartsPoint $point The point. |
||
| 1817 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1818 | */ |
||
| 1819 | public function setPoint(\WBW\Bundle\HighchartsBundle\API\Chart\Series\Column\HighchartsPoint $point = null) { |
||
| 1823 | |||
| 1824 | /** |
||
| 1825 | * Set the point description formatter. |
||
| 1826 | * |
||
| 1827 | * @param string $pointDescriptionFormatter The point description formatter. |
||
| 1828 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1829 | */ |
||
| 1830 | public function setPointDescriptionFormatter($pointDescriptionFormatter) { |
||
| 1834 | |||
| 1835 | /** |
||
| 1836 | * Set the point interval. |
||
| 1837 | * |
||
| 1838 | * @param integer $pointInterval The point interval. |
||
| 1839 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1840 | */ |
||
| 1841 | public function setPointInterval($pointInterval) { |
||
| 1845 | |||
| 1846 | /** |
||
| 1847 | * Set the point interval unit. |
||
| 1848 | * |
||
| 1849 | * @param string $pointIntervalUnit The point interval unit. |
||
| 1850 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1851 | */ |
||
| 1852 | public function setPointIntervalUnit($pointIntervalUnit) { |
||
| 1863 | |||
| 1864 | /** |
||
| 1865 | * Set the point padding. |
||
| 1866 | * |
||
| 1867 | * @param integer $pointPadding The point padding. |
||
| 1868 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1869 | */ |
||
| 1870 | public function setPointPadding($pointPadding) { |
||
| 1874 | |||
| 1875 | /** |
||
| 1876 | * Set the point placement. |
||
| 1877 | * |
||
| 1878 | * @param string|integer $pointPlacement The point placement. |
||
| 1879 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1880 | */ |
||
| 1881 | public function setPointPlacement($pointPlacement) { |
||
| 1891 | |||
| 1892 | /** |
||
| 1893 | * Set the point range. |
||
| 1894 | * |
||
| 1895 | * @param integer $pointRange The point range. |
||
| 1896 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1897 | */ |
||
| 1898 | public function setPointRange($pointRange) { |
||
| 1902 | |||
| 1903 | /** |
||
| 1904 | * Set the point start. |
||
| 1905 | * |
||
| 1906 | * @param integer $pointStart The point start. |
||
| 1907 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1908 | */ |
||
| 1909 | public function setPointStart($pointStart) { |
||
| 1913 | |||
| 1914 | /** |
||
| 1915 | * Set the point width. |
||
| 1916 | * |
||
| 1917 | * @param integer $pointWidth The point width. |
||
| 1918 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1919 | */ |
||
| 1920 | public function setPointWidth($pointWidth) { |
||
| 1924 | |||
| 1925 | /** |
||
| 1926 | * Set the selected. |
||
| 1927 | * |
||
| 1928 | * @param boolean $selected The selected. |
||
| 1929 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1930 | */ |
||
| 1931 | public function setSelected($selected) { |
||
| 1935 | |||
| 1936 | /** |
||
| 1937 | * Set the shadow. |
||
| 1938 | * |
||
| 1939 | * @param boolean|array $shadow The shadow. |
||
| 1940 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1941 | */ |
||
| 1942 | public function setShadow($shadow) { |
||
| 1946 | |||
| 1947 | /** |
||
| 1948 | * Set the show checkbox. |
||
| 1949 | * |
||
| 1950 | * @param boolean $showCheckbox The show checkbox. |
||
| 1951 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1952 | */ |
||
| 1953 | public function setShowCheckbox($showCheckbox) { |
||
| 1957 | |||
| 1958 | /** |
||
| 1959 | * Set the show in legend. |
||
| 1960 | * |
||
| 1961 | * @param boolean $showInLegend The show in legend. |
||
| 1962 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1963 | */ |
||
| 1964 | public function setShowInLegend($showInLegend) { |
||
| 1968 | |||
| 1969 | /** |
||
| 1970 | * Set the skip keyboard navigation. |
||
| 1971 | * |
||
| 1972 | * @param boolean $skipKeyboardNavigation The skip keyboard navigation. |
||
| 1973 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1974 | */ |
||
| 1975 | public function setSkipKeyboardNavigation($skipKeyboardNavigation) { |
||
| 1979 | |||
| 1980 | /** |
||
| 1981 | * Set the soft threshold. |
||
| 1982 | * |
||
| 1983 | * @param boolean $softThreshold The soft threshold. |
||
| 1984 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1985 | */ |
||
| 1986 | public function setSoftThreshold($softThreshold) { |
||
| 1990 | |||
| 1991 | /** |
||
| 1992 | * Set the stack. |
||
| 1993 | * |
||
| 1994 | * @param string $stack The stack. |
||
| 1995 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 1996 | */ |
||
| 1997 | public function setStack($stack) { |
||
| 2001 | |||
| 2002 | /** |
||
| 2003 | * Set the stacking. |
||
| 2004 | * |
||
| 2005 | * @param string $stacking The stacking. |
||
| 2006 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 2007 | */ |
||
| 2008 | public function setStacking($stacking) { |
||
| 2018 | |||
| 2019 | /** |
||
| 2020 | * Set the states. |
||
| 2021 | * |
||
| 2022 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\Series\Column\HighchartsStates $states The states. |
||
| 2023 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 2024 | */ |
||
| 2025 | public function setStates(\WBW\Bundle\HighchartsBundle\API\Chart\Series\Column\HighchartsStates $states = null) { |
||
| 2029 | |||
| 2030 | /** |
||
| 2031 | * Set the sticky tracking. |
||
| 2032 | * |
||
| 2033 | * @param boolean $stickyTracking The sticky tracking. |
||
| 2034 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 2035 | */ |
||
| 2036 | public function setStickyTracking($stickyTracking) { |
||
| 2040 | |||
| 2041 | /** |
||
| 2042 | * Set the threshold. |
||
| 2043 | * |
||
| 2044 | * @param integer $threshold The threshold. |
||
| 2045 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 2046 | */ |
||
| 2047 | public function setThreshold($threshold) { |
||
| 2051 | |||
| 2052 | /** |
||
| 2053 | * Set the tooltip. |
||
| 2054 | * |
||
| 2055 | * @param array $tooltip The tooltip. |
||
| 2056 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 2057 | */ |
||
| 2058 | public function setTooltip(array $tooltip = null) { |
||
| 2062 | |||
| 2063 | /** |
||
| 2064 | * Set the turbo threshold. |
||
| 2065 | * |
||
| 2066 | * @param integer $turboThreshold The turbo threshold. |
||
| 2067 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 2068 | */ |
||
| 2069 | public function setTurboThreshold($turboThreshold) { |
||
| 2073 | |||
| 2074 | /** |
||
| 2075 | * Set the type. |
||
| 2076 | * |
||
| 2077 | * @param string $type The type. |
||
| 2078 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 2079 | */ |
||
| 2080 | public function setType($type) { |
||
| 2104 | |||
| 2105 | /** |
||
| 2106 | * Set the visible. |
||
| 2107 | * |
||
| 2108 | * @param boolean $visible The visible. |
||
| 2109 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 2110 | */ |
||
| 2111 | public function setVisible($visible) { |
||
| 2115 | |||
| 2116 | /** |
||
| 2117 | * Set the x axis. |
||
| 2118 | * |
||
| 2119 | * @param integer|string $xAxis The x axis. |
||
| 2120 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 2121 | */ |
||
| 2122 | public function setXAxis($xAxis) { |
||
| 2126 | |||
| 2127 | /** |
||
| 2128 | * Set the y axis. |
||
| 2129 | * |
||
| 2130 | * @param integer|string $yAxis The y axis. |
||
| 2131 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 2132 | */ |
||
| 2133 | public function setYAxis($yAxis) { |
||
| 2137 | |||
| 2138 | /** |
||
| 2139 | * Set the z index. |
||
| 2140 | * |
||
| 2141 | * @param integer $zIndex The z index. |
||
| 2142 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 2143 | */ |
||
| 2144 | public function setZIndex($zIndex) { |
||
| 2148 | |||
| 2149 | /** |
||
| 2150 | * Set the zone axis. |
||
| 2151 | * |
||
| 2152 | * @param string $zoneAxis The zone axis. |
||
| 2153 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 2154 | */ |
||
| 2155 | public function setZoneAxis($zoneAxis) { |
||
| 2159 | |||
| 2160 | /** |
||
| 2161 | * Set the zones. |
||
| 2162 | * |
||
| 2163 | * @param array $zones The zones. |
||
| 2164 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsColumn Returns the highcharts column. |
||
| 2165 | */ |
||
| 2166 | public function setZones(array $zones = null) { |
||
| 2170 | |||
| 2171 | /** |
||
| 2172 | * Convert into an array representing this instance. |
||
| 2173 | * |
||
| 2174 | * @return array Returns an array representing this instance. |
||
| 2175 | */ |
||
| 2176 | public function toArray() { |
||
| 2390 | |||
| 2391 | } |
||
| 2392 |
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..