Complex classes like HighchartsArea 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 HighchartsArea, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 25 | final class HighchartsArea 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 | * Class name. |
||
| 51 | * |
||
| 52 | * @var string |
||
| 53 | * @since 5.0.0 |
||
| 54 | */ |
||
| 55 | private $className; |
||
| 56 | |||
| 57 | /** |
||
| 58 | * Color. |
||
| 59 | * |
||
| 60 | * @var string |
||
| 61 | */ |
||
| 62 | private $color; |
||
| 63 | |||
| 64 | /** |
||
| 65 | * Color index. |
||
| 66 | * |
||
| 67 | * @var integer |
||
| 68 | * @since 5.0.0 |
||
| 69 | */ |
||
| 70 | private $colorIndex; |
||
| 71 | |||
| 72 | /** |
||
| 73 | * Connect ends. |
||
| 74 | * |
||
| 75 | * @var boolean |
||
| 76 | * @since 2.3.0 |
||
| 77 | */ |
||
| 78 | private $connectEnds = true; |
||
| 79 | |||
| 80 | /** |
||
| 81 | * Connect nulls. |
||
| 82 | * |
||
| 83 | * @var boolean |
||
| 84 | */ |
||
| 85 | private $connectNulls = false; |
||
| 86 | |||
| 87 | /** |
||
| 88 | * Crop threshold. |
||
| 89 | * |
||
| 90 | * @var integer |
||
| 91 | * @since 2.2 |
||
| 92 | */ |
||
| 93 | private $cropThreshold = 300; |
||
| 94 | |||
| 95 | /** |
||
| 96 | * Cursor. |
||
| 97 | * |
||
| 98 | * @var string |
||
| 99 | */ |
||
| 100 | private $cursor; |
||
| 101 | |||
| 102 | /** |
||
| 103 | * Dash style. |
||
| 104 | * |
||
| 105 | * @var string |
||
| 106 | * @since 2.1 |
||
| 107 | */ |
||
| 108 | private $dashStyle = "Solid"; |
||
| 109 | |||
| 110 | /** |
||
| 111 | * Data. |
||
| 112 | * |
||
| 113 | * @var array |
||
| 114 | */ |
||
| 115 | private $data; |
||
| 116 | |||
| 117 | /** |
||
| 118 | * Data labels. |
||
| 119 | * |
||
| 120 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\Series\Area\HighchartsDataLabels |
||
| 121 | */ |
||
| 122 | private $dataLabels; |
||
| 123 | |||
| 124 | /** |
||
| 125 | * Description. |
||
| 126 | * |
||
| 127 | * @var string |
||
| 128 | * @since 5.0.0 |
||
| 129 | */ |
||
| 130 | private $description; |
||
| 131 | |||
| 132 | /** |
||
| 133 | * Enable mouse tracking. |
||
| 134 | * |
||
| 135 | * @var boolean |
||
| 136 | */ |
||
| 137 | private $enableMouseTracking = true; |
||
| 138 | |||
| 139 | /** |
||
| 140 | * Events. |
||
| 141 | * |
||
| 142 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\Series\Area\HighchartsEvents |
||
| 143 | */ |
||
| 144 | private $events; |
||
| 145 | |||
| 146 | /** |
||
| 147 | * Expose element to a11y. |
||
| 148 | * |
||
| 149 | * @var boolean |
||
| 150 | * @since 5.0.12 |
||
| 151 | */ |
||
| 152 | private $exposeElementToA11y; |
||
| 153 | |||
| 154 | /** |
||
| 155 | * Fill color. |
||
| 156 | * |
||
| 157 | * @var string |
||
| 158 | */ |
||
| 159 | private $fillColor; |
||
| 160 | |||
| 161 | /** |
||
| 162 | * Fill opacity. |
||
| 163 | * |
||
| 164 | * @var integer |
||
| 165 | */ |
||
| 166 | private $fillOpacity = 0.75; |
||
| 167 | |||
| 168 | /** |
||
| 169 | * Find nearest point by. |
||
| 170 | * |
||
| 171 | * @var string |
||
| 172 | * @since 5.0.10 |
||
| 173 | */ |
||
| 174 | private $findNearestPointBy; |
||
| 175 | |||
| 176 | /** |
||
| 177 | * Get extremes from all. |
||
| 178 | * |
||
| 179 | * @var boolean |
||
| 180 | * @since 4.1.6 |
||
| 181 | */ |
||
| 182 | private $getExtremesFromAll = false; |
||
| 183 | |||
| 184 | /** |
||
| 185 | * Id. |
||
| 186 | * |
||
| 187 | * @var string |
||
| 188 | * @since 1.2.0 |
||
| 189 | */ |
||
| 190 | private $id; |
||
| 191 | |||
| 192 | /** |
||
| 193 | * Index. |
||
| 194 | * |
||
| 195 | * @var integer |
||
| 196 | * @since 2.3.0 |
||
| 197 | */ |
||
| 198 | private $index; |
||
| 199 | |||
| 200 | /** |
||
| 201 | * Keys. |
||
| 202 | * |
||
| 203 | * @var array |
||
| 204 | * @since 4.1.6 |
||
| 205 | */ |
||
| 206 | private $keys; |
||
| 207 | |||
| 208 | /** |
||
| 209 | * Legend index. |
||
| 210 | * |
||
| 211 | * @var integer |
||
| 212 | */ |
||
| 213 | private $legendIndex; |
||
| 214 | |||
| 215 | /** |
||
| 216 | * Line color. |
||
| 217 | * |
||
| 218 | * @var string |
||
| 219 | */ |
||
| 220 | private $lineColor; |
||
| 221 | |||
| 222 | /** |
||
| 223 | * Line width. |
||
| 224 | * |
||
| 225 | * @var integer |
||
| 226 | */ |
||
| 227 | private $lineWidth = 2; |
||
| 228 | |||
| 229 | /** |
||
| 230 | * Linecap. |
||
| 231 | * |
||
| 232 | * @var string |
||
| 233 | */ |
||
| 234 | private $linecap = "round"; |
||
| 235 | |||
| 236 | /** |
||
| 237 | * Linked to. |
||
| 238 | * |
||
| 239 | * @var string |
||
| 240 | * @since 3.0 |
||
| 241 | */ |
||
| 242 | private $linkedTo; |
||
| 243 | |||
| 244 | /** |
||
| 245 | * Marker. |
||
| 246 | * |
||
| 247 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\Series\Area\HighchartsMarker |
||
| 248 | */ |
||
| 249 | private $marker; |
||
| 250 | |||
| 251 | /** |
||
| 252 | * Name. |
||
| 253 | * |
||
| 254 | * @var string |
||
| 255 | */ |
||
| 256 | private $name; |
||
| 257 | |||
| 258 | /** |
||
| 259 | * Negative color. |
||
| 260 | * |
||
| 261 | * @var string |
||
| 262 | * @since 3.0 |
||
| 263 | */ |
||
| 264 | private $negativeColor; |
||
| 265 | |||
| 266 | /** |
||
| 267 | * Negative fill color. |
||
| 268 | * |
||
| 269 | * @var string |
||
| 270 | * @since 3.0 |
||
| 271 | */ |
||
| 272 | private $negativeFillColor; |
||
| 273 | |||
| 274 | /** |
||
| 275 | * Point. |
||
| 276 | * |
||
| 277 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\Series\Area\HighchartsPoint |
||
| 278 | */ |
||
| 279 | private $point; |
||
| 280 | |||
| 281 | /** |
||
| 282 | * Point description formatter. |
||
| 283 | * |
||
| 284 | * @var string |
||
| 285 | * @since 5.0.12 |
||
| 286 | */ |
||
| 287 | private $pointDescriptionFormatter; |
||
| 288 | |||
| 289 | /** |
||
| 290 | * Point interval. |
||
| 291 | * |
||
| 292 | * @var integer |
||
| 293 | */ |
||
| 294 | private $pointInterval = 1; |
||
| 295 | |||
| 296 | /** |
||
| 297 | * Point interval unit. |
||
| 298 | * |
||
| 299 | * @var string |
||
| 300 | * @since 4.1.0 |
||
| 301 | */ |
||
| 302 | private $pointIntervalUnit; |
||
| 303 | |||
| 304 | /** |
||
| 305 | * Point placement. |
||
| 306 | * |
||
| 307 | * @var string|integer |
||
| 308 | * @since 2.3.0 |
||
| 309 | */ |
||
| 310 | private $pointPlacement; |
||
| 311 | |||
| 312 | /** |
||
| 313 | * Point start. |
||
| 314 | * |
||
| 315 | * @var integer |
||
| 316 | */ |
||
| 317 | private $pointStart = 0; |
||
| 318 | |||
| 319 | /** |
||
| 320 | * Selected. |
||
| 321 | * |
||
| 322 | * @var boolean |
||
| 323 | * @since 1.2.0 |
||
| 324 | */ |
||
| 325 | private $selected = false; |
||
| 326 | |||
| 327 | /** |
||
| 328 | * Shadow. |
||
| 329 | * |
||
| 330 | * @var boolean|array |
||
| 331 | */ |
||
| 332 | private $shadow = false; |
||
| 333 | |||
| 334 | /** |
||
| 335 | * Show checkbox. |
||
| 336 | * |
||
| 337 | * @var boolean |
||
| 338 | * @since 1.2.0 |
||
| 339 | */ |
||
| 340 | private $showCheckbox = false; |
||
| 341 | |||
| 342 | /** |
||
| 343 | * Show in legend. |
||
| 344 | * |
||
| 345 | * @var boolean |
||
| 346 | */ |
||
| 347 | private $showInLegend = true; |
||
| 348 | |||
| 349 | /** |
||
| 350 | * Skip keyboard navigation. |
||
| 351 | * |
||
| 352 | * @var boolean |
||
| 353 | * @since 5.0.12 |
||
| 354 | */ |
||
| 355 | private $skipKeyboardNavigation; |
||
| 356 | |||
| 357 | /** |
||
| 358 | * Soft threshold. |
||
| 359 | * |
||
| 360 | * @var boolean |
||
| 361 | * @since 4.1.9 |
||
| 362 | */ |
||
| 363 | private $softThreshold = false; |
||
| 364 | |||
| 365 | /** |
||
| 366 | * Stack. |
||
| 367 | * |
||
| 368 | * @var string |
||
| 369 | * @since 2.1 |
||
| 370 | */ |
||
| 371 | private $stack; |
||
| 372 | |||
| 373 | /** |
||
| 374 | * Stacking. |
||
| 375 | * |
||
| 376 | * @var string |
||
| 377 | */ |
||
| 378 | private $stacking; |
||
| 379 | |||
| 380 | /** |
||
| 381 | * States. |
||
| 382 | * |
||
| 383 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\Series\Area\HighchartsStates |
||
| 384 | */ |
||
| 385 | private $states; |
||
| 386 | |||
| 387 | /** |
||
| 388 | * Step. |
||
| 389 | * |
||
| 390 | * @var string |
||
| 391 | * @since 1.2.5 |
||
| 392 | */ |
||
| 393 | private $step = "false"; |
||
| 394 | |||
| 395 | /** |
||
| 396 | * Sticky tracking. |
||
| 397 | * |
||
| 398 | * @var boolean |
||
| 399 | * @since 2.0 |
||
| 400 | */ |
||
| 401 | private $stickyTracking = true; |
||
| 402 | |||
| 403 | /** |
||
| 404 | * Threshold. |
||
| 405 | * |
||
| 406 | * @var integer |
||
| 407 | * @since 2.0 |
||
| 408 | */ |
||
| 409 | private $threshold = 0; |
||
| 410 | |||
| 411 | /** |
||
| 412 | * Tooltip. |
||
| 413 | * |
||
| 414 | * @var array |
||
| 415 | * @since 2.3 |
||
| 416 | */ |
||
| 417 | private $tooltip; |
||
| 418 | |||
| 419 | /** |
||
| 420 | * Track by area. |
||
| 421 | * |
||
| 422 | * @var boolean |
||
| 423 | * @since 1.1.6 |
||
| 424 | */ |
||
| 425 | private $trackByArea = false; |
||
| 426 | |||
| 427 | /** |
||
| 428 | * Turbo threshold. |
||
| 429 | * |
||
| 430 | * @var integer |
||
| 431 | * @since 2.2 |
||
| 432 | */ |
||
| 433 | private $turboThreshold = 1000; |
||
| 434 | |||
| 435 | /** |
||
| 436 | * Type. |
||
| 437 | * |
||
| 438 | * @var string |
||
| 439 | */ |
||
| 440 | private $type; |
||
| 441 | |||
| 442 | /** |
||
| 443 | * Visible. |
||
| 444 | * |
||
| 445 | * @var boolean |
||
| 446 | */ |
||
| 447 | private $visible = true; |
||
| 448 | |||
| 449 | /** |
||
| 450 | * X axis. |
||
| 451 | * |
||
| 452 | * @var integer|string |
||
| 453 | */ |
||
| 454 | private $xAxis = "0"; |
||
| 455 | |||
| 456 | /** |
||
| 457 | * Y axis. |
||
| 458 | * |
||
| 459 | * @var integer|string |
||
| 460 | */ |
||
| 461 | private $yAxis = "0"; |
||
| 462 | |||
| 463 | /** |
||
| 464 | * Z index. |
||
| 465 | * |
||
| 466 | * @var integer |
||
| 467 | */ |
||
| 468 | private $zIndex; |
||
| 469 | |||
| 470 | /** |
||
| 471 | * Zone axis. |
||
| 472 | * |
||
| 473 | * @var string |
||
| 474 | * @since 4.1.0 |
||
| 475 | */ |
||
| 476 | private $zoneAxis = "y"; |
||
| 477 | |||
| 478 | /** |
||
| 479 | * Zones. |
||
| 480 | * |
||
| 481 | * @var array |
||
| 482 | * @since 4.1.0 |
||
| 483 | */ |
||
| 484 | private $zones; |
||
| 485 | |||
| 486 | /** |
||
| 487 | * Constructor. |
||
| 488 | * |
||
| 489 | * @param boolean $ignoreDefaultValues Ignore the default values. |
||
| 490 | */ |
||
| 491 | public function __construct($ignoreDefaultValues = true) { |
||
| 496 | |||
| 497 | /** |
||
| 498 | * Clear. |
||
| 499 | * |
||
| 500 | * @return void |
||
| 501 | */ |
||
| 502 | public function clear() { |
||
| 697 | |||
| 698 | /** |
||
| 699 | * Get the allow point select. |
||
| 700 | * |
||
| 701 | * @return boolean Returns the allow point select. |
||
| 702 | */ |
||
| 703 | public function getAllowPointSelect() { |
||
| 706 | |||
| 707 | /** |
||
| 708 | * Get the animation. |
||
| 709 | * |
||
| 710 | * @return boolean Returns the animation. |
||
| 711 | */ |
||
| 712 | public function getAnimation() { |
||
| 715 | |||
| 716 | /** |
||
| 717 | * Get the animation limit. |
||
| 718 | * |
||
| 719 | * @return integer Returns the animation limit. |
||
| 720 | */ |
||
| 721 | public function getAnimationLimit() { |
||
| 724 | |||
| 725 | /** |
||
| 726 | * Get the class name. |
||
| 727 | * |
||
| 728 | * @return string Returns the class name. |
||
| 729 | */ |
||
| 730 | public function getClassName() { |
||
| 733 | |||
| 734 | /** |
||
| 735 | * Get the color. |
||
| 736 | * |
||
| 737 | * @return string Returns the color. |
||
| 738 | */ |
||
| 739 | public function getColor() { |
||
| 742 | |||
| 743 | /** |
||
| 744 | * Get the color index. |
||
| 745 | * |
||
| 746 | * @return integer Returns the color index. |
||
| 747 | */ |
||
| 748 | public function getColorIndex() { |
||
| 751 | |||
| 752 | /** |
||
| 753 | * Get the connect ends. |
||
| 754 | * |
||
| 755 | * @return boolean Returns the connect ends. |
||
| 756 | */ |
||
| 757 | public function getConnectEnds() { |
||
| 760 | |||
| 761 | /** |
||
| 762 | * Get the connect nulls. |
||
| 763 | * |
||
| 764 | * @return boolean Returns the connect nulls. |
||
| 765 | */ |
||
| 766 | public function getConnectNulls() { |
||
| 769 | |||
| 770 | /** |
||
| 771 | * Get the crop threshold. |
||
| 772 | * |
||
| 773 | * @return integer Returns the crop threshold. |
||
| 774 | */ |
||
| 775 | public function getCropThreshold() { |
||
| 778 | |||
| 779 | /** |
||
| 780 | * Get the cursor. |
||
| 781 | * |
||
| 782 | * @return string Returns the cursor. |
||
| 783 | */ |
||
| 784 | public function getCursor() { |
||
| 787 | |||
| 788 | /** |
||
| 789 | * Get the dash style. |
||
| 790 | * |
||
| 791 | * @return string Returns the dash style. |
||
| 792 | */ |
||
| 793 | public function getDashStyle() { |
||
| 796 | |||
| 797 | /** |
||
| 798 | * Get the data. |
||
| 799 | * |
||
| 800 | * @return array Returns the data. |
||
| 801 | */ |
||
| 802 | public function getData() { |
||
| 805 | |||
| 806 | /** |
||
| 807 | * Get the data labels. |
||
| 808 | * |
||
| 809 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Area\HighchartsDataLabels Returns the data labels. |
||
| 810 | */ |
||
| 811 | public function getDataLabels() { |
||
| 814 | |||
| 815 | /** |
||
| 816 | * Get the description. |
||
| 817 | * |
||
| 818 | * @return string Returns the description. |
||
| 819 | */ |
||
| 820 | public function getDescription() { |
||
| 823 | |||
| 824 | /** |
||
| 825 | * Get the enable mouse tracking. |
||
| 826 | * |
||
| 827 | * @return boolean Returns the enable mouse tracking. |
||
| 828 | */ |
||
| 829 | public function getEnableMouseTracking() { |
||
| 832 | |||
| 833 | /** |
||
| 834 | * Get the events. |
||
| 835 | * |
||
| 836 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Area\HighchartsEvents Returns the events. |
||
| 837 | */ |
||
| 838 | public function getEvents() { |
||
| 841 | |||
| 842 | /** |
||
| 843 | * Get the expose element to a11y. |
||
| 844 | * |
||
| 845 | * @return boolean Returns the expose element to a11y. |
||
| 846 | */ |
||
| 847 | public function getExposeElementToA11y() { |
||
| 850 | |||
| 851 | /** |
||
| 852 | * Get the fill color. |
||
| 853 | * |
||
| 854 | * @return string Returns the fill color. |
||
| 855 | */ |
||
| 856 | public function getFillColor() { |
||
| 859 | |||
| 860 | /** |
||
| 861 | * Get the fill opacity. |
||
| 862 | * |
||
| 863 | * @return integer Returns the fill opacity. |
||
| 864 | */ |
||
| 865 | public function getFillOpacity() { |
||
| 868 | |||
| 869 | /** |
||
| 870 | * Get the find nearest point by. |
||
| 871 | * |
||
| 872 | * @return string Returns the find nearest point by. |
||
| 873 | */ |
||
| 874 | public function getFindNearestPointBy() { |
||
| 877 | |||
| 878 | /** |
||
| 879 | * Get the get extremes from all. |
||
| 880 | * |
||
| 881 | * @return boolean Returns the get extremes from all. |
||
| 882 | */ |
||
| 883 | public function getGetExtremesFromAll() { |
||
| 886 | |||
| 887 | /** |
||
| 888 | * Get the id. |
||
| 889 | * |
||
| 890 | * @return string Returns the id. |
||
| 891 | */ |
||
| 892 | public function getId() { |
||
| 895 | |||
| 896 | /** |
||
| 897 | * Get the index. |
||
| 898 | * |
||
| 899 | * @return integer Returns the index. |
||
| 900 | */ |
||
| 901 | public function getIndex() { |
||
| 904 | |||
| 905 | /** |
||
| 906 | * Get the keys. |
||
| 907 | * |
||
| 908 | * @return array Returns the keys. |
||
| 909 | */ |
||
| 910 | public function getKeys() { |
||
| 913 | |||
| 914 | /** |
||
| 915 | * Get the legend index. |
||
| 916 | * |
||
| 917 | * @return integer Returns the legend index. |
||
| 918 | */ |
||
| 919 | public function getLegendIndex() { |
||
| 922 | |||
| 923 | /** |
||
| 924 | * Get the line color. |
||
| 925 | * |
||
| 926 | * @return string Returns the line color. |
||
| 927 | */ |
||
| 928 | public function getLineColor() { |
||
| 931 | |||
| 932 | /** |
||
| 933 | * Get the line width. |
||
| 934 | * |
||
| 935 | * @return integer Returns the line width. |
||
| 936 | */ |
||
| 937 | public function getLineWidth() { |
||
| 940 | |||
| 941 | /** |
||
| 942 | * Get the linecap. |
||
| 943 | * |
||
| 944 | * @return string Returns the linecap. |
||
| 945 | */ |
||
| 946 | public function getLinecap() { |
||
| 949 | |||
| 950 | /** |
||
| 951 | * Get the linked to. |
||
| 952 | * |
||
| 953 | * @return string Returns the linked to. |
||
| 954 | */ |
||
| 955 | public function getLinkedTo() { |
||
| 958 | |||
| 959 | /** |
||
| 960 | * Get the marker. |
||
| 961 | * |
||
| 962 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Area\HighchartsMarker Returns the marker. |
||
| 963 | */ |
||
| 964 | public function getMarker() { |
||
| 967 | |||
| 968 | /** |
||
| 969 | * Get the name. |
||
| 970 | * |
||
| 971 | * @return string Returns the name. |
||
| 972 | */ |
||
| 973 | public function getName() { |
||
| 976 | |||
| 977 | /** |
||
| 978 | * Get the negative color. |
||
| 979 | * |
||
| 980 | * @return string Returns the negative color. |
||
| 981 | */ |
||
| 982 | public function getNegativeColor() { |
||
| 985 | |||
| 986 | /** |
||
| 987 | * Get the negative fill color. |
||
| 988 | * |
||
| 989 | * @return string Returns the negative fill color. |
||
| 990 | */ |
||
| 991 | public function getNegativeFillColor() { |
||
| 994 | |||
| 995 | /** |
||
| 996 | * Get the point. |
||
| 997 | * |
||
| 998 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Area\HighchartsPoint Returns the point. |
||
| 999 | */ |
||
| 1000 | public function getPoint() { |
||
| 1003 | |||
| 1004 | /** |
||
| 1005 | * Get the point description formatter. |
||
| 1006 | * |
||
| 1007 | * @return string Returns the point description formatter. |
||
| 1008 | */ |
||
| 1009 | public function getPointDescriptionFormatter() { |
||
| 1012 | |||
| 1013 | /** |
||
| 1014 | * Get the point interval. |
||
| 1015 | * |
||
| 1016 | * @return integer Returns the point interval. |
||
| 1017 | */ |
||
| 1018 | public function getPointInterval() { |
||
| 1021 | |||
| 1022 | /** |
||
| 1023 | * Get the point interval unit. |
||
| 1024 | * |
||
| 1025 | * @return string Returns the point interval unit. |
||
| 1026 | */ |
||
| 1027 | public function getPointIntervalUnit() { |
||
| 1030 | |||
| 1031 | /** |
||
| 1032 | * Get the point placement. |
||
| 1033 | * |
||
| 1034 | * @return string|integer Returns the point placement. |
||
| 1035 | */ |
||
| 1036 | public function getPointPlacement() { |
||
| 1039 | |||
| 1040 | /** |
||
| 1041 | * Get the point start. |
||
| 1042 | * |
||
| 1043 | * @return integer Returns the point start. |
||
| 1044 | */ |
||
| 1045 | public function getPointStart() { |
||
| 1048 | |||
| 1049 | /** |
||
| 1050 | * Get the selected. |
||
| 1051 | * |
||
| 1052 | * @return boolean Returns the selected. |
||
| 1053 | */ |
||
| 1054 | public function getSelected() { |
||
| 1057 | |||
| 1058 | /** |
||
| 1059 | * Get the shadow. |
||
| 1060 | * |
||
| 1061 | * @return boolean|array Returns the shadow. |
||
| 1062 | */ |
||
| 1063 | public function getShadow() { |
||
| 1066 | |||
| 1067 | /** |
||
| 1068 | * Get the show checkbox. |
||
| 1069 | * |
||
| 1070 | * @return boolean Returns the show checkbox. |
||
| 1071 | */ |
||
| 1072 | public function getShowCheckbox() { |
||
| 1075 | |||
| 1076 | /** |
||
| 1077 | * Get the show in legend. |
||
| 1078 | * |
||
| 1079 | * @return boolean Returns the show in legend. |
||
| 1080 | */ |
||
| 1081 | public function getShowInLegend() { |
||
| 1084 | |||
| 1085 | /** |
||
| 1086 | * Get the skip keyboard navigation. |
||
| 1087 | * |
||
| 1088 | * @return boolean Returns the skip keyboard navigation. |
||
| 1089 | */ |
||
| 1090 | public function getSkipKeyboardNavigation() { |
||
| 1093 | |||
| 1094 | /** |
||
| 1095 | * Get the soft threshold. |
||
| 1096 | * |
||
| 1097 | * @return boolean Returns the soft threshold. |
||
| 1098 | */ |
||
| 1099 | public function getSoftThreshold() { |
||
| 1102 | |||
| 1103 | /** |
||
| 1104 | * Get the stack. |
||
| 1105 | * |
||
| 1106 | * @return string Returns the stack. |
||
| 1107 | */ |
||
| 1108 | public function getStack() { |
||
| 1111 | |||
| 1112 | /** |
||
| 1113 | * Get the stacking. |
||
| 1114 | * |
||
| 1115 | * @return string Returns the stacking. |
||
| 1116 | */ |
||
| 1117 | public function getStacking() { |
||
| 1120 | |||
| 1121 | /** |
||
| 1122 | * Get the states. |
||
| 1123 | * |
||
| 1124 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Area\HighchartsStates Returns the states. |
||
| 1125 | */ |
||
| 1126 | public function getStates() { |
||
| 1129 | |||
| 1130 | /** |
||
| 1131 | * Get the step. |
||
| 1132 | * |
||
| 1133 | * @return string Returns the step. |
||
| 1134 | */ |
||
| 1135 | public function getStep() { |
||
| 1138 | |||
| 1139 | /** |
||
| 1140 | * Get the sticky tracking. |
||
| 1141 | * |
||
| 1142 | * @return boolean Returns the sticky tracking. |
||
| 1143 | */ |
||
| 1144 | public function getStickyTracking() { |
||
| 1147 | |||
| 1148 | /** |
||
| 1149 | * Get the threshold. |
||
| 1150 | * |
||
| 1151 | * @return integer Returns the threshold. |
||
| 1152 | */ |
||
| 1153 | public function getThreshold() { |
||
| 1156 | |||
| 1157 | /** |
||
| 1158 | * Get the tooltip. |
||
| 1159 | * |
||
| 1160 | * @return array Returns the tooltip. |
||
| 1161 | */ |
||
| 1162 | public function getTooltip() { |
||
| 1165 | |||
| 1166 | /** |
||
| 1167 | * Get the track by area. |
||
| 1168 | * |
||
| 1169 | * @return boolean Returns the track by area. |
||
| 1170 | */ |
||
| 1171 | public function getTrackByArea() { |
||
| 1174 | |||
| 1175 | /** |
||
| 1176 | * Get the turbo threshold. |
||
| 1177 | * |
||
| 1178 | * @return integer Returns the turbo threshold. |
||
| 1179 | */ |
||
| 1180 | public function getTurboThreshold() { |
||
| 1183 | |||
| 1184 | /** |
||
| 1185 | * Get the type. |
||
| 1186 | * |
||
| 1187 | * @return string Returns the type. |
||
| 1188 | */ |
||
| 1189 | public function getType() { |
||
| 1192 | |||
| 1193 | /** |
||
| 1194 | * Get the visible. |
||
| 1195 | * |
||
| 1196 | * @return boolean Returns the visible. |
||
| 1197 | */ |
||
| 1198 | public function getVisible() { |
||
| 1201 | |||
| 1202 | /** |
||
| 1203 | * Get the x axis. |
||
| 1204 | * |
||
| 1205 | * @return integer|string Returns the x axis. |
||
| 1206 | */ |
||
| 1207 | public function getXAxis() { |
||
| 1210 | |||
| 1211 | /** |
||
| 1212 | * Get the y axis. |
||
| 1213 | * |
||
| 1214 | * @return integer|string Returns the y axis. |
||
| 1215 | */ |
||
| 1216 | public function getYAxis() { |
||
| 1219 | |||
| 1220 | /** |
||
| 1221 | * Get the z index. |
||
| 1222 | * |
||
| 1223 | * @return integer Returns the z index. |
||
| 1224 | */ |
||
| 1225 | public function getZIndex() { |
||
| 1228 | |||
| 1229 | /** |
||
| 1230 | * Get the zone axis. |
||
| 1231 | * |
||
| 1232 | * @return string Returns the zone axis. |
||
| 1233 | */ |
||
| 1234 | public function getZoneAxis() { |
||
| 1237 | |||
| 1238 | /** |
||
| 1239 | * Get the zones. |
||
| 1240 | * |
||
| 1241 | * @return array Returns the zones. |
||
| 1242 | */ |
||
| 1243 | public function getZones() { |
||
| 1246 | |||
| 1247 | /** |
||
| 1248 | * Serialize this instance. |
||
| 1249 | * |
||
| 1250 | * @return array Returns an array representing this instance. |
||
| 1251 | */ |
||
| 1252 | public function jsonSerialize() { |
||
| 1255 | |||
| 1256 | /** |
||
| 1257 | * Create a new data labels. |
||
| 1258 | * |
||
| 1259 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Area\HighchartsDataLabels Returns the data labels. |
||
| 1260 | */ |
||
| 1261 | public function newDataLabels() { |
||
| 1265 | |||
| 1266 | /** |
||
| 1267 | * Create a new events. |
||
| 1268 | * |
||
| 1269 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Area\HighchartsEvents Returns the events. |
||
| 1270 | */ |
||
| 1271 | public function newEvents() { |
||
| 1275 | |||
| 1276 | /** |
||
| 1277 | * Create a new marker. |
||
| 1278 | * |
||
| 1279 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Area\HighchartsMarker Returns the marker. |
||
| 1280 | */ |
||
| 1281 | public function newMarker() { |
||
| 1285 | |||
| 1286 | /** |
||
| 1287 | * Create a new point. |
||
| 1288 | * |
||
| 1289 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Area\HighchartsPoint Returns the point. |
||
| 1290 | */ |
||
| 1291 | public function newPoint() { |
||
| 1295 | |||
| 1296 | /** |
||
| 1297 | * Create a new states. |
||
| 1298 | * |
||
| 1299 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Area\HighchartsStates Returns the states. |
||
| 1300 | */ |
||
| 1301 | public function newStates() { |
||
| 1305 | |||
| 1306 | /** |
||
| 1307 | * Set the allow point select. |
||
| 1308 | * |
||
| 1309 | * @param boolean $allowPointSelect The allow point select. |
||
| 1310 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1311 | */ |
||
| 1312 | public function setAllowPointSelect($allowPointSelect) { |
||
| 1316 | |||
| 1317 | /** |
||
| 1318 | * Set the animation. |
||
| 1319 | * |
||
| 1320 | * @param boolean $animation The animation. |
||
| 1321 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1322 | */ |
||
| 1323 | public function setAnimation($animation) { |
||
| 1327 | |||
| 1328 | /** |
||
| 1329 | * Set the animation limit. |
||
| 1330 | * |
||
| 1331 | * @param integer $animationLimit The animation limit. |
||
| 1332 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1333 | */ |
||
| 1334 | public function setAnimationLimit($animationLimit) { |
||
| 1338 | |||
| 1339 | /** |
||
| 1340 | * Set the class name. |
||
| 1341 | * |
||
| 1342 | * @param string $className The class name. |
||
| 1343 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1344 | */ |
||
| 1345 | public function setClassName($className) { |
||
| 1349 | |||
| 1350 | /** |
||
| 1351 | * Set the color. |
||
| 1352 | * |
||
| 1353 | * @param string $color The color. |
||
| 1354 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1355 | */ |
||
| 1356 | public function setColor($color) { |
||
| 1360 | |||
| 1361 | /** |
||
| 1362 | * Set the color index. |
||
| 1363 | * |
||
| 1364 | * @param integer $colorIndex The color index. |
||
| 1365 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1366 | */ |
||
| 1367 | public function setColorIndex($colorIndex) { |
||
| 1371 | |||
| 1372 | /** |
||
| 1373 | * Set the connect ends. |
||
| 1374 | * |
||
| 1375 | * @param boolean $connectEnds The connect ends. |
||
| 1376 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1377 | */ |
||
| 1378 | public function setConnectEnds($connectEnds) { |
||
| 1382 | |||
| 1383 | /** |
||
| 1384 | * Set the connect nulls. |
||
| 1385 | * |
||
| 1386 | * @param boolean $connectNulls The connect nulls. |
||
| 1387 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1388 | */ |
||
| 1389 | public function setConnectNulls($connectNulls) { |
||
| 1393 | |||
| 1394 | /** |
||
| 1395 | * Set the crop threshold. |
||
| 1396 | * |
||
| 1397 | * @param integer $cropThreshold The crop threshold. |
||
| 1398 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1399 | */ |
||
| 1400 | public function setCropThreshold($cropThreshold) { |
||
| 1404 | |||
| 1405 | /** |
||
| 1406 | * Set the cursor. |
||
| 1407 | * |
||
| 1408 | * @param string $cursor The cursor. |
||
| 1409 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1410 | */ |
||
| 1411 | public function setCursor($cursor) { |
||
| 1424 | |||
| 1425 | /** |
||
| 1426 | * Set the dash style. |
||
| 1427 | * |
||
| 1428 | * @param string $dashStyle The dash style. |
||
| 1429 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1430 | */ |
||
| 1431 | public function setDashStyle($dashStyle) { |
||
| 1449 | |||
| 1450 | /** |
||
| 1451 | * Set the data. |
||
| 1452 | * |
||
| 1453 | * @param array $data The data. |
||
| 1454 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1455 | */ |
||
| 1456 | public function setData(array $data = null) { |
||
| 1460 | |||
| 1461 | /** |
||
| 1462 | * Set the data labels. |
||
| 1463 | * |
||
| 1464 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\Series\Area\HighchartsDataLabels $dataLabels The data labels. |
||
| 1465 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1466 | */ |
||
| 1467 | public function setDataLabels(\WBW\Bundle\HighchartsBundle\API\Chart\Series\Area\HighchartsDataLabels $dataLabels = null) { |
||
| 1471 | |||
| 1472 | /** |
||
| 1473 | * Set the description. |
||
| 1474 | * |
||
| 1475 | * @param string $description The description. |
||
| 1476 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1477 | */ |
||
| 1478 | public function setDescription($description) { |
||
| 1482 | |||
| 1483 | /** |
||
| 1484 | * Set the enable mouse tracking. |
||
| 1485 | * |
||
| 1486 | * @param boolean $enableMouseTracking The enable mouse tracking. |
||
| 1487 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1488 | */ |
||
| 1489 | public function setEnableMouseTracking($enableMouseTracking) { |
||
| 1493 | |||
| 1494 | /** |
||
| 1495 | * Set the events. |
||
| 1496 | * |
||
| 1497 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\Series\Area\HighchartsEvents $events The events. |
||
| 1498 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1499 | */ |
||
| 1500 | public function setEvents(\WBW\Bundle\HighchartsBundle\API\Chart\Series\Area\HighchartsEvents $events = null) { |
||
| 1504 | |||
| 1505 | /** |
||
| 1506 | * Set the expose element to a11y. |
||
| 1507 | * |
||
| 1508 | * @param boolean $exposeElementToA11y The expose element to a11y. |
||
| 1509 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1510 | */ |
||
| 1511 | public function setExposeElementToA11y($exposeElementToA11y) { |
||
| 1515 | |||
| 1516 | /** |
||
| 1517 | * Set the fill color. |
||
| 1518 | * |
||
| 1519 | * @param string $fillColor The fill color. |
||
| 1520 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1521 | */ |
||
| 1522 | public function setFillColor($fillColor) { |
||
| 1526 | |||
| 1527 | /** |
||
| 1528 | * Set the fill opacity. |
||
| 1529 | * |
||
| 1530 | * @param integer $fillOpacity The fill opacity. |
||
| 1531 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1532 | */ |
||
| 1533 | public function setFillOpacity($fillOpacity) { |
||
| 1537 | |||
| 1538 | /** |
||
| 1539 | * Set the find nearest point by. |
||
| 1540 | * |
||
| 1541 | * @param string $findNearestPointBy The find nearest point by. |
||
| 1542 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1543 | */ |
||
| 1544 | public function setFindNearestPointBy($findNearestPointBy) { |
||
| 1553 | |||
| 1554 | /** |
||
| 1555 | * Set the get extremes from all. |
||
| 1556 | * |
||
| 1557 | * @param boolean $getExtremesFromAll The get extremes from all. |
||
| 1558 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1559 | */ |
||
| 1560 | public function setGetExtremesFromAll($getExtremesFromAll) { |
||
| 1564 | |||
| 1565 | /** |
||
| 1566 | * Set the id. |
||
| 1567 | * |
||
| 1568 | * @param string $id The id. |
||
| 1569 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1570 | */ |
||
| 1571 | public function setId($id) { |
||
| 1575 | |||
| 1576 | /** |
||
| 1577 | * Set the index. |
||
| 1578 | * |
||
| 1579 | * @param integer $index The index. |
||
| 1580 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1581 | */ |
||
| 1582 | public function setIndex($index) { |
||
| 1586 | |||
| 1587 | /** |
||
| 1588 | * Set the keys. |
||
| 1589 | * |
||
| 1590 | * @param array $keys The keys. |
||
| 1591 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1592 | */ |
||
| 1593 | public function setKeys(array $keys = null) { |
||
| 1597 | |||
| 1598 | /** |
||
| 1599 | * Set the legend index. |
||
| 1600 | * |
||
| 1601 | * @param integer $legendIndex The legend index. |
||
| 1602 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1603 | */ |
||
| 1604 | public function setLegendIndex($legendIndex) { |
||
| 1608 | |||
| 1609 | /** |
||
| 1610 | * Set the line color. |
||
| 1611 | * |
||
| 1612 | * @param string $lineColor The line color. |
||
| 1613 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1614 | */ |
||
| 1615 | public function setLineColor($lineColor) { |
||
| 1619 | |||
| 1620 | /** |
||
| 1621 | * Set the line width. |
||
| 1622 | * |
||
| 1623 | * @param integer $lineWidth The line width. |
||
| 1624 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1625 | */ |
||
| 1626 | public function setLineWidth($lineWidth) { |
||
| 1630 | |||
| 1631 | /** |
||
| 1632 | * Set the linecap. |
||
| 1633 | * |
||
| 1634 | * @param string $linecap The linecap. |
||
| 1635 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1636 | */ |
||
| 1637 | public function setLinecap($linecap) { |
||
| 1646 | |||
| 1647 | /** |
||
| 1648 | * Set the linked to. |
||
| 1649 | * |
||
| 1650 | * @param string $linkedTo The linked to. |
||
| 1651 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1652 | */ |
||
| 1653 | public function setLinkedTo($linkedTo) { |
||
| 1657 | |||
| 1658 | /** |
||
| 1659 | * Set the marker. |
||
| 1660 | * |
||
| 1661 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\Series\Area\HighchartsMarker $marker The marker. |
||
| 1662 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1663 | */ |
||
| 1664 | public function setMarker(\WBW\Bundle\HighchartsBundle\API\Chart\Series\Area\HighchartsMarker $marker = null) { |
||
| 1668 | |||
| 1669 | /** |
||
| 1670 | * Set the name. |
||
| 1671 | * |
||
| 1672 | * @param string $name The name. |
||
| 1673 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1674 | */ |
||
| 1675 | public function setName($name) { |
||
| 1679 | |||
| 1680 | /** |
||
| 1681 | * Set the negative color. |
||
| 1682 | * |
||
| 1683 | * @param string $negativeColor The negative color. |
||
| 1684 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1685 | */ |
||
| 1686 | public function setNegativeColor($negativeColor) { |
||
| 1690 | |||
| 1691 | /** |
||
| 1692 | * Set the negative fill color. |
||
| 1693 | * |
||
| 1694 | * @param string $negativeFillColor The negative fill color. |
||
| 1695 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1696 | */ |
||
| 1697 | public function setNegativeFillColor($negativeFillColor) { |
||
| 1701 | |||
| 1702 | /** |
||
| 1703 | * Set the point. |
||
| 1704 | * |
||
| 1705 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\Series\Area\HighchartsPoint $point The point. |
||
| 1706 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1707 | */ |
||
| 1708 | public function setPoint(\WBW\Bundle\HighchartsBundle\API\Chart\Series\Area\HighchartsPoint $point = null) { |
||
| 1712 | |||
| 1713 | /** |
||
| 1714 | * Set the point description formatter. |
||
| 1715 | * |
||
| 1716 | * @param string $pointDescriptionFormatter The point description formatter. |
||
| 1717 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1718 | */ |
||
| 1719 | public function setPointDescriptionFormatter($pointDescriptionFormatter) { |
||
| 1723 | |||
| 1724 | /** |
||
| 1725 | * Set the point interval. |
||
| 1726 | * |
||
| 1727 | * @param integer $pointInterval The point interval. |
||
| 1728 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1729 | */ |
||
| 1730 | public function setPointInterval($pointInterval) { |
||
| 1734 | |||
| 1735 | /** |
||
| 1736 | * Set the point interval unit. |
||
| 1737 | * |
||
| 1738 | * @param string $pointIntervalUnit The point interval unit. |
||
| 1739 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1740 | */ |
||
| 1741 | public function setPointIntervalUnit($pointIntervalUnit) { |
||
| 1752 | |||
| 1753 | /** |
||
| 1754 | * Set the point placement. |
||
| 1755 | * |
||
| 1756 | * @param string|integer $pointPlacement The point placement. |
||
| 1757 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1758 | */ |
||
| 1759 | public function setPointPlacement($pointPlacement) { |
||
| 1769 | |||
| 1770 | /** |
||
| 1771 | * Set the point start. |
||
| 1772 | * |
||
| 1773 | * @param integer $pointStart The point start. |
||
| 1774 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1775 | */ |
||
| 1776 | public function setPointStart($pointStart) { |
||
| 1780 | |||
| 1781 | /** |
||
| 1782 | * Set the selected. |
||
| 1783 | * |
||
| 1784 | * @param boolean $selected The selected. |
||
| 1785 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1786 | */ |
||
| 1787 | public function setSelected($selected) { |
||
| 1791 | |||
| 1792 | /** |
||
| 1793 | * Set the shadow. |
||
| 1794 | * |
||
| 1795 | * @param boolean|array $shadow The shadow. |
||
| 1796 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1797 | */ |
||
| 1798 | public function setShadow($shadow) { |
||
| 1802 | |||
| 1803 | /** |
||
| 1804 | * Set the show checkbox. |
||
| 1805 | * |
||
| 1806 | * @param boolean $showCheckbox The show checkbox. |
||
| 1807 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1808 | */ |
||
| 1809 | public function setShowCheckbox($showCheckbox) { |
||
| 1813 | |||
| 1814 | /** |
||
| 1815 | * Set the show in legend. |
||
| 1816 | * |
||
| 1817 | * @param boolean $showInLegend The show in legend. |
||
| 1818 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1819 | */ |
||
| 1820 | public function setShowInLegend($showInLegend) { |
||
| 1824 | |||
| 1825 | /** |
||
| 1826 | * Set the skip keyboard navigation. |
||
| 1827 | * |
||
| 1828 | * @param boolean $skipKeyboardNavigation The skip keyboard navigation. |
||
| 1829 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1830 | */ |
||
| 1831 | public function setSkipKeyboardNavigation($skipKeyboardNavigation) { |
||
| 1835 | |||
| 1836 | /** |
||
| 1837 | * Set the soft threshold. |
||
| 1838 | * |
||
| 1839 | * @param boolean $softThreshold The soft threshold. |
||
| 1840 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1841 | */ |
||
| 1842 | public function setSoftThreshold($softThreshold) { |
||
| 1846 | |||
| 1847 | /** |
||
| 1848 | * Set the stack. |
||
| 1849 | * |
||
| 1850 | * @param string $stack The stack. |
||
| 1851 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1852 | */ |
||
| 1853 | public function setStack($stack) { |
||
| 1857 | |||
| 1858 | /** |
||
| 1859 | * Set the stacking. |
||
| 1860 | * |
||
| 1861 | * @param string $stacking The stacking. |
||
| 1862 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1863 | */ |
||
| 1864 | public function setStacking($stacking) { |
||
| 1874 | |||
| 1875 | /** |
||
| 1876 | * Set the states. |
||
| 1877 | * |
||
| 1878 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\Series\Area\HighchartsStates $states The states. |
||
| 1879 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1880 | */ |
||
| 1881 | public function setStates(\WBW\Bundle\HighchartsBundle\API\Chart\Series\Area\HighchartsStates $states = null) { |
||
| 1885 | |||
| 1886 | /** |
||
| 1887 | * Set the step. |
||
| 1888 | * |
||
| 1889 | * @param string $step The step. |
||
| 1890 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1891 | */ |
||
| 1892 | public function setStep($step) { |
||
| 1902 | |||
| 1903 | /** |
||
| 1904 | * Set the sticky tracking. |
||
| 1905 | * |
||
| 1906 | * @param boolean $stickyTracking The sticky tracking. |
||
| 1907 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1908 | */ |
||
| 1909 | public function setStickyTracking($stickyTracking) { |
||
| 1913 | |||
| 1914 | /** |
||
| 1915 | * Set the threshold. |
||
| 1916 | * |
||
| 1917 | * @param integer $threshold The threshold. |
||
| 1918 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1919 | */ |
||
| 1920 | public function setThreshold($threshold) { |
||
| 1924 | |||
| 1925 | /** |
||
| 1926 | * Set the tooltip. |
||
| 1927 | * |
||
| 1928 | * @param array $tooltip The tooltip. |
||
| 1929 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1930 | */ |
||
| 1931 | public function setTooltip(array $tooltip = null) { |
||
| 1935 | |||
| 1936 | /** |
||
| 1937 | * Set the track by area. |
||
| 1938 | * |
||
| 1939 | * @param boolean $trackByArea The track by area. |
||
| 1940 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1941 | */ |
||
| 1942 | public function setTrackByArea($trackByArea) { |
||
| 1946 | |||
| 1947 | /** |
||
| 1948 | * Set the turbo threshold. |
||
| 1949 | * |
||
| 1950 | * @param integer $turboThreshold The turbo threshold. |
||
| 1951 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1952 | */ |
||
| 1953 | public function setTurboThreshold($turboThreshold) { |
||
| 1957 | |||
| 1958 | /** |
||
| 1959 | * Set the type. |
||
| 1960 | * |
||
| 1961 | * @param string $type The type. |
||
| 1962 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1963 | */ |
||
| 1964 | public function setType($type) { |
||
| 1988 | |||
| 1989 | /** |
||
| 1990 | * Set the visible. |
||
| 1991 | * |
||
| 1992 | * @param boolean $visible The visible. |
||
| 1993 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 1994 | */ |
||
| 1995 | public function setVisible($visible) { |
||
| 1999 | |||
| 2000 | /** |
||
| 2001 | * Set the x axis. |
||
| 2002 | * |
||
| 2003 | * @param integer|string $xAxis The x axis. |
||
| 2004 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 2005 | */ |
||
| 2006 | public function setXAxis($xAxis) { |
||
| 2010 | |||
| 2011 | /** |
||
| 2012 | * Set the y axis. |
||
| 2013 | * |
||
| 2014 | * @param integer|string $yAxis The y axis. |
||
| 2015 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 2016 | */ |
||
| 2017 | public function setYAxis($yAxis) { |
||
| 2021 | |||
| 2022 | /** |
||
| 2023 | * Set the z index. |
||
| 2024 | * |
||
| 2025 | * @param integer $zIndex The z index. |
||
| 2026 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 2027 | */ |
||
| 2028 | public function setZIndex($zIndex) { |
||
| 2032 | |||
| 2033 | /** |
||
| 2034 | * Set the zone axis. |
||
| 2035 | * |
||
| 2036 | * @param string $zoneAxis The zone axis. |
||
| 2037 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 2038 | */ |
||
| 2039 | public function setZoneAxis($zoneAxis) { |
||
| 2043 | |||
| 2044 | /** |
||
| 2045 | * Set the zones. |
||
| 2046 | * |
||
| 2047 | * @param array $zones The zones. |
||
| 2048 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsArea Returns the highcharts area. |
||
| 2049 | */ |
||
| 2050 | public function setZones(array $zones = null) { |
||
| 2054 | |||
| 2055 | /** |
||
| 2056 | * Convert into an array representing this instance. |
||
| 2057 | * |
||
| 2058 | * @return array Returns an array representing this instance. |
||
| 2059 | */ |
||
| 2060 | public function toArray() { |
||
| 2261 | |||
| 2262 | } |
||
| 2263 |
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..