Complex classes like HighchartsAreaspline 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 HighchartsAreaspline, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 25 | final class HighchartsAreaspline 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\Areaspline\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\Areaspline\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\Areaspline\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\Areaspline\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\Areaspline\HighchartsStates |
||
| 384 | */ |
||
| 385 | private $states; |
||
| 386 | |||
| 387 | /** |
||
| 388 | * Sticky tracking. |
||
| 389 | * |
||
| 390 | * @var boolean |
||
| 391 | * @since 2.0 |
||
| 392 | */ |
||
| 393 | private $stickyTracking = true; |
||
| 394 | |||
| 395 | /** |
||
| 396 | * Threshold. |
||
| 397 | * |
||
| 398 | * @var integer |
||
| 399 | * @since 2.0 |
||
| 400 | */ |
||
| 401 | private $threshold = 0; |
||
| 402 | |||
| 403 | /** |
||
| 404 | * Tooltip. |
||
| 405 | * |
||
| 406 | * @var array |
||
| 407 | * @since 2.3 |
||
| 408 | */ |
||
| 409 | private $tooltip; |
||
| 410 | |||
| 411 | /** |
||
| 412 | * Track by area. |
||
| 413 | * |
||
| 414 | * @var boolean |
||
| 415 | * @since 1.1.6 |
||
| 416 | */ |
||
| 417 | private $trackByArea = false; |
||
| 418 | |||
| 419 | /** |
||
| 420 | * Turbo threshold. |
||
| 421 | * |
||
| 422 | * @var integer |
||
| 423 | * @since 2.2 |
||
| 424 | */ |
||
| 425 | private $turboThreshold = 1000; |
||
| 426 | |||
| 427 | /** |
||
| 428 | * Type. |
||
| 429 | * |
||
| 430 | * @var string |
||
| 431 | */ |
||
| 432 | private $type; |
||
| 433 | |||
| 434 | /** |
||
| 435 | * Visible. |
||
| 436 | * |
||
| 437 | * @var boolean |
||
| 438 | */ |
||
| 439 | private $visible = true; |
||
| 440 | |||
| 441 | /** |
||
| 442 | * X axis. |
||
| 443 | * |
||
| 444 | * @var integer|string |
||
| 445 | */ |
||
| 446 | private $xAxis = "0"; |
||
| 447 | |||
| 448 | /** |
||
| 449 | * Y axis. |
||
| 450 | * |
||
| 451 | * @var integer|string |
||
| 452 | */ |
||
| 453 | private $yAxis = "0"; |
||
| 454 | |||
| 455 | /** |
||
| 456 | * Z index. |
||
| 457 | * |
||
| 458 | * @var integer |
||
| 459 | */ |
||
| 460 | private $zIndex; |
||
| 461 | |||
| 462 | /** |
||
| 463 | * Zone axis. |
||
| 464 | * |
||
| 465 | * @var string |
||
| 466 | * @since 4.1.0 |
||
| 467 | */ |
||
| 468 | private $zoneAxis = "y"; |
||
| 469 | |||
| 470 | /** |
||
| 471 | * Zones. |
||
| 472 | * |
||
| 473 | * @var array |
||
| 474 | * @since 4.1.0 |
||
| 475 | */ |
||
| 476 | private $zones; |
||
| 477 | |||
| 478 | /** |
||
| 479 | * Constructor. |
||
| 480 | * |
||
| 481 | * @param boolean $ignoreDefaultValues Ignore the default values. |
||
| 482 | */ |
||
| 483 | public function __construct($ignoreDefaultValues = true) { |
||
| 488 | |||
| 489 | /** |
||
| 490 | * Clear. |
||
| 491 | * |
||
| 492 | * @return void |
||
| 493 | */ |
||
| 494 | public function clear() { |
||
| 686 | |||
| 687 | /** |
||
| 688 | * Get the allow point select. |
||
| 689 | * |
||
| 690 | * @return boolean Returns the allow point select. |
||
| 691 | */ |
||
| 692 | public function getAllowPointSelect() { |
||
| 695 | |||
| 696 | /** |
||
| 697 | * Get the animation. |
||
| 698 | * |
||
| 699 | * @return boolean Returns the animation. |
||
| 700 | */ |
||
| 701 | public function getAnimation() { |
||
| 704 | |||
| 705 | /** |
||
| 706 | * Get the animation limit. |
||
| 707 | * |
||
| 708 | * @return integer Returns the animation limit. |
||
| 709 | */ |
||
| 710 | public function getAnimationLimit() { |
||
| 713 | |||
| 714 | /** |
||
| 715 | * Get the class name. |
||
| 716 | * |
||
| 717 | * @return string Returns the class name. |
||
| 718 | */ |
||
| 719 | public function getClassName() { |
||
| 722 | |||
| 723 | /** |
||
| 724 | * Get the color. |
||
| 725 | * |
||
| 726 | * @return string Returns the color. |
||
| 727 | */ |
||
| 728 | public function getColor() { |
||
| 731 | |||
| 732 | /** |
||
| 733 | * Get the color index. |
||
| 734 | * |
||
| 735 | * @return integer Returns the color index. |
||
| 736 | */ |
||
| 737 | public function getColorIndex() { |
||
| 740 | |||
| 741 | /** |
||
| 742 | * Get the connect ends. |
||
| 743 | * |
||
| 744 | * @return boolean Returns the connect ends. |
||
| 745 | */ |
||
| 746 | public function getConnectEnds() { |
||
| 749 | |||
| 750 | /** |
||
| 751 | * Get the connect nulls. |
||
| 752 | * |
||
| 753 | * @return boolean Returns the connect nulls. |
||
| 754 | */ |
||
| 755 | public function getConnectNulls() { |
||
| 758 | |||
| 759 | /** |
||
| 760 | * Get the crop threshold. |
||
| 761 | * |
||
| 762 | * @return integer Returns the crop threshold. |
||
| 763 | */ |
||
| 764 | public function getCropThreshold() { |
||
| 767 | |||
| 768 | /** |
||
| 769 | * Get the cursor. |
||
| 770 | * |
||
| 771 | * @return string Returns the cursor. |
||
| 772 | */ |
||
| 773 | public function getCursor() { |
||
| 776 | |||
| 777 | /** |
||
| 778 | * Get the dash style. |
||
| 779 | * |
||
| 780 | * @return string Returns the dash style. |
||
| 781 | */ |
||
| 782 | public function getDashStyle() { |
||
| 785 | |||
| 786 | /** |
||
| 787 | * Get the data. |
||
| 788 | * |
||
| 789 | * @return array Returns the data. |
||
| 790 | */ |
||
| 791 | public function getData() { |
||
| 794 | |||
| 795 | /** |
||
| 796 | * Get the data labels. |
||
| 797 | * |
||
| 798 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Areaspline\HighchartsDataLabels Returns the data labels. |
||
| 799 | */ |
||
| 800 | public function getDataLabels() { |
||
| 803 | |||
| 804 | /** |
||
| 805 | * Get the description. |
||
| 806 | * |
||
| 807 | * @return string Returns the description. |
||
| 808 | */ |
||
| 809 | public function getDescription() { |
||
| 812 | |||
| 813 | /** |
||
| 814 | * Get the enable mouse tracking. |
||
| 815 | * |
||
| 816 | * @return boolean Returns the enable mouse tracking. |
||
| 817 | */ |
||
| 818 | public function getEnableMouseTracking() { |
||
| 821 | |||
| 822 | /** |
||
| 823 | * Get the events. |
||
| 824 | * |
||
| 825 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Areaspline\HighchartsEvents Returns the events. |
||
| 826 | */ |
||
| 827 | public function getEvents() { |
||
| 830 | |||
| 831 | /** |
||
| 832 | * Get the expose element to a11y. |
||
| 833 | * |
||
| 834 | * @return boolean Returns the expose element to a11y. |
||
| 835 | */ |
||
| 836 | public function getExposeElementToA11y() { |
||
| 839 | |||
| 840 | /** |
||
| 841 | * Get the fill color. |
||
| 842 | * |
||
| 843 | * @return string Returns the fill color. |
||
| 844 | */ |
||
| 845 | public function getFillColor() { |
||
| 848 | |||
| 849 | /** |
||
| 850 | * Get the fill opacity. |
||
| 851 | * |
||
| 852 | * @return integer Returns the fill opacity. |
||
| 853 | */ |
||
| 854 | public function getFillOpacity() { |
||
| 857 | |||
| 858 | /** |
||
| 859 | * Get the find nearest point by. |
||
| 860 | * |
||
| 861 | * @return string Returns the find nearest point by. |
||
| 862 | */ |
||
| 863 | public function getFindNearestPointBy() { |
||
| 866 | |||
| 867 | /** |
||
| 868 | * Get the get extremes from all. |
||
| 869 | * |
||
| 870 | * @return boolean Returns the get extremes from all. |
||
| 871 | */ |
||
| 872 | public function getGetExtremesFromAll() { |
||
| 875 | |||
| 876 | /** |
||
| 877 | * Get the id. |
||
| 878 | * |
||
| 879 | * @return string Returns the id. |
||
| 880 | */ |
||
| 881 | public function getId() { |
||
| 884 | |||
| 885 | /** |
||
| 886 | * Get the index. |
||
| 887 | * |
||
| 888 | * @return integer Returns the index. |
||
| 889 | */ |
||
| 890 | public function getIndex() { |
||
| 893 | |||
| 894 | /** |
||
| 895 | * Get the keys. |
||
| 896 | * |
||
| 897 | * @return array Returns the keys. |
||
| 898 | */ |
||
| 899 | public function getKeys() { |
||
| 902 | |||
| 903 | /** |
||
| 904 | * Get the legend index. |
||
| 905 | * |
||
| 906 | * @return integer Returns the legend index. |
||
| 907 | */ |
||
| 908 | public function getLegendIndex() { |
||
| 911 | |||
| 912 | /** |
||
| 913 | * Get the line color. |
||
| 914 | * |
||
| 915 | * @return string Returns the line color. |
||
| 916 | */ |
||
| 917 | public function getLineColor() { |
||
| 920 | |||
| 921 | /** |
||
| 922 | * Get the line width. |
||
| 923 | * |
||
| 924 | * @return integer Returns the line width. |
||
| 925 | */ |
||
| 926 | public function getLineWidth() { |
||
| 929 | |||
| 930 | /** |
||
| 931 | * Get the linecap. |
||
| 932 | * |
||
| 933 | * @return string Returns the linecap. |
||
| 934 | */ |
||
| 935 | public function getLinecap() { |
||
| 938 | |||
| 939 | /** |
||
| 940 | * Get the linked to. |
||
| 941 | * |
||
| 942 | * @return string Returns the linked to. |
||
| 943 | */ |
||
| 944 | public function getLinkedTo() { |
||
| 947 | |||
| 948 | /** |
||
| 949 | * Get the marker. |
||
| 950 | * |
||
| 951 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Areaspline\HighchartsMarker Returns the marker. |
||
| 952 | */ |
||
| 953 | public function getMarker() { |
||
| 956 | |||
| 957 | /** |
||
| 958 | * Get the name. |
||
| 959 | * |
||
| 960 | * @return string Returns the name. |
||
| 961 | */ |
||
| 962 | public function getName() { |
||
| 965 | |||
| 966 | /** |
||
| 967 | * Get the negative color. |
||
| 968 | * |
||
| 969 | * @return string Returns the negative color. |
||
| 970 | */ |
||
| 971 | public function getNegativeColor() { |
||
| 974 | |||
| 975 | /** |
||
| 976 | * Get the negative fill color. |
||
| 977 | * |
||
| 978 | * @return string Returns the negative fill color. |
||
| 979 | */ |
||
| 980 | public function getNegativeFillColor() { |
||
| 983 | |||
| 984 | /** |
||
| 985 | * Get the point. |
||
| 986 | * |
||
| 987 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Areaspline\HighchartsPoint Returns the point. |
||
| 988 | */ |
||
| 989 | public function getPoint() { |
||
| 992 | |||
| 993 | /** |
||
| 994 | * Get the point description formatter. |
||
| 995 | * |
||
| 996 | * @return string Returns the point description formatter. |
||
| 997 | */ |
||
| 998 | public function getPointDescriptionFormatter() { |
||
| 1001 | |||
| 1002 | /** |
||
| 1003 | * Get the point interval. |
||
| 1004 | * |
||
| 1005 | * @return integer Returns the point interval. |
||
| 1006 | */ |
||
| 1007 | public function getPointInterval() { |
||
| 1010 | |||
| 1011 | /** |
||
| 1012 | * Get the point interval unit. |
||
| 1013 | * |
||
| 1014 | * @return string Returns the point interval unit. |
||
| 1015 | */ |
||
| 1016 | public function getPointIntervalUnit() { |
||
| 1019 | |||
| 1020 | /** |
||
| 1021 | * Get the point placement. |
||
| 1022 | * |
||
| 1023 | * @return string|integer Returns the point placement. |
||
| 1024 | */ |
||
| 1025 | public function getPointPlacement() { |
||
| 1028 | |||
| 1029 | /** |
||
| 1030 | * Get the point start. |
||
| 1031 | * |
||
| 1032 | * @return integer Returns the point start. |
||
| 1033 | */ |
||
| 1034 | public function getPointStart() { |
||
| 1037 | |||
| 1038 | /** |
||
| 1039 | * Get the selected. |
||
| 1040 | * |
||
| 1041 | * @return boolean Returns the selected. |
||
| 1042 | */ |
||
| 1043 | public function getSelected() { |
||
| 1046 | |||
| 1047 | /** |
||
| 1048 | * Get the shadow. |
||
| 1049 | * |
||
| 1050 | * @return boolean|array Returns the shadow. |
||
| 1051 | */ |
||
| 1052 | public function getShadow() { |
||
| 1055 | |||
| 1056 | /** |
||
| 1057 | * Get the show checkbox. |
||
| 1058 | * |
||
| 1059 | * @return boolean Returns the show checkbox. |
||
| 1060 | */ |
||
| 1061 | public function getShowCheckbox() { |
||
| 1064 | |||
| 1065 | /** |
||
| 1066 | * Get the show in legend. |
||
| 1067 | * |
||
| 1068 | * @return boolean Returns the show in legend. |
||
| 1069 | */ |
||
| 1070 | public function getShowInLegend() { |
||
| 1073 | |||
| 1074 | /** |
||
| 1075 | * Get the skip keyboard navigation. |
||
| 1076 | * |
||
| 1077 | * @return boolean Returns the skip keyboard navigation. |
||
| 1078 | */ |
||
| 1079 | public function getSkipKeyboardNavigation() { |
||
| 1082 | |||
| 1083 | /** |
||
| 1084 | * Get the soft threshold. |
||
| 1085 | * |
||
| 1086 | * @return boolean Returns the soft threshold. |
||
| 1087 | */ |
||
| 1088 | public function getSoftThreshold() { |
||
| 1091 | |||
| 1092 | /** |
||
| 1093 | * Get the stack. |
||
| 1094 | * |
||
| 1095 | * @return string Returns the stack. |
||
| 1096 | */ |
||
| 1097 | public function getStack() { |
||
| 1100 | |||
| 1101 | /** |
||
| 1102 | * Get the stacking. |
||
| 1103 | * |
||
| 1104 | * @return string Returns the stacking. |
||
| 1105 | */ |
||
| 1106 | public function getStacking() { |
||
| 1109 | |||
| 1110 | /** |
||
| 1111 | * Get the states. |
||
| 1112 | * |
||
| 1113 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Areaspline\HighchartsStates Returns the states. |
||
| 1114 | */ |
||
| 1115 | public function getStates() { |
||
| 1118 | |||
| 1119 | /** |
||
| 1120 | * Get the sticky tracking. |
||
| 1121 | * |
||
| 1122 | * @return boolean Returns the sticky tracking. |
||
| 1123 | */ |
||
| 1124 | public function getStickyTracking() { |
||
| 1127 | |||
| 1128 | /** |
||
| 1129 | * Get the threshold. |
||
| 1130 | * |
||
| 1131 | * @return integer Returns the threshold. |
||
| 1132 | */ |
||
| 1133 | public function getThreshold() { |
||
| 1136 | |||
| 1137 | /** |
||
| 1138 | * Get the tooltip. |
||
| 1139 | * |
||
| 1140 | * @return array Returns the tooltip. |
||
| 1141 | */ |
||
| 1142 | public function getTooltip() { |
||
| 1145 | |||
| 1146 | /** |
||
| 1147 | * Get the track by area. |
||
| 1148 | * |
||
| 1149 | * @return boolean Returns the track by area. |
||
| 1150 | */ |
||
| 1151 | public function getTrackByArea() { |
||
| 1154 | |||
| 1155 | /** |
||
| 1156 | * Get the turbo threshold. |
||
| 1157 | * |
||
| 1158 | * @return integer Returns the turbo threshold. |
||
| 1159 | */ |
||
| 1160 | public function getTurboThreshold() { |
||
| 1163 | |||
| 1164 | /** |
||
| 1165 | * Get the type. |
||
| 1166 | * |
||
| 1167 | * @return string Returns the type. |
||
| 1168 | */ |
||
| 1169 | public function getType() { |
||
| 1172 | |||
| 1173 | /** |
||
| 1174 | * Get the visible. |
||
| 1175 | * |
||
| 1176 | * @return boolean Returns the visible. |
||
| 1177 | */ |
||
| 1178 | public function getVisible() { |
||
| 1181 | |||
| 1182 | /** |
||
| 1183 | * Get the x axis. |
||
| 1184 | * |
||
| 1185 | * @return integer|string Returns the x axis. |
||
| 1186 | */ |
||
| 1187 | public function getXAxis() { |
||
| 1190 | |||
| 1191 | /** |
||
| 1192 | * Get the y axis. |
||
| 1193 | * |
||
| 1194 | * @return integer|string Returns the y axis. |
||
| 1195 | */ |
||
| 1196 | public function getYAxis() { |
||
| 1199 | |||
| 1200 | /** |
||
| 1201 | * Get the z index. |
||
| 1202 | * |
||
| 1203 | * @return integer Returns the z index. |
||
| 1204 | */ |
||
| 1205 | public function getZIndex() { |
||
| 1208 | |||
| 1209 | /** |
||
| 1210 | * Get the zone axis. |
||
| 1211 | * |
||
| 1212 | * @return string Returns the zone axis. |
||
| 1213 | */ |
||
| 1214 | public function getZoneAxis() { |
||
| 1217 | |||
| 1218 | /** |
||
| 1219 | * Get the zones. |
||
| 1220 | * |
||
| 1221 | * @return array Returns the zones. |
||
| 1222 | */ |
||
| 1223 | public function getZones() { |
||
| 1226 | |||
| 1227 | /** |
||
| 1228 | * Serialize this instance. |
||
| 1229 | * |
||
| 1230 | * @return array Returns an array representing this instance. |
||
| 1231 | */ |
||
| 1232 | public function jsonSerialize() { |
||
| 1235 | |||
| 1236 | /** |
||
| 1237 | * Create a new data labels. |
||
| 1238 | * |
||
| 1239 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Areaspline\HighchartsDataLabels Returns the data labels. |
||
| 1240 | */ |
||
| 1241 | public function newDataLabels() { |
||
| 1245 | |||
| 1246 | /** |
||
| 1247 | * Create a new events. |
||
| 1248 | * |
||
| 1249 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Areaspline\HighchartsEvents Returns the events. |
||
| 1250 | */ |
||
| 1251 | public function newEvents() { |
||
| 1255 | |||
| 1256 | /** |
||
| 1257 | * Create a new marker. |
||
| 1258 | * |
||
| 1259 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Areaspline\HighchartsMarker Returns the marker. |
||
| 1260 | */ |
||
| 1261 | public function newMarker() { |
||
| 1265 | |||
| 1266 | /** |
||
| 1267 | * Create a new point. |
||
| 1268 | * |
||
| 1269 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Areaspline\HighchartsPoint Returns the point. |
||
| 1270 | */ |
||
| 1271 | public function newPoint() { |
||
| 1275 | |||
| 1276 | /** |
||
| 1277 | * Create a new states. |
||
| 1278 | * |
||
| 1279 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Areaspline\HighchartsStates Returns the states. |
||
| 1280 | */ |
||
| 1281 | public function newStates() { |
||
| 1285 | |||
| 1286 | /** |
||
| 1287 | * Set the allow point select. |
||
| 1288 | * |
||
| 1289 | * @param boolean $allowPointSelect The allow point select. |
||
| 1290 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1291 | */ |
||
| 1292 | public function setAllowPointSelect($allowPointSelect) { |
||
| 1296 | |||
| 1297 | /** |
||
| 1298 | * Set the animation. |
||
| 1299 | * |
||
| 1300 | * @param boolean $animation The animation. |
||
| 1301 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1302 | */ |
||
| 1303 | public function setAnimation($animation) { |
||
| 1307 | |||
| 1308 | /** |
||
| 1309 | * Set the animation limit. |
||
| 1310 | * |
||
| 1311 | * @param integer $animationLimit The animation limit. |
||
| 1312 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1313 | */ |
||
| 1314 | public function setAnimationLimit($animationLimit) { |
||
| 1318 | |||
| 1319 | /** |
||
| 1320 | * Set the class name. |
||
| 1321 | * |
||
| 1322 | * @param string $className The class name. |
||
| 1323 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1324 | */ |
||
| 1325 | public function setClassName($className) { |
||
| 1329 | |||
| 1330 | /** |
||
| 1331 | * Set the color. |
||
| 1332 | * |
||
| 1333 | * @param string $color The color. |
||
| 1334 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1335 | */ |
||
| 1336 | public function setColor($color) { |
||
| 1340 | |||
| 1341 | /** |
||
| 1342 | * Set the color index. |
||
| 1343 | * |
||
| 1344 | * @param integer $colorIndex The color index. |
||
| 1345 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1346 | */ |
||
| 1347 | public function setColorIndex($colorIndex) { |
||
| 1351 | |||
| 1352 | /** |
||
| 1353 | * Set the connect ends. |
||
| 1354 | * |
||
| 1355 | * @param boolean $connectEnds The connect ends. |
||
| 1356 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1357 | */ |
||
| 1358 | public function setConnectEnds($connectEnds) { |
||
| 1362 | |||
| 1363 | /** |
||
| 1364 | * Set the connect nulls. |
||
| 1365 | * |
||
| 1366 | * @param boolean $connectNulls The connect nulls. |
||
| 1367 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1368 | */ |
||
| 1369 | public function setConnectNulls($connectNulls) { |
||
| 1373 | |||
| 1374 | /** |
||
| 1375 | * Set the crop threshold. |
||
| 1376 | * |
||
| 1377 | * @param integer $cropThreshold The crop threshold. |
||
| 1378 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1379 | */ |
||
| 1380 | public function setCropThreshold($cropThreshold) { |
||
| 1384 | |||
| 1385 | /** |
||
| 1386 | * Set the cursor. |
||
| 1387 | * |
||
| 1388 | * @param string $cursor The cursor. |
||
| 1389 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1390 | */ |
||
| 1391 | public function setCursor($cursor) { |
||
| 1404 | |||
| 1405 | /** |
||
| 1406 | * Set the dash style. |
||
| 1407 | * |
||
| 1408 | * @param string $dashStyle The dash style. |
||
| 1409 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1410 | */ |
||
| 1411 | public function setDashStyle($dashStyle) { |
||
| 1429 | |||
| 1430 | /** |
||
| 1431 | * Set the data. |
||
| 1432 | * |
||
| 1433 | * @param array $data The data. |
||
| 1434 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1435 | */ |
||
| 1436 | public function setData(array $data = null) { |
||
| 1440 | |||
| 1441 | /** |
||
| 1442 | * Set the data labels. |
||
| 1443 | * |
||
| 1444 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\Series\Areaspline\HighchartsDataLabels $dataLabels The data labels. |
||
| 1445 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1446 | */ |
||
| 1447 | public function setDataLabels(\WBW\Bundle\HighchartsBundle\API\Chart\Series\Areaspline\HighchartsDataLabels $dataLabels = null) { |
||
| 1451 | |||
| 1452 | /** |
||
| 1453 | * Set the description. |
||
| 1454 | * |
||
| 1455 | * @param string $description The description. |
||
| 1456 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1457 | */ |
||
| 1458 | public function setDescription($description) { |
||
| 1462 | |||
| 1463 | /** |
||
| 1464 | * Set the enable mouse tracking. |
||
| 1465 | * |
||
| 1466 | * @param boolean $enableMouseTracking The enable mouse tracking. |
||
| 1467 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1468 | */ |
||
| 1469 | public function setEnableMouseTracking($enableMouseTracking) { |
||
| 1473 | |||
| 1474 | /** |
||
| 1475 | * Set the events. |
||
| 1476 | * |
||
| 1477 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\Series\Areaspline\HighchartsEvents $events The events. |
||
| 1478 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1479 | */ |
||
| 1480 | public function setEvents(\WBW\Bundle\HighchartsBundle\API\Chart\Series\Areaspline\HighchartsEvents $events = null) { |
||
| 1484 | |||
| 1485 | /** |
||
| 1486 | * Set the expose element to a11y. |
||
| 1487 | * |
||
| 1488 | * @param boolean $exposeElementToA11y The expose element to a11y. |
||
| 1489 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1490 | */ |
||
| 1491 | public function setExposeElementToA11y($exposeElementToA11y) { |
||
| 1495 | |||
| 1496 | /** |
||
| 1497 | * Set the fill color. |
||
| 1498 | * |
||
| 1499 | * @param string $fillColor The fill color. |
||
| 1500 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1501 | */ |
||
| 1502 | public function setFillColor($fillColor) { |
||
| 1506 | |||
| 1507 | /** |
||
| 1508 | * Set the fill opacity. |
||
| 1509 | * |
||
| 1510 | * @param integer $fillOpacity The fill opacity. |
||
| 1511 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1512 | */ |
||
| 1513 | public function setFillOpacity($fillOpacity) { |
||
| 1517 | |||
| 1518 | /** |
||
| 1519 | * Set the find nearest point by. |
||
| 1520 | * |
||
| 1521 | * @param string $findNearestPointBy The find nearest point by. |
||
| 1522 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1523 | */ |
||
| 1524 | public function setFindNearestPointBy($findNearestPointBy) { |
||
| 1533 | |||
| 1534 | /** |
||
| 1535 | * Set the get extremes from all. |
||
| 1536 | * |
||
| 1537 | * @param boolean $getExtremesFromAll The get extremes from all. |
||
| 1538 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1539 | */ |
||
| 1540 | public function setGetExtremesFromAll($getExtremesFromAll) { |
||
| 1544 | |||
| 1545 | /** |
||
| 1546 | * Set the id. |
||
| 1547 | * |
||
| 1548 | * @param string $id The id. |
||
| 1549 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1550 | */ |
||
| 1551 | public function setId($id) { |
||
| 1555 | |||
| 1556 | /** |
||
| 1557 | * Set the index. |
||
| 1558 | * |
||
| 1559 | * @param integer $index The index. |
||
| 1560 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1561 | */ |
||
| 1562 | public function setIndex($index) { |
||
| 1566 | |||
| 1567 | /** |
||
| 1568 | * Set the keys. |
||
| 1569 | * |
||
| 1570 | * @param array $keys The keys. |
||
| 1571 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1572 | */ |
||
| 1573 | public function setKeys(array $keys = null) { |
||
| 1577 | |||
| 1578 | /** |
||
| 1579 | * Set the legend index. |
||
| 1580 | * |
||
| 1581 | * @param integer $legendIndex The legend index. |
||
| 1582 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1583 | */ |
||
| 1584 | public function setLegendIndex($legendIndex) { |
||
| 1588 | |||
| 1589 | /** |
||
| 1590 | * Set the line color. |
||
| 1591 | * |
||
| 1592 | * @param string $lineColor The line color. |
||
| 1593 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1594 | */ |
||
| 1595 | public function setLineColor($lineColor) { |
||
| 1599 | |||
| 1600 | /** |
||
| 1601 | * Set the line width. |
||
| 1602 | * |
||
| 1603 | * @param integer $lineWidth The line width. |
||
| 1604 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1605 | */ |
||
| 1606 | public function setLineWidth($lineWidth) { |
||
| 1610 | |||
| 1611 | /** |
||
| 1612 | * Set the linecap. |
||
| 1613 | * |
||
| 1614 | * @param string $linecap The linecap. |
||
| 1615 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1616 | */ |
||
| 1617 | public function setLinecap($linecap) { |
||
| 1626 | |||
| 1627 | /** |
||
| 1628 | * Set the linked to. |
||
| 1629 | * |
||
| 1630 | * @param string $linkedTo The linked to. |
||
| 1631 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1632 | */ |
||
| 1633 | public function setLinkedTo($linkedTo) { |
||
| 1637 | |||
| 1638 | /** |
||
| 1639 | * Set the marker. |
||
| 1640 | * |
||
| 1641 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\Series\Areaspline\HighchartsMarker $marker The marker. |
||
| 1642 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1643 | */ |
||
| 1644 | public function setMarker(\WBW\Bundle\HighchartsBundle\API\Chart\Series\Areaspline\HighchartsMarker $marker = null) { |
||
| 1648 | |||
| 1649 | /** |
||
| 1650 | * Set the name. |
||
| 1651 | * |
||
| 1652 | * @param string $name The name. |
||
| 1653 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1654 | */ |
||
| 1655 | public function setName($name) { |
||
| 1659 | |||
| 1660 | /** |
||
| 1661 | * Set the negative color. |
||
| 1662 | * |
||
| 1663 | * @param string $negativeColor The negative color. |
||
| 1664 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1665 | */ |
||
| 1666 | public function setNegativeColor($negativeColor) { |
||
| 1670 | |||
| 1671 | /** |
||
| 1672 | * Set the negative fill color. |
||
| 1673 | * |
||
| 1674 | * @param string $negativeFillColor The negative fill color. |
||
| 1675 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1676 | */ |
||
| 1677 | public function setNegativeFillColor($negativeFillColor) { |
||
| 1681 | |||
| 1682 | /** |
||
| 1683 | * Set the point. |
||
| 1684 | * |
||
| 1685 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\Series\Areaspline\HighchartsPoint $point The point. |
||
| 1686 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1687 | */ |
||
| 1688 | public function setPoint(\WBW\Bundle\HighchartsBundle\API\Chart\Series\Areaspline\HighchartsPoint $point = null) { |
||
| 1692 | |||
| 1693 | /** |
||
| 1694 | * Set the point description formatter. |
||
| 1695 | * |
||
| 1696 | * @param string $pointDescriptionFormatter The point description formatter. |
||
| 1697 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1698 | */ |
||
| 1699 | public function setPointDescriptionFormatter($pointDescriptionFormatter) { |
||
| 1703 | |||
| 1704 | /** |
||
| 1705 | * Set the point interval. |
||
| 1706 | * |
||
| 1707 | * @param integer $pointInterval The point interval. |
||
| 1708 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1709 | */ |
||
| 1710 | public function setPointInterval($pointInterval) { |
||
| 1714 | |||
| 1715 | /** |
||
| 1716 | * Set the point interval unit. |
||
| 1717 | * |
||
| 1718 | * @param string $pointIntervalUnit The point interval unit. |
||
| 1719 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1720 | */ |
||
| 1721 | public function setPointIntervalUnit($pointIntervalUnit) { |
||
| 1732 | |||
| 1733 | /** |
||
| 1734 | * Set the point placement. |
||
| 1735 | * |
||
| 1736 | * @param string|integer $pointPlacement The point placement. |
||
| 1737 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1738 | */ |
||
| 1739 | public function setPointPlacement($pointPlacement) { |
||
| 1749 | |||
| 1750 | /** |
||
| 1751 | * Set the point start. |
||
| 1752 | * |
||
| 1753 | * @param integer $pointStart The point start. |
||
| 1754 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1755 | */ |
||
| 1756 | public function setPointStart($pointStart) { |
||
| 1760 | |||
| 1761 | /** |
||
| 1762 | * Set the selected. |
||
| 1763 | * |
||
| 1764 | * @param boolean $selected The selected. |
||
| 1765 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1766 | */ |
||
| 1767 | public function setSelected($selected) { |
||
| 1771 | |||
| 1772 | /** |
||
| 1773 | * Set the shadow. |
||
| 1774 | * |
||
| 1775 | * @param boolean|array $shadow The shadow. |
||
| 1776 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1777 | */ |
||
| 1778 | public function setShadow($shadow) { |
||
| 1782 | |||
| 1783 | /** |
||
| 1784 | * Set the show checkbox. |
||
| 1785 | * |
||
| 1786 | * @param boolean $showCheckbox The show checkbox. |
||
| 1787 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1788 | */ |
||
| 1789 | public function setShowCheckbox($showCheckbox) { |
||
| 1793 | |||
| 1794 | /** |
||
| 1795 | * Set the show in legend. |
||
| 1796 | * |
||
| 1797 | * @param boolean $showInLegend The show in legend. |
||
| 1798 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1799 | */ |
||
| 1800 | public function setShowInLegend($showInLegend) { |
||
| 1804 | |||
| 1805 | /** |
||
| 1806 | * Set the skip keyboard navigation. |
||
| 1807 | * |
||
| 1808 | * @param boolean $skipKeyboardNavigation The skip keyboard navigation. |
||
| 1809 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1810 | */ |
||
| 1811 | public function setSkipKeyboardNavigation($skipKeyboardNavigation) { |
||
| 1815 | |||
| 1816 | /** |
||
| 1817 | * Set the soft threshold. |
||
| 1818 | * |
||
| 1819 | * @param boolean $softThreshold The soft threshold. |
||
| 1820 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1821 | */ |
||
| 1822 | public function setSoftThreshold($softThreshold) { |
||
| 1826 | |||
| 1827 | /** |
||
| 1828 | * Set the stack. |
||
| 1829 | * |
||
| 1830 | * @param string $stack The stack. |
||
| 1831 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1832 | */ |
||
| 1833 | public function setStack($stack) { |
||
| 1837 | |||
| 1838 | /** |
||
| 1839 | * Set the stacking. |
||
| 1840 | * |
||
| 1841 | * @param string $stacking The stacking. |
||
| 1842 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1843 | */ |
||
| 1844 | public function setStacking($stacking) { |
||
| 1854 | |||
| 1855 | /** |
||
| 1856 | * Set the states. |
||
| 1857 | * |
||
| 1858 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\Series\Areaspline\HighchartsStates $states The states. |
||
| 1859 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1860 | */ |
||
| 1861 | public function setStates(\WBW\Bundle\HighchartsBundle\API\Chart\Series\Areaspline\HighchartsStates $states = null) { |
||
| 1865 | |||
| 1866 | /** |
||
| 1867 | * Set the sticky tracking. |
||
| 1868 | * |
||
| 1869 | * @param boolean $stickyTracking The sticky tracking. |
||
| 1870 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1871 | */ |
||
| 1872 | public function setStickyTracking($stickyTracking) { |
||
| 1876 | |||
| 1877 | /** |
||
| 1878 | * Set the threshold. |
||
| 1879 | * |
||
| 1880 | * @param integer $threshold The threshold. |
||
| 1881 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1882 | */ |
||
| 1883 | public function setThreshold($threshold) { |
||
| 1887 | |||
| 1888 | /** |
||
| 1889 | * Set the tooltip. |
||
| 1890 | * |
||
| 1891 | * @param array $tooltip The tooltip. |
||
| 1892 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1893 | */ |
||
| 1894 | public function setTooltip(array $tooltip = null) { |
||
| 1898 | |||
| 1899 | /** |
||
| 1900 | * Set the track by area. |
||
| 1901 | * |
||
| 1902 | * @param boolean $trackByArea The track by area. |
||
| 1903 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1904 | */ |
||
| 1905 | public function setTrackByArea($trackByArea) { |
||
| 1909 | |||
| 1910 | /** |
||
| 1911 | * Set the turbo threshold. |
||
| 1912 | * |
||
| 1913 | * @param integer $turboThreshold The turbo threshold. |
||
| 1914 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1915 | */ |
||
| 1916 | public function setTurboThreshold($turboThreshold) { |
||
| 1920 | |||
| 1921 | /** |
||
| 1922 | * Set the type. |
||
| 1923 | * |
||
| 1924 | * @param string $type The type. |
||
| 1925 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1926 | */ |
||
| 1927 | public function setType($type) { |
||
| 1951 | |||
| 1952 | /** |
||
| 1953 | * Set the visible. |
||
| 1954 | * |
||
| 1955 | * @param boolean $visible The visible. |
||
| 1956 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1957 | */ |
||
| 1958 | public function setVisible($visible) { |
||
| 1962 | |||
| 1963 | /** |
||
| 1964 | * Set the x axis. |
||
| 1965 | * |
||
| 1966 | * @param integer|string $xAxis The x axis. |
||
| 1967 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1968 | */ |
||
| 1969 | public function setXAxis($xAxis) { |
||
| 1973 | |||
| 1974 | /** |
||
| 1975 | * Set the y axis. |
||
| 1976 | * |
||
| 1977 | * @param integer|string $yAxis The y axis. |
||
| 1978 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1979 | */ |
||
| 1980 | public function setYAxis($yAxis) { |
||
| 1984 | |||
| 1985 | /** |
||
| 1986 | * Set the z index. |
||
| 1987 | * |
||
| 1988 | * @param integer $zIndex The z index. |
||
| 1989 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 1990 | */ |
||
| 1991 | public function setZIndex($zIndex) { |
||
| 1995 | |||
| 1996 | /** |
||
| 1997 | * Set the zone axis. |
||
| 1998 | * |
||
| 1999 | * @param string $zoneAxis The zone axis. |
||
| 2000 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 2001 | */ |
||
| 2002 | public function setZoneAxis($zoneAxis) { |
||
| 2006 | |||
| 2007 | /** |
||
| 2008 | * Set the zones. |
||
| 2009 | * |
||
| 2010 | * @param array $zones The zones. |
||
| 2011 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreaspline Returns the highcharts areaspline. |
||
| 2012 | */ |
||
| 2013 | public function setZones(array $zones = null) { |
||
| 2017 | |||
| 2018 | /** |
||
| 2019 | * Convert into an array representing this instance. |
||
| 2020 | * |
||
| 2021 | * @return array Returns an array representing this instance. |
||
| 2022 | */ |
||
| 2023 | public function toArray() { |
||
| 2221 | |||
| 2222 | } |
||
| 2223 |
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..