Complex classes like HighchartsZAxis 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 HighchartsZAxis, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 25 | final class HighchartsZAxis implements JsonSerializable { |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Allow decimals. |
||
| 29 | * |
||
| 30 | * @var boolean |
||
| 31 | * @since 2.0 |
||
| 32 | */ |
||
| 33 | private $allowDecimals = true; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Alternate grid color. |
||
| 37 | * |
||
| 38 | * @var string |
||
| 39 | */ |
||
| 40 | private $alternateGridColor; |
||
| 41 | |||
| 42 | /** |
||
| 43 | * Categories. |
||
| 44 | * |
||
| 45 | * @var array |
||
| 46 | */ |
||
| 47 | private $categories; |
||
| 48 | |||
| 49 | /** |
||
| 50 | * Ceiling. |
||
| 51 | * |
||
| 52 | * @var integer |
||
| 53 | * @since 4.0 |
||
| 54 | */ |
||
| 55 | private $ceiling; |
||
| 56 | |||
| 57 | /** |
||
| 58 | * Class name. |
||
| 59 | * |
||
| 60 | * @var string |
||
| 61 | * @since 5.0.0 |
||
| 62 | */ |
||
| 63 | private $className; |
||
| 64 | |||
| 65 | /** |
||
| 66 | * Crosshair. |
||
| 67 | * |
||
| 68 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\HighchartsCrosshair |
||
| 69 | * @since 4.1 |
||
| 70 | */ |
||
| 71 | private $crosshair; |
||
| 72 | |||
| 73 | /** |
||
| 74 | * Date time label formats. |
||
| 75 | * |
||
| 76 | * @var array |
||
| 77 | */ |
||
| 78 | private $dateTimeLabelFormats; |
||
| 79 | |||
| 80 | /** |
||
| 81 | * Description. |
||
| 82 | * |
||
| 83 | * @var string |
||
| 84 | * @since 5.0.0 |
||
| 85 | */ |
||
| 86 | private $description; |
||
| 87 | |||
| 88 | /** |
||
| 89 | * End on tick. |
||
| 90 | * |
||
| 91 | * @var boolean |
||
| 92 | * @since 1.2.0 |
||
| 93 | */ |
||
| 94 | private $endOnTick = false; |
||
| 95 | |||
| 96 | /** |
||
| 97 | * Events. |
||
| 98 | * |
||
| 99 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\HighchartsEvents |
||
| 100 | */ |
||
| 101 | private $events; |
||
| 102 | |||
| 103 | /** |
||
| 104 | * Floor. |
||
| 105 | * |
||
| 106 | * @var integer |
||
| 107 | * @since 4.0 |
||
| 108 | */ |
||
| 109 | private $floor; |
||
| 110 | |||
| 111 | /** |
||
| 112 | * Grid line color. |
||
| 113 | * |
||
| 114 | * @var string |
||
| 115 | */ |
||
| 116 | private $gridLineColor = "#e6e6e6"; |
||
| 117 | |||
| 118 | /** |
||
| 119 | * Grid line dash style. |
||
| 120 | * |
||
| 121 | * @var string |
||
| 122 | * @since 1.2 |
||
| 123 | */ |
||
| 124 | private $gridLineDashStyle = "Solid"; |
||
| 125 | |||
| 126 | /** |
||
| 127 | * Grid line width. |
||
| 128 | * |
||
| 129 | * @var integer |
||
| 130 | */ |
||
| 131 | private $gridLineWidth = 0; |
||
| 132 | |||
| 133 | /** |
||
| 134 | * Grid z index. |
||
| 135 | * |
||
| 136 | * @var integer |
||
| 137 | */ |
||
| 138 | private $gridZIndex = 1; |
||
| 139 | |||
| 140 | /** |
||
| 141 | * Id. |
||
| 142 | * |
||
| 143 | * @var string |
||
| 144 | * @since 1.2.0 |
||
| 145 | */ |
||
| 146 | private $id; |
||
| 147 | |||
| 148 | /** |
||
| 149 | * Labels. |
||
| 150 | * |
||
| 151 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\HighchartsLabels |
||
| 152 | */ |
||
| 153 | private $labels; |
||
| 154 | |||
| 155 | /** |
||
| 156 | * Line color. |
||
| 157 | * |
||
| 158 | * @var string |
||
| 159 | */ |
||
| 160 | private $lineColor = "#ccd6eb"; |
||
| 161 | |||
| 162 | /** |
||
| 163 | * Line width. |
||
| 164 | * |
||
| 165 | * @var integer |
||
| 166 | */ |
||
| 167 | private $lineWidth = 1; |
||
| 168 | |||
| 169 | /** |
||
| 170 | * Linked to. |
||
| 171 | * |
||
| 172 | * @var integer |
||
| 173 | * @since 2.0.2 |
||
| 174 | */ |
||
| 175 | private $linkedTo; |
||
| 176 | |||
| 177 | /** |
||
| 178 | * Max. |
||
| 179 | * |
||
| 180 | * @var integer |
||
| 181 | */ |
||
| 182 | private $max; |
||
| 183 | |||
| 184 | /** |
||
| 185 | * Max padding. |
||
| 186 | * |
||
| 187 | * @var integer |
||
| 188 | * @since 1.2.0 |
||
| 189 | */ |
||
| 190 | private $maxPadding = 0.01; |
||
| 191 | |||
| 192 | /** |
||
| 193 | * Max zoom. |
||
| 194 | * |
||
| 195 | * @var integer |
||
| 196 | * @deprecated |
||
| 197 | */ |
||
| 198 | private $maxZoom; |
||
| 199 | |||
| 200 | /** |
||
| 201 | * Min. |
||
| 202 | * |
||
| 203 | * @var integer |
||
| 204 | */ |
||
| 205 | private $min; |
||
| 206 | |||
| 207 | /** |
||
| 208 | * Min padding. |
||
| 209 | * |
||
| 210 | * @var integer |
||
| 211 | * @since 1.2.0 |
||
| 212 | */ |
||
| 213 | private $minPadding = 0.01; |
||
| 214 | |||
| 215 | /** |
||
| 216 | * Min range. |
||
| 217 | * |
||
| 218 | * @var integer |
||
| 219 | */ |
||
| 220 | private $minRange; |
||
| 221 | |||
| 222 | /** |
||
| 223 | * Min tick interval. |
||
| 224 | * |
||
| 225 | * @var integer |
||
| 226 | * @since 2.3.0 |
||
| 227 | */ |
||
| 228 | private $minTickInterval; |
||
| 229 | |||
| 230 | /** |
||
| 231 | * Minor grid line color. |
||
| 232 | * |
||
| 233 | * @var string |
||
| 234 | */ |
||
| 235 | private $minorGridLineColor = "#f2f2f2"; |
||
| 236 | |||
| 237 | /** |
||
| 238 | * Minor grid line dash style. |
||
| 239 | * |
||
| 240 | * @var string |
||
| 241 | * @since 1.2 |
||
| 242 | */ |
||
| 243 | private $minorGridLineDashStyle = "Solid"; |
||
| 244 | |||
| 245 | /** |
||
| 246 | * Minor grid line width. |
||
| 247 | * |
||
| 248 | * @var integer |
||
| 249 | */ |
||
| 250 | private $minorGridLineWidth = 1; |
||
| 251 | |||
| 252 | /** |
||
| 253 | * Minor tick color. |
||
| 254 | * |
||
| 255 | * @var string |
||
| 256 | */ |
||
| 257 | private $minorTickColor = "#999999"; |
||
| 258 | |||
| 259 | /** |
||
| 260 | * Minor tick interval. |
||
| 261 | * |
||
| 262 | * @var string|integer |
||
| 263 | */ |
||
| 264 | private $minorTickInterval; |
||
| 265 | |||
| 266 | /** |
||
| 267 | * Minor tick length. |
||
| 268 | * |
||
| 269 | * @var integer |
||
| 270 | */ |
||
| 271 | private $minorTickLength = 2; |
||
| 272 | |||
| 273 | /** |
||
| 274 | * Minor tick position. |
||
| 275 | * |
||
| 276 | * @var string |
||
| 277 | */ |
||
| 278 | private $minorTickPosition = "outside"; |
||
| 279 | |||
| 280 | /** |
||
| 281 | * Minor tick width. |
||
| 282 | * |
||
| 283 | * @var integer |
||
| 284 | */ |
||
| 285 | private $minorTickWidth = 0; |
||
| 286 | |||
| 287 | /** |
||
| 288 | * Offset. |
||
| 289 | * |
||
| 290 | * @var integer |
||
| 291 | */ |
||
| 292 | private $offset = 0; |
||
| 293 | |||
| 294 | /** |
||
| 295 | * Opposite. |
||
| 296 | * |
||
| 297 | * @var boolean |
||
| 298 | */ |
||
| 299 | private $opposite = false; |
||
| 300 | |||
| 301 | /** |
||
| 302 | * Plot bands. |
||
| 303 | * |
||
| 304 | * @var array |
||
| 305 | */ |
||
| 306 | private $plotBands; |
||
| 307 | |||
| 308 | /** |
||
| 309 | * Plot lines. |
||
| 310 | * |
||
| 311 | * @var array |
||
| 312 | */ |
||
| 313 | private $plotLines; |
||
| 314 | |||
| 315 | /** |
||
| 316 | * Reversed. |
||
| 317 | * |
||
| 318 | * @var boolean |
||
| 319 | */ |
||
| 320 | private $reversed = false; |
||
| 321 | |||
| 322 | /** |
||
| 323 | * Show empty. |
||
| 324 | * |
||
| 325 | * @var boolean |
||
| 326 | * @since 1.1 |
||
| 327 | */ |
||
| 328 | private $showEmpty = true; |
||
| 329 | |||
| 330 | /** |
||
| 331 | * Show first label. |
||
| 332 | * |
||
| 333 | * @var boolean |
||
| 334 | */ |
||
| 335 | private $showFirstLabel = true; |
||
| 336 | |||
| 337 | /** |
||
| 338 | * Show last label. |
||
| 339 | * |
||
| 340 | * @var boolean |
||
| 341 | */ |
||
| 342 | private $showLastLabel = true; |
||
| 343 | |||
| 344 | /** |
||
| 345 | * Soft max. |
||
| 346 | * |
||
| 347 | * @var integer |
||
| 348 | * @since 5.0.1 |
||
| 349 | */ |
||
| 350 | private $softMax; |
||
| 351 | |||
| 352 | /** |
||
| 353 | * Soft min. |
||
| 354 | * |
||
| 355 | * @var integer |
||
| 356 | * @since 5.0.1 |
||
| 357 | */ |
||
| 358 | private $softMin; |
||
| 359 | |||
| 360 | /** |
||
| 361 | * Start of week. |
||
| 362 | * |
||
| 363 | * @var integer |
||
| 364 | */ |
||
| 365 | private $startOfWeek = 1; |
||
| 366 | |||
| 367 | /** |
||
| 368 | * Start on tick. |
||
| 369 | * |
||
| 370 | * @var boolean |
||
| 371 | * @since 1.2.0 |
||
| 372 | */ |
||
| 373 | private $startOnTick = false; |
||
| 374 | |||
| 375 | /** |
||
| 376 | * Tick amount. |
||
| 377 | * |
||
| 378 | * @var integer |
||
| 379 | * @since 4.1.0 |
||
| 380 | */ |
||
| 381 | private $tickAmount; |
||
| 382 | |||
| 383 | /** |
||
| 384 | * Tick color. |
||
| 385 | * |
||
| 386 | * @var string |
||
| 387 | */ |
||
| 388 | private $tickColor = "#ccd6eb"; |
||
| 389 | |||
| 390 | /** |
||
| 391 | * Tick interval. |
||
| 392 | * |
||
| 393 | * @var integer |
||
| 394 | */ |
||
| 395 | private $tickInterval; |
||
| 396 | |||
| 397 | /** |
||
| 398 | * Tick length. |
||
| 399 | * |
||
| 400 | * @var integer |
||
| 401 | */ |
||
| 402 | private $tickLength = 10; |
||
| 403 | |||
| 404 | /** |
||
| 405 | * Tick pixel interval. |
||
| 406 | * |
||
| 407 | * @var integer |
||
| 408 | */ |
||
| 409 | private $tickPixelInterval; |
||
| 410 | |||
| 411 | /** |
||
| 412 | * Tick position. |
||
| 413 | * |
||
| 414 | * @var string |
||
| 415 | */ |
||
| 416 | private $tickPosition = "outside"; |
||
| 417 | |||
| 418 | /** |
||
| 419 | * Tick positioner. |
||
| 420 | * |
||
| 421 | * @var string |
||
| 422 | */ |
||
| 423 | private $tickPositioner; |
||
| 424 | |||
| 425 | /** |
||
| 426 | * Tick positions. |
||
| 427 | * |
||
| 428 | * @var array |
||
| 429 | */ |
||
| 430 | private $tickPositions; |
||
| 431 | |||
| 432 | /** |
||
| 433 | * Tick width. |
||
| 434 | * |
||
| 435 | * @var integer |
||
| 436 | */ |
||
| 437 | private $tickWidth = 1; |
||
| 438 | |||
| 439 | /** |
||
| 440 | * Tickmark placement. |
||
| 441 | * |
||
| 442 | * @var string |
||
| 443 | */ |
||
| 444 | private $tickmarkPlacement; |
||
| 445 | |||
| 446 | /** |
||
| 447 | * Title. |
||
| 448 | * |
||
| 449 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\HighchartsTitle |
||
| 450 | */ |
||
| 451 | private $title; |
||
| 452 | |||
| 453 | /** |
||
| 454 | * Type. |
||
| 455 | * |
||
| 456 | * @var string |
||
| 457 | */ |
||
| 458 | private $type = "linear"; |
||
| 459 | |||
| 460 | /** |
||
| 461 | * Unique names. |
||
| 462 | * |
||
| 463 | * @var boolean |
||
| 464 | * @since 4.2.7 |
||
| 465 | */ |
||
| 466 | private $uniqueNames = true; |
||
| 467 | |||
| 468 | /** |
||
| 469 | * Units. |
||
| 470 | * |
||
| 471 | * @var array |
||
| 472 | */ |
||
| 473 | private $units; |
||
| 474 | |||
| 475 | /** |
||
| 476 | * Visible. |
||
| 477 | * |
||
| 478 | * @var boolean |
||
| 479 | * @since 4.1.9 |
||
| 480 | */ |
||
| 481 | private $visible = true; |
||
| 482 | |||
| 483 | /** |
||
| 484 | * Constructor. |
||
| 485 | * |
||
| 486 | * @param boolean $ignoreDefaultValues Ignore the default values. |
||
| 487 | */ |
||
| 488 | public function __construct($ignoreDefaultValues = true) { |
||
| 493 | |||
| 494 | /** |
||
| 495 | * Clear. |
||
| 496 | * |
||
| 497 | * @return void |
||
| 498 | */ |
||
| 499 | public function clear() { |
||
| 695 | |||
| 696 | /** |
||
| 697 | * Get the allow decimals. |
||
| 698 | * |
||
| 699 | * @return boolean Returns the allow decimals. |
||
| 700 | */ |
||
| 701 | public function getAllowDecimals() { |
||
| 704 | |||
| 705 | /** |
||
| 706 | * Get the alternate grid color. |
||
| 707 | * |
||
| 708 | * @return string Returns the alternate grid color. |
||
| 709 | */ |
||
| 710 | public function getAlternateGridColor() { |
||
| 713 | |||
| 714 | /** |
||
| 715 | * Get the categories. |
||
| 716 | * |
||
| 717 | * @return array Returns the categories. |
||
| 718 | */ |
||
| 719 | public function getCategories() { |
||
| 722 | |||
| 723 | /** |
||
| 724 | * Get the ceiling. |
||
| 725 | * |
||
| 726 | * @return integer Returns the ceiling. |
||
| 727 | */ |
||
| 728 | public function getCeiling() { |
||
| 731 | |||
| 732 | /** |
||
| 733 | * Get the class name. |
||
| 734 | * |
||
| 735 | * @return string Returns the class name. |
||
| 736 | */ |
||
| 737 | public function getClassName() { |
||
| 740 | |||
| 741 | /** |
||
| 742 | * Get the crosshair. |
||
| 743 | * |
||
| 744 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\HighchartsCrosshair Returns the crosshair. |
||
| 745 | */ |
||
| 746 | public function getCrosshair() { |
||
| 749 | |||
| 750 | /** |
||
| 751 | * Get the date time label formats. |
||
| 752 | * |
||
| 753 | * @return array Returns the date time label formats. |
||
| 754 | */ |
||
| 755 | public function getDateTimeLabelFormats() { |
||
| 758 | |||
| 759 | /** |
||
| 760 | * Get the description. |
||
| 761 | * |
||
| 762 | * @return string Returns the description. |
||
| 763 | */ |
||
| 764 | public function getDescription() { |
||
| 767 | |||
| 768 | /** |
||
| 769 | * Get the end on tick. |
||
| 770 | * |
||
| 771 | * @return boolean Returns the end on tick. |
||
| 772 | */ |
||
| 773 | public function getEndOnTick() { |
||
| 776 | |||
| 777 | /** |
||
| 778 | * Get the events. |
||
| 779 | * |
||
| 780 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\HighchartsEvents Returns the events. |
||
| 781 | */ |
||
| 782 | public function getEvents() { |
||
| 785 | |||
| 786 | /** |
||
| 787 | * Get the floor. |
||
| 788 | * |
||
| 789 | * @return integer Returns the floor. |
||
| 790 | */ |
||
| 791 | public function getFloor() { |
||
| 794 | |||
| 795 | /** |
||
| 796 | * Get the grid line color. |
||
| 797 | * |
||
| 798 | * @return string Returns the grid line color. |
||
| 799 | */ |
||
| 800 | public function getGridLineColor() { |
||
| 803 | |||
| 804 | /** |
||
| 805 | * Get the grid line dash style. |
||
| 806 | * |
||
| 807 | * @return string Returns the grid line dash style. |
||
| 808 | */ |
||
| 809 | public function getGridLineDashStyle() { |
||
| 812 | |||
| 813 | /** |
||
| 814 | * Get the grid line width. |
||
| 815 | * |
||
| 816 | * @return integer Returns the grid line width. |
||
| 817 | */ |
||
| 818 | public function getGridLineWidth() { |
||
| 821 | |||
| 822 | /** |
||
| 823 | * Get the grid z index. |
||
| 824 | * |
||
| 825 | * @return integer Returns the grid z index. |
||
| 826 | */ |
||
| 827 | public function getGridZIndex() { |
||
| 830 | |||
| 831 | /** |
||
| 832 | * Get the id. |
||
| 833 | * |
||
| 834 | * @return string Returns the id. |
||
| 835 | */ |
||
| 836 | public function getId() { |
||
| 839 | |||
| 840 | /** |
||
| 841 | * Get the labels. |
||
| 842 | * |
||
| 843 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\HighchartsLabels Returns the labels. |
||
| 844 | */ |
||
| 845 | public function getLabels() { |
||
| 848 | |||
| 849 | /** |
||
| 850 | * Get the line color. |
||
| 851 | * |
||
| 852 | * @return string Returns the line color. |
||
| 853 | */ |
||
| 854 | public function getLineColor() { |
||
| 857 | |||
| 858 | /** |
||
| 859 | * Get the line width. |
||
| 860 | * |
||
| 861 | * @return integer Returns the line width. |
||
| 862 | */ |
||
| 863 | public function getLineWidth() { |
||
| 866 | |||
| 867 | /** |
||
| 868 | * Get the linked to. |
||
| 869 | * |
||
| 870 | * @return integer Returns the linked to. |
||
| 871 | */ |
||
| 872 | public function getLinkedTo() { |
||
| 875 | |||
| 876 | /** |
||
| 877 | * Get the max. |
||
| 878 | * |
||
| 879 | * @return integer Returns the max. |
||
| 880 | */ |
||
| 881 | public function getMax() { |
||
| 884 | |||
| 885 | /** |
||
| 886 | * Get the max padding. |
||
| 887 | * |
||
| 888 | * @return integer Returns the max padding. |
||
| 889 | */ |
||
| 890 | public function getMaxPadding() { |
||
| 893 | |||
| 894 | /** |
||
| 895 | * Get the max zoom. |
||
| 896 | * |
||
| 897 | * @return integer Returns the max zoom. |
||
| 898 | * @deprecated |
||
| 899 | */ |
||
| 900 | public function getMaxZoom() { |
||
| 903 | |||
| 904 | /** |
||
| 905 | * Get the min. |
||
| 906 | * |
||
| 907 | * @return integer Returns the min. |
||
| 908 | */ |
||
| 909 | public function getMin() { |
||
| 912 | |||
| 913 | /** |
||
| 914 | * Get the min padding. |
||
| 915 | * |
||
| 916 | * @return integer Returns the min padding. |
||
| 917 | */ |
||
| 918 | public function getMinPadding() { |
||
| 921 | |||
| 922 | /** |
||
| 923 | * Get the min range. |
||
| 924 | * |
||
| 925 | * @return integer Returns the min range. |
||
| 926 | */ |
||
| 927 | public function getMinRange() { |
||
| 930 | |||
| 931 | /** |
||
| 932 | * Get the min tick interval. |
||
| 933 | * |
||
| 934 | * @return integer Returns the min tick interval. |
||
| 935 | */ |
||
| 936 | public function getMinTickInterval() { |
||
| 939 | |||
| 940 | /** |
||
| 941 | * Get the minor grid line color. |
||
| 942 | * |
||
| 943 | * @return string Returns the minor grid line color. |
||
| 944 | */ |
||
| 945 | public function getMinorGridLineColor() { |
||
| 948 | |||
| 949 | /** |
||
| 950 | * Get the minor grid line dash style. |
||
| 951 | * |
||
| 952 | * @return string Returns the minor grid line dash style. |
||
| 953 | */ |
||
| 954 | public function getMinorGridLineDashStyle() { |
||
| 957 | |||
| 958 | /** |
||
| 959 | * Get the minor grid line width. |
||
| 960 | * |
||
| 961 | * @return integer Returns the minor grid line width. |
||
| 962 | */ |
||
| 963 | public function getMinorGridLineWidth() { |
||
| 966 | |||
| 967 | /** |
||
| 968 | * Get the minor tick color. |
||
| 969 | * |
||
| 970 | * @return string Returns the minor tick color. |
||
| 971 | */ |
||
| 972 | public function getMinorTickColor() { |
||
| 975 | |||
| 976 | /** |
||
| 977 | * Get the minor tick interval. |
||
| 978 | * |
||
| 979 | * @return string|integer Returns the minor tick interval. |
||
| 980 | */ |
||
| 981 | public function getMinorTickInterval() { |
||
| 984 | |||
| 985 | /** |
||
| 986 | * Get the minor tick length. |
||
| 987 | * |
||
| 988 | * @return integer Returns the minor tick length. |
||
| 989 | */ |
||
| 990 | public function getMinorTickLength() { |
||
| 993 | |||
| 994 | /** |
||
| 995 | * Get the minor tick position. |
||
| 996 | * |
||
| 997 | * @return string Returns the minor tick position. |
||
| 998 | */ |
||
| 999 | public function getMinorTickPosition() { |
||
| 1002 | |||
| 1003 | /** |
||
| 1004 | * Get the minor tick width. |
||
| 1005 | * |
||
| 1006 | * @return integer Returns the minor tick width. |
||
| 1007 | */ |
||
| 1008 | public function getMinorTickWidth() { |
||
| 1011 | |||
| 1012 | /** |
||
| 1013 | * Get the offset. |
||
| 1014 | * |
||
| 1015 | * @return integer Returns the offset. |
||
| 1016 | */ |
||
| 1017 | public function getOffset() { |
||
| 1020 | |||
| 1021 | /** |
||
| 1022 | * Get the opposite. |
||
| 1023 | * |
||
| 1024 | * @return boolean Returns the opposite. |
||
| 1025 | */ |
||
| 1026 | public function getOpposite() { |
||
| 1029 | |||
| 1030 | /** |
||
| 1031 | * Get the plot bands. |
||
| 1032 | * |
||
| 1033 | * @return array Returns the plot bands. |
||
| 1034 | */ |
||
| 1035 | public function getPlotBands() { |
||
| 1038 | |||
| 1039 | /** |
||
| 1040 | * Get the plot lines. |
||
| 1041 | * |
||
| 1042 | * @return array Returns the plot lines. |
||
| 1043 | */ |
||
| 1044 | public function getPlotLines() { |
||
| 1047 | |||
| 1048 | /** |
||
| 1049 | * Get the reversed. |
||
| 1050 | * |
||
| 1051 | * @return boolean Returns the reversed. |
||
| 1052 | */ |
||
| 1053 | public function getReversed() { |
||
| 1056 | |||
| 1057 | /** |
||
| 1058 | * Get the show empty. |
||
| 1059 | * |
||
| 1060 | * @return boolean Returns the show empty. |
||
| 1061 | */ |
||
| 1062 | public function getShowEmpty() { |
||
| 1065 | |||
| 1066 | /** |
||
| 1067 | * Get the show first label. |
||
| 1068 | * |
||
| 1069 | * @return boolean Returns the show first label. |
||
| 1070 | */ |
||
| 1071 | public function getShowFirstLabel() { |
||
| 1074 | |||
| 1075 | /** |
||
| 1076 | * Get the show last label. |
||
| 1077 | * |
||
| 1078 | * @return boolean Returns the show last label. |
||
| 1079 | */ |
||
| 1080 | public function getShowLastLabel() { |
||
| 1083 | |||
| 1084 | /** |
||
| 1085 | * Get the soft max. |
||
| 1086 | * |
||
| 1087 | * @return integer Returns the soft max. |
||
| 1088 | */ |
||
| 1089 | public function getSoftMax() { |
||
| 1092 | |||
| 1093 | /** |
||
| 1094 | * Get the soft min. |
||
| 1095 | * |
||
| 1096 | * @return integer Returns the soft min. |
||
| 1097 | */ |
||
| 1098 | public function getSoftMin() { |
||
| 1101 | |||
| 1102 | /** |
||
| 1103 | * Get the start of week. |
||
| 1104 | * |
||
| 1105 | * @return integer Returns the start of week. |
||
| 1106 | */ |
||
| 1107 | public function getStartOfWeek() { |
||
| 1110 | |||
| 1111 | /** |
||
| 1112 | * Get the start on tick. |
||
| 1113 | * |
||
| 1114 | * @return boolean Returns the start on tick. |
||
| 1115 | */ |
||
| 1116 | public function getStartOnTick() { |
||
| 1119 | |||
| 1120 | /** |
||
| 1121 | * Get the tick amount. |
||
| 1122 | * |
||
| 1123 | * @return integer Returns the tick amount. |
||
| 1124 | */ |
||
| 1125 | public function getTickAmount() { |
||
| 1128 | |||
| 1129 | /** |
||
| 1130 | * Get the tick color. |
||
| 1131 | * |
||
| 1132 | * @return string Returns the tick color. |
||
| 1133 | */ |
||
| 1134 | public function getTickColor() { |
||
| 1137 | |||
| 1138 | /** |
||
| 1139 | * Get the tick interval. |
||
| 1140 | * |
||
| 1141 | * @return integer Returns the tick interval. |
||
| 1142 | */ |
||
| 1143 | public function getTickInterval() { |
||
| 1146 | |||
| 1147 | /** |
||
| 1148 | * Get the tick length. |
||
| 1149 | * |
||
| 1150 | * @return integer Returns the tick length. |
||
| 1151 | */ |
||
| 1152 | public function getTickLength() { |
||
| 1155 | |||
| 1156 | /** |
||
| 1157 | * Get the tick pixel interval. |
||
| 1158 | * |
||
| 1159 | * @return integer Returns the tick pixel interval. |
||
| 1160 | */ |
||
| 1161 | public function getTickPixelInterval() { |
||
| 1164 | |||
| 1165 | /** |
||
| 1166 | * Get the tick position. |
||
| 1167 | * |
||
| 1168 | * @return string Returns the tick position. |
||
| 1169 | */ |
||
| 1170 | public function getTickPosition() { |
||
| 1173 | |||
| 1174 | /** |
||
| 1175 | * Get the tick positioner. |
||
| 1176 | * |
||
| 1177 | * @return string Returns the tick positioner. |
||
| 1178 | */ |
||
| 1179 | public function getTickPositioner() { |
||
| 1182 | |||
| 1183 | /** |
||
| 1184 | * Get the tick positions. |
||
| 1185 | * |
||
| 1186 | * @return array Returns the tick positions. |
||
| 1187 | */ |
||
| 1188 | public function getTickPositions() { |
||
| 1191 | |||
| 1192 | /** |
||
| 1193 | * Get the tick width. |
||
| 1194 | * |
||
| 1195 | * @return integer Returns the tick width. |
||
| 1196 | */ |
||
| 1197 | public function getTickWidth() { |
||
| 1200 | |||
| 1201 | /** |
||
| 1202 | * Get the tickmark placement. |
||
| 1203 | * |
||
| 1204 | * @return string Returns the tickmark placement. |
||
| 1205 | */ |
||
| 1206 | public function getTickmarkPlacement() { |
||
| 1209 | |||
| 1210 | /** |
||
| 1211 | * Get the title. |
||
| 1212 | * |
||
| 1213 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\HighchartsTitle Returns the title. |
||
| 1214 | */ |
||
| 1215 | public function getTitle() { |
||
| 1218 | |||
| 1219 | /** |
||
| 1220 | * Get the type. |
||
| 1221 | * |
||
| 1222 | * @return string Returns the type. |
||
| 1223 | */ |
||
| 1224 | public function getType() { |
||
| 1227 | |||
| 1228 | /** |
||
| 1229 | * Get the unique names. |
||
| 1230 | * |
||
| 1231 | * @return boolean Returns the unique names. |
||
| 1232 | */ |
||
| 1233 | public function getUniqueNames() { |
||
| 1236 | |||
| 1237 | /** |
||
| 1238 | * Get the units. |
||
| 1239 | * |
||
| 1240 | * @return array Returns the units. |
||
| 1241 | */ |
||
| 1242 | public function getUnits() { |
||
| 1245 | |||
| 1246 | /** |
||
| 1247 | * Get the visible. |
||
| 1248 | * |
||
| 1249 | * @return boolean Returns the visible. |
||
| 1250 | */ |
||
| 1251 | public function getVisible() { |
||
| 1254 | |||
| 1255 | /** |
||
| 1256 | * Serialize this instance. |
||
| 1257 | * |
||
| 1258 | * @return array Returns an array representing this instance. |
||
| 1259 | */ |
||
| 1260 | public function jsonSerialize() { |
||
| 1263 | |||
| 1264 | /** |
||
| 1265 | * Create a new crosshair. |
||
| 1266 | * |
||
| 1267 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\HighchartsCrosshair Returns the crosshair. |
||
| 1268 | */ |
||
| 1269 | public function newCrosshair() { |
||
| 1273 | |||
| 1274 | /** |
||
| 1275 | * Create a new events. |
||
| 1276 | * |
||
| 1277 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\HighchartsEvents Returns the events. |
||
| 1278 | */ |
||
| 1279 | public function newEvents() { |
||
| 1283 | |||
| 1284 | /** |
||
| 1285 | * Create a new labels. |
||
| 1286 | * |
||
| 1287 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\HighchartsLabels Returns the labels. |
||
| 1288 | */ |
||
| 1289 | public function newLabels() { |
||
| 1293 | |||
| 1294 | /** |
||
| 1295 | * Create a new title. |
||
| 1296 | * |
||
| 1297 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\HighchartsTitle Returns the title. |
||
| 1298 | */ |
||
| 1299 | public function newTitle() { |
||
| 1303 | |||
| 1304 | /** |
||
| 1305 | * Set the allow decimals. |
||
| 1306 | * |
||
| 1307 | * @param boolean $allowDecimals The allow decimals. |
||
| 1308 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1309 | */ |
||
| 1310 | public function setAllowDecimals($allowDecimals) { |
||
| 1314 | |||
| 1315 | /** |
||
| 1316 | * Set the alternate grid color. |
||
| 1317 | * |
||
| 1318 | * @param string $alternateGridColor The alternate grid color. |
||
| 1319 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1320 | */ |
||
| 1321 | public function setAlternateGridColor($alternateGridColor) { |
||
| 1325 | |||
| 1326 | /** |
||
| 1327 | * Set the categories. |
||
| 1328 | * |
||
| 1329 | * @param array $categories The categories. |
||
| 1330 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1331 | */ |
||
| 1332 | public function setCategories(array $categories = null) { |
||
| 1336 | |||
| 1337 | /** |
||
| 1338 | * Set the ceiling. |
||
| 1339 | * |
||
| 1340 | * @param integer $ceiling The ceiling. |
||
| 1341 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1342 | */ |
||
| 1343 | public function setCeiling($ceiling) { |
||
| 1347 | |||
| 1348 | /** |
||
| 1349 | * Set the class name. |
||
| 1350 | * |
||
| 1351 | * @param string $className The class name. |
||
| 1352 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1353 | */ |
||
| 1354 | public function setClassName($className) { |
||
| 1358 | |||
| 1359 | /** |
||
| 1360 | * Set the crosshair. |
||
| 1361 | * |
||
| 1362 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\HighchartsCrosshair $crosshair The crosshair. |
||
| 1363 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1364 | */ |
||
| 1365 | public function setCrosshair(\WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\HighchartsCrosshair $crosshair = null) { |
||
| 1369 | |||
| 1370 | /** |
||
| 1371 | * Set the date time label formats. |
||
| 1372 | * |
||
| 1373 | * @param array $dateTimeLabelFormats The date time label formats. |
||
| 1374 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1375 | */ |
||
| 1376 | public function setDateTimeLabelFormats(array $dateTimeLabelFormats = null) { |
||
| 1380 | |||
| 1381 | /** |
||
| 1382 | * Set the description. |
||
| 1383 | * |
||
| 1384 | * @param string $description The description. |
||
| 1385 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1386 | */ |
||
| 1387 | public function setDescription($description) { |
||
| 1391 | |||
| 1392 | /** |
||
| 1393 | * Set the end on tick. |
||
| 1394 | * |
||
| 1395 | * @param boolean $endOnTick The end on tick. |
||
| 1396 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1397 | */ |
||
| 1398 | public function setEndOnTick($endOnTick) { |
||
| 1402 | |||
| 1403 | /** |
||
| 1404 | * Set the events. |
||
| 1405 | * |
||
| 1406 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\HighchartsEvents $events The events. |
||
| 1407 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1408 | */ |
||
| 1409 | public function setEvents(\WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\HighchartsEvents $events = null) { |
||
| 1413 | |||
| 1414 | /** |
||
| 1415 | * Set the floor. |
||
| 1416 | * |
||
| 1417 | * @param integer $floor The floor. |
||
| 1418 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1419 | */ |
||
| 1420 | public function setFloor($floor) { |
||
| 1424 | |||
| 1425 | /** |
||
| 1426 | * Set the grid line color. |
||
| 1427 | * |
||
| 1428 | * @param string $gridLineColor The grid line color. |
||
| 1429 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1430 | */ |
||
| 1431 | public function setGridLineColor($gridLineColor) { |
||
| 1435 | |||
| 1436 | /** |
||
| 1437 | * Set the grid line dash style. |
||
| 1438 | * |
||
| 1439 | * @param string $gridLineDashStyle The grid line dash style. |
||
| 1440 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1441 | */ |
||
| 1442 | public function setGridLineDashStyle($gridLineDashStyle) { |
||
| 1460 | |||
| 1461 | /** |
||
| 1462 | * Set the grid line width. |
||
| 1463 | * |
||
| 1464 | * @param integer $gridLineWidth The grid line width. |
||
| 1465 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1466 | */ |
||
| 1467 | public function setGridLineWidth($gridLineWidth) { |
||
| 1471 | |||
| 1472 | /** |
||
| 1473 | * Set the grid z index. |
||
| 1474 | * |
||
| 1475 | * @param integer $gridZIndex The grid z index. |
||
| 1476 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1477 | */ |
||
| 1478 | public function setGridZIndex($gridZIndex) { |
||
| 1482 | |||
| 1483 | /** |
||
| 1484 | * Set the id. |
||
| 1485 | * |
||
| 1486 | * @param string $id The id. |
||
| 1487 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1488 | */ |
||
| 1489 | public function setId($id) { |
||
| 1493 | |||
| 1494 | /** |
||
| 1495 | * Set the labels. |
||
| 1496 | * |
||
| 1497 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\HighchartsLabels $labels The labels. |
||
| 1498 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1499 | */ |
||
| 1500 | public function setLabels(\WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\HighchartsLabels $labels = null) { |
||
| 1504 | |||
| 1505 | /** |
||
| 1506 | * Set the line color. |
||
| 1507 | * |
||
| 1508 | * @param string $lineColor The line color. |
||
| 1509 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1510 | */ |
||
| 1511 | public function setLineColor($lineColor) { |
||
| 1515 | |||
| 1516 | /** |
||
| 1517 | * Set the line width. |
||
| 1518 | * |
||
| 1519 | * @param integer $lineWidth The line width. |
||
| 1520 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1521 | */ |
||
| 1522 | public function setLineWidth($lineWidth) { |
||
| 1526 | |||
| 1527 | /** |
||
| 1528 | * Set the linked to. |
||
| 1529 | * |
||
| 1530 | * @param integer $linkedTo The linked to. |
||
| 1531 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1532 | */ |
||
| 1533 | public function setLinkedTo($linkedTo) { |
||
| 1537 | |||
| 1538 | /** |
||
| 1539 | * Set the max. |
||
| 1540 | * |
||
| 1541 | * @param integer $max The max. |
||
| 1542 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1543 | */ |
||
| 1544 | public function setMax($max) { |
||
| 1548 | |||
| 1549 | /** |
||
| 1550 | * Set the max padding. |
||
| 1551 | * |
||
| 1552 | * @param integer $maxPadding The max padding. |
||
| 1553 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1554 | */ |
||
| 1555 | public function setMaxPadding($maxPadding) { |
||
| 1559 | |||
| 1560 | /** |
||
| 1561 | * Set the max zoom. |
||
| 1562 | * |
||
| 1563 | * @param integer $maxZoom The max zoom. |
||
| 1564 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1565 | * @deprecated |
||
| 1566 | */ |
||
| 1567 | public function setMaxZoom($maxZoom) { |
||
| 1571 | |||
| 1572 | /** |
||
| 1573 | * Set the min. |
||
| 1574 | * |
||
| 1575 | * @param integer $min The min. |
||
| 1576 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1577 | */ |
||
| 1578 | public function setMin($min) { |
||
| 1582 | |||
| 1583 | /** |
||
| 1584 | * Set the min padding. |
||
| 1585 | * |
||
| 1586 | * @param integer $minPadding The min padding. |
||
| 1587 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1588 | */ |
||
| 1589 | public function setMinPadding($minPadding) { |
||
| 1593 | |||
| 1594 | /** |
||
| 1595 | * Set the min range. |
||
| 1596 | * |
||
| 1597 | * @param integer $minRange The min range. |
||
| 1598 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1599 | */ |
||
| 1600 | public function setMinRange($minRange) { |
||
| 1604 | |||
| 1605 | /** |
||
| 1606 | * Set the min tick interval. |
||
| 1607 | * |
||
| 1608 | * @param integer $minTickInterval The min tick interval. |
||
| 1609 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1610 | */ |
||
| 1611 | public function setMinTickInterval($minTickInterval) { |
||
| 1615 | |||
| 1616 | /** |
||
| 1617 | * Set the minor grid line color. |
||
| 1618 | * |
||
| 1619 | * @param string $minorGridLineColor The minor grid line color. |
||
| 1620 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1621 | */ |
||
| 1622 | public function setMinorGridLineColor($minorGridLineColor) { |
||
| 1626 | |||
| 1627 | /** |
||
| 1628 | * Set the minor grid line dash style. |
||
| 1629 | * |
||
| 1630 | * @param string $minorGridLineDashStyle The minor grid line dash style. |
||
| 1631 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1632 | */ |
||
| 1633 | public function setMinorGridLineDashStyle($minorGridLineDashStyle) { |
||
| 1651 | |||
| 1652 | /** |
||
| 1653 | * Set the minor grid line width. |
||
| 1654 | * |
||
| 1655 | * @param integer $minorGridLineWidth The minor grid line width. |
||
| 1656 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1657 | */ |
||
| 1658 | public function setMinorGridLineWidth($minorGridLineWidth) { |
||
| 1662 | |||
| 1663 | /** |
||
| 1664 | * Set the minor tick color. |
||
| 1665 | * |
||
| 1666 | * @param string $minorTickColor The minor tick color. |
||
| 1667 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1668 | */ |
||
| 1669 | public function setMinorTickColor($minorTickColor) { |
||
| 1673 | |||
| 1674 | /** |
||
| 1675 | * Set the minor tick interval. |
||
| 1676 | * |
||
| 1677 | * @param string|integer $minorTickInterval The minor tick interval. |
||
| 1678 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1679 | */ |
||
| 1680 | public function setMinorTickInterval($minorTickInterval) { |
||
| 1684 | |||
| 1685 | /** |
||
| 1686 | * Set the minor tick length. |
||
| 1687 | * |
||
| 1688 | * @param integer $minorTickLength The minor tick length. |
||
| 1689 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1690 | */ |
||
| 1691 | public function setMinorTickLength($minorTickLength) { |
||
| 1695 | |||
| 1696 | /** |
||
| 1697 | * Set the minor tick position. |
||
| 1698 | * |
||
| 1699 | * @param string $minorTickPosition The minor tick position. |
||
| 1700 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1701 | */ |
||
| 1702 | public function setMinorTickPosition($minorTickPosition) { |
||
| 1711 | |||
| 1712 | /** |
||
| 1713 | * Set the minor tick width. |
||
| 1714 | * |
||
| 1715 | * @param integer $minorTickWidth The minor tick width. |
||
| 1716 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1717 | */ |
||
| 1718 | public function setMinorTickWidth($minorTickWidth) { |
||
| 1722 | |||
| 1723 | /** |
||
| 1724 | * Set the offset. |
||
| 1725 | * |
||
| 1726 | * @param integer $offset The offset. |
||
| 1727 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1728 | */ |
||
| 1729 | public function setOffset($offset) { |
||
| 1733 | |||
| 1734 | /** |
||
| 1735 | * Set the opposite. |
||
| 1736 | * |
||
| 1737 | * @param boolean $opposite The opposite. |
||
| 1738 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1739 | */ |
||
| 1740 | public function setOpposite($opposite) { |
||
| 1744 | |||
| 1745 | /** |
||
| 1746 | * Set the plot bands. |
||
| 1747 | * |
||
| 1748 | * @param array $plotBands The plot bands. |
||
| 1749 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1750 | */ |
||
| 1751 | public function setPlotBands(array $plotBands = null) { |
||
| 1755 | |||
| 1756 | /** |
||
| 1757 | * Set the plot lines. |
||
| 1758 | * |
||
| 1759 | * @param array $plotLines The plot lines. |
||
| 1760 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1761 | */ |
||
| 1762 | public function setPlotLines(array $plotLines = null) { |
||
| 1766 | |||
| 1767 | /** |
||
| 1768 | * Set the reversed. |
||
| 1769 | * |
||
| 1770 | * @param boolean $reversed The reversed. |
||
| 1771 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1772 | */ |
||
| 1773 | public function setReversed($reversed) { |
||
| 1777 | |||
| 1778 | /** |
||
| 1779 | * Set the show empty. |
||
| 1780 | * |
||
| 1781 | * @param boolean $showEmpty The show empty. |
||
| 1782 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1783 | */ |
||
| 1784 | public function setShowEmpty($showEmpty) { |
||
| 1788 | |||
| 1789 | /** |
||
| 1790 | * Set the show first label. |
||
| 1791 | * |
||
| 1792 | * @param boolean $showFirstLabel The show first label. |
||
| 1793 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1794 | */ |
||
| 1795 | public function setShowFirstLabel($showFirstLabel) { |
||
| 1799 | |||
| 1800 | /** |
||
| 1801 | * Set the show last label. |
||
| 1802 | * |
||
| 1803 | * @param boolean $showLastLabel The show last label. |
||
| 1804 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1805 | */ |
||
| 1806 | public function setShowLastLabel($showLastLabel) { |
||
| 1810 | |||
| 1811 | /** |
||
| 1812 | * Set the soft max. |
||
| 1813 | * |
||
| 1814 | * @param integer $softMax The soft max. |
||
| 1815 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1816 | */ |
||
| 1817 | public function setSoftMax($softMax) { |
||
| 1821 | |||
| 1822 | /** |
||
| 1823 | * Set the soft min. |
||
| 1824 | * |
||
| 1825 | * @param integer $softMin The soft min. |
||
| 1826 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1827 | */ |
||
| 1828 | public function setSoftMin($softMin) { |
||
| 1832 | |||
| 1833 | /** |
||
| 1834 | * Set the start of week. |
||
| 1835 | * |
||
| 1836 | * @param integer $startOfWeek The start of week. |
||
| 1837 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1838 | */ |
||
| 1839 | public function setStartOfWeek($startOfWeek) { |
||
| 1843 | |||
| 1844 | /** |
||
| 1845 | * Set the start on tick. |
||
| 1846 | * |
||
| 1847 | * @param boolean $startOnTick The start on tick. |
||
| 1848 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1849 | */ |
||
| 1850 | public function setStartOnTick($startOnTick) { |
||
| 1854 | |||
| 1855 | /** |
||
| 1856 | * Set the tick amount. |
||
| 1857 | * |
||
| 1858 | * @param integer $tickAmount The tick amount. |
||
| 1859 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1860 | */ |
||
| 1861 | public function setTickAmount($tickAmount) { |
||
| 1865 | |||
| 1866 | /** |
||
| 1867 | * Set the tick color. |
||
| 1868 | * |
||
| 1869 | * @param string $tickColor The tick color. |
||
| 1870 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1871 | */ |
||
| 1872 | public function setTickColor($tickColor) { |
||
| 1876 | |||
| 1877 | /** |
||
| 1878 | * Set the tick interval. |
||
| 1879 | * |
||
| 1880 | * @param integer $tickInterval The tick interval. |
||
| 1881 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1882 | */ |
||
| 1883 | public function setTickInterval($tickInterval) { |
||
| 1887 | |||
| 1888 | /** |
||
| 1889 | * Set the tick length. |
||
| 1890 | * |
||
| 1891 | * @param integer $tickLength The tick length. |
||
| 1892 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1893 | */ |
||
| 1894 | public function setTickLength($tickLength) { |
||
| 1898 | |||
| 1899 | /** |
||
| 1900 | * Set the tick pixel interval. |
||
| 1901 | * |
||
| 1902 | * @param integer $tickPixelInterval The tick pixel interval. |
||
| 1903 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1904 | */ |
||
| 1905 | public function setTickPixelInterval($tickPixelInterval) { |
||
| 1909 | |||
| 1910 | /** |
||
| 1911 | * Set the tick position. |
||
| 1912 | * |
||
| 1913 | * @param string $tickPosition The tick position. |
||
| 1914 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1915 | */ |
||
| 1916 | public function setTickPosition($tickPosition) { |
||
| 1925 | |||
| 1926 | /** |
||
| 1927 | * Set the tick positioner. |
||
| 1928 | * |
||
| 1929 | * @param string $tickPositioner The tick positioner. |
||
| 1930 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1931 | */ |
||
| 1932 | public function setTickPositioner($tickPositioner) { |
||
| 1936 | |||
| 1937 | /** |
||
| 1938 | * Set the tick positions. |
||
| 1939 | * |
||
| 1940 | * @param array $tickPositions The tick positions. |
||
| 1941 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1942 | */ |
||
| 1943 | public function setTickPositions(array $tickPositions = null) { |
||
| 1947 | |||
| 1948 | /** |
||
| 1949 | * Set the tick width. |
||
| 1950 | * |
||
| 1951 | * @param integer $tickWidth The tick width. |
||
| 1952 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1953 | */ |
||
| 1954 | public function setTickWidth($tickWidth) { |
||
| 1958 | |||
| 1959 | /** |
||
| 1960 | * Set the tickmark placement. |
||
| 1961 | * |
||
| 1962 | * @param string $tickmarkPlacement The tickmark placement. |
||
| 1963 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1964 | */ |
||
| 1965 | public function setTickmarkPlacement($tickmarkPlacement) { |
||
| 1975 | |||
| 1976 | /** |
||
| 1977 | * Set the title. |
||
| 1978 | * |
||
| 1979 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\HighchartsTitle $title The title. |
||
| 1980 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1981 | */ |
||
| 1982 | public function setTitle(\WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\HighchartsTitle $title = null) { |
||
| 1986 | |||
| 1987 | /** |
||
| 1988 | * Set the type. |
||
| 1989 | * |
||
| 1990 | * @param string $type The type. |
||
| 1991 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 1992 | */ |
||
| 1993 | public function setType($type) { |
||
| 2004 | |||
| 2005 | /** |
||
| 2006 | * Set the unique names. |
||
| 2007 | * |
||
| 2008 | * @param boolean $uniqueNames The unique names. |
||
| 2009 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 2010 | */ |
||
| 2011 | public function setUniqueNames($uniqueNames) { |
||
| 2015 | |||
| 2016 | /** |
||
| 2017 | * Set the units. |
||
| 2018 | * |
||
| 2019 | * @param array $units The units. |
||
| 2020 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 2021 | */ |
||
| 2022 | public function setUnits(array $units = null) { |
||
| 2026 | |||
| 2027 | /** |
||
| 2028 | * Set the visible. |
||
| 2029 | * |
||
| 2030 | * @param boolean $visible The visible. |
||
| 2031 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis Returns the highcharts z axis. |
||
| 2032 | */ |
||
| 2033 | public function setVisible($visible) { |
||
| 2037 | |||
| 2038 | /** |
||
| 2039 | * Convert into an array representing this instance. |
||
| 2040 | * |
||
| 2041 | * @return array Returns an array representing this instance. |
||
| 2042 | */ |
||
| 2043 | public function toArray() { |
||
| 2245 | |||
| 2246 | } |
||
| 2247 |
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..