Complex classes like HighchartsXAxis 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 HighchartsXAxis, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 25 | final class HighchartsXAxis 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 | * Breaks. |
||
| 44 | * |
||
| 45 | * @var array |
||
| 46 | * @since 4.1.0 |
||
| 47 | */ |
||
| 48 | private $breaks; |
||
| 49 | |||
| 50 | /** |
||
| 51 | * Categories. |
||
| 52 | * |
||
| 53 | * @var array |
||
| 54 | */ |
||
| 55 | private $categories; |
||
| 56 | |||
| 57 | /** |
||
| 58 | * Ceiling. |
||
| 59 | * |
||
| 60 | * @var integer |
||
| 61 | * @since 4.0 |
||
| 62 | */ |
||
| 63 | private $ceiling; |
||
| 64 | |||
| 65 | /** |
||
| 66 | * Class name. |
||
| 67 | * |
||
| 68 | * @var string |
||
| 69 | * @since 5.0.0 |
||
| 70 | */ |
||
| 71 | private $className; |
||
| 72 | |||
| 73 | /** |
||
| 74 | * Crosshair. |
||
| 75 | * |
||
| 76 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\XAxis\HighchartsCrosshair |
||
| 77 | * @since 4.1 |
||
| 78 | */ |
||
| 79 | private $crosshair; |
||
| 80 | |||
| 81 | /** |
||
| 82 | * Date time label formats. |
||
| 83 | * |
||
| 84 | * @var array |
||
| 85 | */ |
||
| 86 | private $dateTimeLabelFormats; |
||
| 87 | |||
| 88 | /** |
||
| 89 | * Description. |
||
| 90 | * |
||
| 91 | * @var string |
||
| 92 | * @since 5.0.0 |
||
| 93 | */ |
||
| 94 | private $description; |
||
| 95 | |||
| 96 | /** |
||
| 97 | * End on tick. |
||
| 98 | * |
||
| 99 | * @var boolean |
||
| 100 | * @since 1.2.0 |
||
| 101 | */ |
||
| 102 | private $endOnTick = false; |
||
| 103 | |||
| 104 | /** |
||
| 105 | * Events. |
||
| 106 | * |
||
| 107 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\XAxis\HighchartsEvents |
||
| 108 | */ |
||
| 109 | private $events; |
||
| 110 | |||
| 111 | /** |
||
| 112 | * Floor. |
||
| 113 | * |
||
| 114 | * @var integer |
||
| 115 | * @since 4.0 |
||
| 116 | */ |
||
| 117 | private $floor; |
||
| 118 | |||
| 119 | /** |
||
| 120 | * Grid line color. |
||
| 121 | * |
||
| 122 | * @var string |
||
| 123 | */ |
||
| 124 | private $gridLineColor = "#e6e6e6"; |
||
| 125 | |||
| 126 | /** |
||
| 127 | * Grid line dash style. |
||
| 128 | * |
||
| 129 | * @var string |
||
| 130 | * @since 1.2 |
||
| 131 | */ |
||
| 132 | private $gridLineDashStyle = "Solid"; |
||
| 133 | |||
| 134 | /** |
||
| 135 | * Grid line width. |
||
| 136 | * |
||
| 137 | * @var integer |
||
| 138 | */ |
||
| 139 | private $gridLineWidth = 0; |
||
| 140 | |||
| 141 | /** |
||
| 142 | * Grid z index. |
||
| 143 | * |
||
| 144 | * @var integer |
||
| 145 | */ |
||
| 146 | private $gridZIndex = 1; |
||
| 147 | |||
| 148 | /** |
||
| 149 | * Id. |
||
| 150 | * |
||
| 151 | * @var string |
||
| 152 | * @since 1.2.0 |
||
| 153 | */ |
||
| 154 | private $id; |
||
| 155 | |||
| 156 | /** |
||
| 157 | * Labels. |
||
| 158 | * |
||
| 159 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\XAxis\HighchartsLabels |
||
| 160 | */ |
||
| 161 | private $labels; |
||
| 162 | |||
| 163 | /** |
||
| 164 | * Line color. |
||
| 165 | * |
||
| 166 | * @var string |
||
| 167 | */ |
||
| 168 | private $lineColor = "#ccd6eb"; |
||
| 169 | |||
| 170 | /** |
||
| 171 | * Line width. |
||
| 172 | * |
||
| 173 | * @var integer |
||
| 174 | */ |
||
| 175 | private $lineWidth = 1; |
||
| 176 | |||
| 177 | /** |
||
| 178 | * Linked to. |
||
| 179 | * |
||
| 180 | * @var integer |
||
| 181 | * @since 2.0.2 |
||
| 182 | */ |
||
| 183 | private $linkedTo; |
||
| 184 | |||
| 185 | /** |
||
| 186 | * Max. |
||
| 187 | * |
||
| 188 | * @var integer |
||
| 189 | */ |
||
| 190 | private $max; |
||
| 191 | |||
| 192 | /** |
||
| 193 | * Max padding. |
||
| 194 | * |
||
| 195 | * @var integer |
||
| 196 | * @since 1.2.0 |
||
| 197 | */ |
||
| 198 | private $maxPadding = 0.01; |
||
| 199 | |||
| 200 | /** |
||
| 201 | * Max zoom. |
||
| 202 | * |
||
| 203 | * @var integer |
||
| 204 | * @deprecated |
||
| 205 | */ |
||
| 206 | private $maxZoom; |
||
| 207 | |||
| 208 | /** |
||
| 209 | * Min. |
||
| 210 | * |
||
| 211 | * @var integer |
||
| 212 | */ |
||
| 213 | private $min; |
||
| 214 | |||
| 215 | /** |
||
| 216 | * Min padding. |
||
| 217 | * |
||
| 218 | * @var integer |
||
| 219 | * @since 1.2.0 |
||
| 220 | */ |
||
| 221 | private $minPadding = 0.01; |
||
| 222 | |||
| 223 | /** |
||
| 224 | * Min range. |
||
| 225 | * |
||
| 226 | * @var integer |
||
| 227 | */ |
||
| 228 | private $minRange; |
||
| 229 | |||
| 230 | /** |
||
| 231 | * Min tick interval. |
||
| 232 | * |
||
| 233 | * @var integer |
||
| 234 | * @since 2.3.0 |
||
| 235 | */ |
||
| 236 | private $minTickInterval; |
||
| 237 | |||
| 238 | /** |
||
| 239 | * Minor grid line color. |
||
| 240 | * |
||
| 241 | * @var string |
||
| 242 | */ |
||
| 243 | private $minorGridLineColor = "#f2f2f2"; |
||
| 244 | |||
| 245 | /** |
||
| 246 | * Minor grid line dash style. |
||
| 247 | * |
||
| 248 | * @var string |
||
| 249 | * @since 1.2 |
||
| 250 | */ |
||
| 251 | private $minorGridLineDashStyle = "Solid"; |
||
| 252 | |||
| 253 | /** |
||
| 254 | * Minor grid line width. |
||
| 255 | * |
||
| 256 | * @var integer |
||
| 257 | */ |
||
| 258 | private $minorGridLineWidth = 1; |
||
| 259 | |||
| 260 | /** |
||
| 261 | * Minor tick color. |
||
| 262 | * |
||
| 263 | * @var string |
||
| 264 | */ |
||
| 265 | private $minorTickColor = "#999999"; |
||
| 266 | |||
| 267 | /** |
||
| 268 | * Minor tick interval. |
||
| 269 | * |
||
| 270 | * @var string|integer |
||
| 271 | */ |
||
| 272 | private $minorTickInterval; |
||
| 273 | |||
| 274 | /** |
||
| 275 | * Minor tick length. |
||
| 276 | * |
||
| 277 | * @var integer |
||
| 278 | */ |
||
| 279 | private $minorTickLength = 2; |
||
| 280 | |||
| 281 | /** |
||
| 282 | * Minor tick position. |
||
| 283 | * |
||
| 284 | * @var string |
||
| 285 | */ |
||
| 286 | private $minorTickPosition = "outside"; |
||
| 287 | |||
| 288 | /** |
||
| 289 | * Minor tick width. |
||
| 290 | * |
||
| 291 | * @var integer |
||
| 292 | */ |
||
| 293 | private $minorTickWidth = 0; |
||
| 294 | |||
| 295 | /** |
||
| 296 | * Offset. |
||
| 297 | * |
||
| 298 | * @var integer |
||
| 299 | */ |
||
| 300 | private $offset = 0; |
||
| 301 | |||
| 302 | /** |
||
| 303 | * Opposite. |
||
| 304 | * |
||
| 305 | * @var boolean |
||
| 306 | */ |
||
| 307 | private $opposite = false; |
||
| 308 | |||
| 309 | /** |
||
| 310 | * Plot bands. |
||
| 311 | * |
||
| 312 | * @var array |
||
| 313 | */ |
||
| 314 | private $plotBands; |
||
| 315 | |||
| 316 | /** |
||
| 317 | * Plot lines. |
||
| 318 | * |
||
| 319 | * @var array |
||
| 320 | */ |
||
| 321 | private $plotLines; |
||
| 322 | |||
| 323 | /** |
||
| 324 | * Reversed. |
||
| 325 | * |
||
| 326 | * @var boolean |
||
| 327 | */ |
||
| 328 | private $reversed = false; |
||
| 329 | |||
| 330 | /** |
||
| 331 | * Show empty. |
||
| 332 | * |
||
| 333 | * @var boolean |
||
| 334 | * @since 1.1 |
||
| 335 | */ |
||
| 336 | private $showEmpty = true; |
||
| 337 | |||
| 338 | /** |
||
| 339 | * Show first label. |
||
| 340 | * |
||
| 341 | * @var boolean |
||
| 342 | */ |
||
| 343 | private $showFirstLabel = true; |
||
| 344 | |||
| 345 | /** |
||
| 346 | * Show last label. |
||
| 347 | * |
||
| 348 | * @var boolean |
||
| 349 | */ |
||
| 350 | private $showLastLabel = true; |
||
| 351 | |||
| 352 | /** |
||
| 353 | * Soft max. |
||
| 354 | * |
||
| 355 | * @var integer |
||
| 356 | * @since 5.0.1 |
||
| 357 | */ |
||
| 358 | private $softMax; |
||
| 359 | |||
| 360 | /** |
||
| 361 | * Soft min. |
||
| 362 | * |
||
| 363 | * @var integer |
||
| 364 | * @since 5.0.1 |
||
| 365 | */ |
||
| 366 | private $softMin; |
||
| 367 | |||
| 368 | /** |
||
| 369 | * Start of week. |
||
| 370 | * |
||
| 371 | * @var integer |
||
| 372 | */ |
||
| 373 | private $startOfWeek = 1; |
||
| 374 | |||
| 375 | /** |
||
| 376 | * Start on tick. |
||
| 377 | * |
||
| 378 | * @var boolean |
||
| 379 | * @since 1.2.0 |
||
| 380 | */ |
||
| 381 | private $startOnTick = false; |
||
| 382 | |||
| 383 | /** |
||
| 384 | * Tick amount. |
||
| 385 | * |
||
| 386 | * @var integer |
||
| 387 | * @since 4.1.0 |
||
| 388 | */ |
||
| 389 | private $tickAmount; |
||
| 390 | |||
| 391 | /** |
||
| 392 | * Tick color. |
||
| 393 | * |
||
| 394 | * @var string |
||
| 395 | */ |
||
| 396 | private $tickColor = "#ccd6eb"; |
||
| 397 | |||
| 398 | /** |
||
| 399 | * Tick interval. |
||
| 400 | * |
||
| 401 | * @var integer |
||
| 402 | */ |
||
| 403 | private $tickInterval; |
||
| 404 | |||
| 405 | /** |
||
| 406 | * Tick length. |
||
| 407 | * |
||
| 408 | * @var integer |
||
| 409 | */ |
||
| 410 | private $tickLength = 10; |
||
| 411 | |||
| 412 | /** |
||
| 413 | * Tick pixel interval. |
||
| 414 | * |
||
| 415 | * @var integer |
||
| 416 | */ |
||
| 417 | private $tickPixelInterval; |
||
| 418 | |||
| 419 | /** |
||
| 420 | * Tick position. |
||
| 421 | * |
||
| 422 | * @var string |
||
| 423 | */ |
||
| 424 | private $tickPosition = "outside"; |
||
| 425 | |||
| 426 | /** |
||
| 427 | * Tick positioner. |
||
| 428 | * |
||
| 429 | * @var string |
||
| 430 | */ |
||
| 431 | private $tickPositioner; |
||
| 432 | |||
| 433 | /** |
||
| 434 | * Tick positions. |
||
| 435 | * |
||
| 436 | * @var array |
||
| 437 | */ |
||
| 438 | private $tickPositions; |
||
| 439 | |||
| 440 | /** |
||
| 441 | * Tick width. |
||
| 442 | * |
||
| 443 | * @var integer |
||
| 444 | */ |
||
| 445 | private $tickWidth = 1; |
||
| 446 | |||
| 447 | /** |
||
| 448 | * Tickmark placement. |
||
| 449 | * |
||
| 450 | * @var string |
||
| 451 | */ |
||
| 452 | private $tickmarkPlacement; |
||
| 453 | |||
| 454 | /** |
||
| 455 | * Title. |
||
| 456 | * |
||
| 457 | * @var \WBW\Bundle\HighchartsBundle\API\Chart\XAxis\HighchartsTitle |
||
| 458 | */ |
||
| 459 | private $title; |
||
| 460 | |||
| 461 | /** |
||
| 462 | * Type. |
||
| 463 | * |
||
| 464 | * @var string |
||
| 465 | */ |
||
| 466 | private $type = "linear"; |
||
| 467 | |||
| 468 | /** |
||
| 469 | * Unique names. |
||
| 470 | * |
||
| 471 | * @var boolean |
||
| 472 | * @since 4.2.7 |
||
| 473 | */ |
||
| 474 | private $uniqueNames = true; |
||
| 475 | |||
| 476 | /** |
||
| 477 | * Units. |
||
| 478 | * |
||
| 479 | * @var array |
||
| 480 | */ |
||
| 481 | private $units; |
||
| 482 | |||
| 483 | /** |
||
| 484 | * Visible. |
||
| 485 | * |
||
| 486 | * @var boolean |
||
| 487 | * @since 4.1.9 |
||
| 488 | */ |
||
| 489 | private $visible = true; |
||
| 490 | |||
| 491 | /** |
||
| 492 | * Constructor. |
||
| 493 | * |
||
| 494 | * @param boolean $ignoreDefaultValues Ignore the default values. |
||
| 495 | */ |
||
| 496 | public function __construct($ignoreDefaultValues = true) { |
||
| 501 | |||
| 502 | /** |
||
| 503 | * Clear. |
||
| 504 | * |
||
| 505 | * @return void |
||
| 506 | */ |
||
| 507 | public function clear() { |
||
| 706 | |||
| 707 | /** |
||
| 708 | * Get the allow decimals. |
||
| 709 | * |
||
| 710 | * @return boolean Returns the allow decimals. |
||
| 711 | */ |
||
| 712 | public function getAllowDecimals() { |
||
| 715 | |||
| 716 | /** |
||
| 717 | * Get the alternate grid color. |
||
| 718 | * |
||
| 719 | * @return string Returns the alternate grid color. |
||
| 720 | */ |
||
| 721 | public function getAlternateGridColor() { |
||
| 724 | |||
| 725 | /** |
||
| 726 | * Get the breaks. |
||
| 727 | * |
||
| 728 | * @return array Returns the breaks. |
||
| 729 | */ |
||
| 730 | public function getBreaks() { |
||
| 733 | |||
| 734 | /** |
||
| 735 | * Get the categories. |
||
| 736 | * |
||
| 737 | * @return array Returns the categories. |
||
| 738 | */ |
||
| 739 | public function getCategories() { |
||
| 742 | |||
| 743 | /** |
||
| 744 | * Get the ceiling. |
||
| 745 | * |
||
| 746 | * @return integer Returns the ceiling. |
||
| 747 | */ |
||
| 748 | public function getCeiling() { |
||
| 751 | |||
| 752 | /** |
||
| 753 | * Get the class name. |
||
| 754 | * |
||
| 755 | * @return string Returns the class name. |
||
| 756 | */ |
||
| 757 | public function getClassName() { |
||
| 760 | |||
| 761 | /** |
||
| 762 | * Get the crosshair. |
||
| 763 | * |
||
| 764 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\XAxis\HighchartsCrosshair Returns the crosshair. |
||
| 765 | */ |
||
| 766 | public function getCrosshair() { |
||
| 769 | |||
| 770 | /** |
||
| 771 | * Get the date time label formats. |
||
| 772 | * |
||
| 773 | * @return array Returns the date time label formats. |
||
| 774 | */ |
||
| 775 | public function getDateTimeLabelFormats() { |
||
| 778 | |||
| 779 | /** |
||
| 780 | * Get the description. |
||
| 781 | * |
||
| 782 | * @return string Returns the description. |
||
| 783 | */ |
||
| 784 | public function getDescription() { |
||
| 787 | |||
| 788 | /** |
||
| 789 | * Get the end on tick. |
||
| 790 | * |
||
| 791 | * @return boolean Returns the end on tick. |
||
| 792 | */ |
||
| 793 | public function getEndOnTick() { |
||
| 796 | |||
| 797 | /** |
||
| 798 | * Get the events. |
||
| 799 | * |
||
| 800 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\XAxis\HighchartsEvents Returns the events. |
||
| 801 | */ |
||
| 802 | public function getEvents() { |
||
| 805 | |||
| 806 | /** |
||
| 807 | * Get the floor. |
||
| 808 | * |
||
| 809 | * @return integer Returns the floor. |
||
| 810 | */ |
||
| 811 | public function getFloor() { |
||
| 814 | |||
| 815 | /** |
||
| 816 | * Get the grid line color. |
||
| 817 | * |
||
| 818 | * @return string Returns the grid line color. |
||
| 819 | */ |
||
| 820 | public function getGridLineColor() { |
||
| 823 | |||
| 824 | /** |
||
| 825 | * Get the grid line dash style. |
||
| 826 | * |
||
| 827 | * @return string Returns the grid line dash style. |
||
| 828 | */ |
||
| 829 | public function getGridLineDashStyle() { |
||
| 832 | |||
| 833 | /** |
||
| 834 | * Get the grid line width. |
||
| 835 | * |
||
| 836 | * @return integer Returns the grid line width. |
||
| 837 | */ |
||
| 838 | public function getGridLineWidth() { |
||
| 841 | |||
| 842 | /** |
||
| 843 | * Get the grid z index. |
||
| 844 | * |
||
| 845 | * @return integer Returns the grid z index. |
||
| 846 | */ |
||
| 847 | public function getGridZIndex() { |
||
| 850 | |||
| 851 | /** |
||
| 852 | * Get the id. |
||
| 853 | * |
||
| 854 | * @return string Returns the id. |
||
| 855 | */ |
||
| 856 | public function getId() { |
||
| 859 | |||
| 860 | /** |
||
| 861 | * Get the labels. |
||
| 862 | * |
||
| 863 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\XAxis\HighchartsLabels Returns the labels. |
||
| 864 | */ |
||
| 865 | public function getLabels() { |
||
| 868 | |||
| 869 | /** |
||
| 870 | * Get the line color. |
||
| 871 | * |
||
| 872 | * @return string Returns the line color. |
||
| 873 | */ |
||
| 874 | public function getLineColor() { |
||
| 877 | |||
| 878 | /** |
||
| 879 | * Get the line width. |
||
| 880 | * |
||
| 881 | * @return integer Returns the line width. |
||
| 882 | */ |
||
| 883 | public function getLineWidth() { |
||
| 886 | |||
| 887 | /** |
||
| 888 | * Get the linked to. |
||
| 889 | * |
||
| 890 | * @return integer Returns the linked to. |
||
| 891 | */ |
||
| 892 | public function getLinkedTo() { |
||
| 895 | |||
| 896 | /** |
||
| 897 | * Get the max. |
||
| 898 | * |
||
| 899 | * @return integer Returns the max. |
||
| 900 | */ |
||
| 901 | public function getMax() { |
||
| 904 | |||
| 905 | /** |
||
| 906 | * Get the max padding. |
||
| 907 | * |
||
| 908 | * @return integer Returns the max padding. |
||
| 909 | */ |
||
| 910 | public function getMaxPadding() { |
||
| 913 | |||
| 914 | /** |
||
| 915 | * Get the max zoom. |
||
| 916 | * |
||
| 917 | * @return integer Returns the max zoom. |
||
| 918 | * @deprecated |
||
| 919 | */ |
||
| 920 | public function getMaxZoom() { |
||
| 923 | |||
| 924 | /** |
||
| 925 | * Get the min. |
||
| 926 | * |
||
| 927 | * @return integer Returns the min. |
||
| 928 | */ |
||
| 929 | public function getMin() { |
||
| 932 | |||
| 933 | /** |
||
| 934 | * Get the min padding. |
||
| 935 | * |
||
| 936 | * @return integer Returns the min padding. |
||
| 937 | */ |
||
| 938 | public function getMinPadding() { |
||
| 941 | |||
| 942 | /** |
||
| 943 | * Get the min range. |
||
| 944 | * |
||
| 945 | * @return integer Returns the min range. |
||
| 946 | */ |
||
| 947 | public function getMinRange() { |
||
| 950 | |||
| 951 | /** |
||
| 952 | * Get the min tick interval. |
||
| 953 | * |
||
| 954 | * @return integer Returns the min tick interval. |
||
| 955 | */ |
||
| 956 | public function getMinTickInterval() { |
||
| 959 | |||
| 960 | /** |
||
| 961 | * Get the minor grid line color. |
||
| 962 | * |
||
| 963 | * @return string Returns the minor grid line color. |
||
| 964 | */ |
||
| 965 | public function getMinorGridLineColor() { |
||
| 968 | |||
| 969 | /** |
||
| 970 | * Get the minor grid line dash style. |
||
| 971 | * |
||
| 972 | * @return string Returns the minor grid line dash style. |
||
| 973 | */ |
||
| 974 | public function getMinorGridLineDashStyle() { |
||
| 977 | |||
| 978 | /** |
||
| 979 | * Get the minor grid line width. |
||
| 980 | * |
||
| 981 | * @return integer Returns the minor grid line width. |
||
| 982 | */ |
||
| 983 | public function getMinorGridLineWidth() { |
||
| 986 | |||
| 987 | /** |
||
| 988 | * Get the minor tick color. |
||
| 989 | * |
||
| 990 | * @return string Returns the minor tick color. |
||
| 991 | */ |
||
| 992 | public function getMinorTickColor() { |
||
| 995 | |||
| 996 | /** |
||
| 997 | * Get the minor tick interval. |
||
| 998 | * |
||
| 999 | * @return string|integer Returns the minor tick interval. |
||
| 1000 | */ |
||
| 1001 | public function getMinorTickInterval() { |
||
| 1004 | |||
| 1005 | /** |
||
| 1006 | * Get the minor tick length. |
||
| 1007 | * |
||
| 1008 | * @return integer Returns the minor tick length. |
||
| 1009 | */ |
||
| 1010 | public function getMinorTickLength() { |
||
| 1013 | |||
| 1014 | /** |
||
| 1015 | * Get the minor tick position. |
||
| 1016 | * |
||
| 1017 | * @return string Returns the minor tick position. |
||
| 1018 | */ |
||
| 1019 | public function getMinorTickPosition() { |
||
| 1022 | |||
| 1023 | /** |
||
| 1024 | * Get the minor tick width. |
||
| 1025 | * |
||
| 1026 | * @return integer Returns the minor tick width. |
||
| 1027 | */ |
||
| 1028 | public function getMinorTickWidth() { |
||
| 1031 | |||
| 1032 | /** |
||
| 1033 | * Get the offset. |
||
| 1034 | * |
||
| 1035 | * @return integer Returns the offset. |
||
| 1036 | */ |
||
| 1037 | public function getOffset() { |
||
| 1040 | |||
| 1041 | /** |
||
| 1042 | * Get the opposite. |
||
| 1043 | * |
||
| 1044 | * @return boolean Returns the opposite. |
||
| 1045 | */ |
||
| 1046 | public function getOpposite() { |
||
| 1049 | |||
| 1050 | /** |
||
| 1051 | * Get the plot bands. |
||
| 1052 | * |
||
| 1053 | * @return array Returns the plot bands. |
||
| 1054 | */ |
||
| 1055 | public function getPlotBands() { |
||
| 1058 | |||
| 1059 | /** |
||
| 1060 | * Get the plot lines. |
||
| 1061 | * |
||
| 1062 | * @return array Returns the plot lines. |
||
| 1063 | */ |
||
| 1064 | public function getPlotLines() { |
||
| 1067 | |||
| 1068 | /** |
||
| 1069 | * Get the reversed. |
||
| 1070 | * |
||
| 1071 | * @return boolean Returns the reversed. |
||
| 1072 | */ |
||
| 1073 | public function getReversed() { |
||
| 1076 | |||
| 1077 | /** |
||
| 1078 | * Get the show empty. |
||
| 1079 | * |
||
| 1080 | * @return boolean Returns the show empty. |
||
| 1081 | */ |
||
| 1082 | public function getShowEmpty() { |
||
| 1085 | |||
| 1086 | /** |
||
| 1087 | * Get the show first label. |
||
| 1088 | * |
||
| 1089 | * @return boolean Returns the show first label. |
||
| 1090 | */ |
||
| 1091 | public function getShowFirstLabel() { |
||
| 1094 | |||
| 1095 | /** |
||
| 1096 | * Get the show last label. |
||
| 1097 | * |
||
| 1098 | * @return boolean Returns the show last label. |
||
| 1099 | */ |
||
| 1100 | public function getShowLastLabel() { |
||
| 1103 | |||
| 1104 | /** |
||
| 1105 | * Get the soft max. |
||
| 1106 | * |
||
| 1107 | * @return integer Returns the soft max. |
||
| 1108 | */ |
||
| 1109 | public function getSoftMax() { |
||
| 1112 | |||
| 1113 | /** |
||
| 1114 | * Get the soft min. |
||
| 1115 | * |
||
| 1116 | * @return integer Returns the soft min. |
||
| 1117 | */ |
||
| 1118 | public function getSoftMin() { |
||
| 1121 | |||
| 1122 | /** |
||
| 1123 | * Get the start of week. |
||
| 1124 | * |
||
| 1125 | * @return integer Returns the start of week. |
||
| 1126 | */ |
||
| 1127 | public function getStartOfWeek() { |
||
| 1130 | |||
| 1131 | /** |
||
| 1132 | * Get the start on tick. |
||
| 1133 | * |
||
| 1134 | * @return boolean Returns the start on tick. |
||
| 1135 | */ |
||
| 1136 | public function getStartOnTick() { |
||
| 1139 | |||
| 1140 | /** |
||
| 1141 | * Get the tick amount. |
||
| 1142 | * |
||
| 1143 | * @return integer Returns the tick amount. |
||
| 1144 | */ |
||
| 1145 | public function getTickAmount() { |
||
| 1148 | |||
| 1149 | /** |
||
| 1150 | * Get the tick color. |
||
| 1151 | * |
||
| 1152 | * @return string Returns the tick color. |
||
| 1153 | */ |
||
| 1154 | public function getTickColor() { |
||
| 1157 | |||
| 1158 | /** |
||
| 1159 | * Get the tick interval. |
||
| 1160 | * |
||
| 1161 | * @return integer Returns the tick interval. |
||
| 1162 | */ |
||
| 1163 | public function getTickInterval() { |
||
| 1166 | |||
| 1167 | /** |
||
| 1168 | * Get the tick length. |
||
| 1169 | * |
||
| 1170 | * @return integer Returns the tick length. |
||
| 1171 | */ |
||
| 1172 | public function getTickLength() { |
||
| 1175 | |||
| 1176 | /** |
||
| 1177 | * Get the tick pixel interval. |
||
| 1178 | * |
||
| 1179 | * @return integer Returns the tick pixel interval. |
||
| 1180 | */ |
||
| 1181 | public function getTickPixelInterval() { |
||
| 1184 | |||
| 1185 | /** |
||
| 1186 | * Get the tick position. |
||
| 1187 | * |
||
| 1188 | * @return string Returns the tick position. |
||
| 1189 | */ |
||
| 1190 | public function getTickPosition() { |
||
| 1193 | |||
| 1194 | /** |
||
| 1195 | * Get the tick positioner. |
||
| 1196 | * |
||
| 1197 | * @return string Returns the tick positioner. |
||
| 1198 | */ |
||
| 1199 | public function getTickPositioner() { |
||
| 1202 | |||
| 1203 | /** |
||
| 1204 | * Get the tick positions. |
||
| 1205 | * |
||
| 1206 | * @return array Returns the tick positions. |
||
| 1207 | */ |
||
| 1208 | public function getTickPositions() { |
||
| 1211 | |||
| 1212 | /** |
||
| 1213 | * Get the tick width. |
||
| 1214 | * |
||
| 1215 | * @return integer Returns the tick width. |
||
| 1216 | */ |
||
| 1217 | public function getTickWidth() { |
||
| 1220 | |||
| 1221 | /** |
||
| 1222 | * Get the tickmark placement. |
||
| 1223 | * |
||
| 1224 | * @return string Returns the tickmark placement. |
||
| 1225 | */ |
||
| 1226 | public function getTickmarkPlacement() { |
||
| 1229 | |||
| 1230 | /** |
||
| 1231 | * Get the title. |
||
| 1232 | * |
||
| 1233 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\XAxis\HighchartsTitle Returns the title. |
||
| 1234 | */ |
||
| 1235 | public function getTitle() { |
||
| 1238 | |||
| 1239 | /** |
||
| 1240 | * Get the type. |
||
| 1241 | * |
||
| 1242 | * @return string Returns the type. |
||
| 1243 | */ |
||
| 1244 | public function getType() { |
||
| 1247 | |||
| 1248 | /** |
||
| 1249 | * Get the unique names. |
||
| 1250 | * |
||
| 1251 | * @return boolean Returns the unique names. |
||
| 1252 | */ |
||
| 1253 | public function getUniqueNames() { |
||
| 1256 | |||
| 1257 | /** |
||
| 1258 | * Get the units. |
||
| 1259 | * |
||
| 1260 | * @return array Returns the units. |
||
| 1261 | */ |
||
| 1262 | public function getUnits() { |
||
| 1265 | |||
| 1266 | /** |
||
| 1267 | * Get the visible. |
||
| 1268 | * |
||
| 1269 | * @return boolean Returns the visible. |
||
| 1270 | */ |
||
| 1271 | public function getVisible() { |
||
| 1274 | |||
| 1275 | /** |
||
| 1276 | * Serialize this instance. |
||
| 1277 | * |
||
| 1278 | * @return array Returns an array representing this instance. |
||
| 1279 | */ |
||
| 1280 | public function jsonSerialize() { |
||
| 1283 | |||
| 1284 | /** |
||
| 1285 | * Create a new crosshair. |
||
| 1286 | * |
||
| 1287 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\XAxis\HighchartsCrosshair Returns the crosshair. |
||
| 1288 | */ |
||
| 1289 | public function newCrosshair() { |
||
| 1293 | |||
| 1294 | /** |
||
| 1295 | * Create a new events. |
||
| 1296 | * |
||
| 1297 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\XAxis\HighchartsEvents Returns the events. |
||
| 1298 | */ |
||
| 1299 | public function newEvents() { |
||
| 1303 | |||
| 1304 | /** |
||
| 1305 | * Create a new labels. |
||
| 1306 | * |
||
| 1307 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\XAxis\HighchartsLabels Returns the labels. |
||
| 1308 | */ |
||
| 1309 | public function newLabels() { |
||
| 1313 | |||
| 1314 | /** |
||
| 1315 | * Create a new title. |
||
| 1316 | * |
||
| 1317 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\XAxis\HighchartsTitle Returns the title. |
||
| 1318 | */ |
||
| 1319 | public function newTitle() { |
||
| 1323 | |||
| 1324 | /** |
||
| 1325 | * Set the allow decimals. |
||
| 1326 | * |
||
| 1327 | * @param boolean $allowDecimals The allow decimals. |
||
| 1328 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1329 | */ |
||
| 1330 | public function setAllowDecimals($allowDecimals) { |
||
| 1334 | |||
| 1335 | /** |
||
| 1336 | * Set the alternate grid color. |
||
| 1337 | * |
||
| 1338 | * @param string $alternateGridColor The alternate grid color. |
||
| 1339 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1340 | */ |
||
| 1341 | public function setAlternateGridColor($alternateGridColor) { |
||
| 1345 | |||
| 1346 | /** |
||
| 1347 | * Set the breaks. |
||
| 1348 | * |
||
| 1349 | * @param array $breaks The breaks. |
||
| 1350 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1351 | */ |
||
| 1352 | public function setBreaks(array $breaks = null) { |
||
| 1356 | |||
| 1357 | /** |
||
| 1358 | * Set the categories. |
||
| 1359 | * |
||
| 1360 | * @param array $categories The categories. |
||
| 1361 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1362 | */ |
||
| 1363 | public function setCategories(array $categories = null) { |
||
| 1367 | |||
| 1368 | /** |
||
| 1369 | * Set the ceiling. |
||
| 1370 | * |
||
| 1371 | * @param integer $ceiling The ceiling. |
||
| 1372 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1373 | */ |
||
| 1374 | public function setCeiling($ceiling) { |
||
| 1378 | |||
| 1379 | /** |
||
| 1380 | * Set the class name. |
||
| 1381 | * |
||
| 1382 | * @param string $className The class name. |
||
| 1383 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1384 | */ |
||
| 1385 | public function setClassName($className) { |
||
| 1389 | |||
| 1390 | /** |
||
| 1391 | * Set the crosshair. |
||
| 1392 | * |
||
| 1393 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\XAxis\HighchartsCrosshair $crosshair The crosshair. |
||
| 1394 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1395 | */ |
||
| 1396 | public function setCrosshair(\WBW\Bundle\HighchartsBundle\API\Chart\XAxis\HighchartsCrosshair $crosshair = null) { |
||
| 1400 | |||
| 1401 | /** |
||
| 1402 | * Set the date time label formats. |
||
| 1403 | * |
||
| 1404 | * @param array $dateTimeLabelFormats The date time label formats. |
||
| 1405 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1406 | */ |
||
| 1407 | public function setDateTimeLabelFormats(array $dateTimeLabelFormats = null) { |
||
| 1411 | |||
| 1412 | /** |
||
| 1413 | * Set the description. |
||
| 1414 | * |
||
| 1415 | * @param string $description The description. |
||
| 1416 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1417 | */ |
||
| 1418 | public function setDescription($description) { |
||
| 1422 | |||
| 1423 | /** |
||
| 1424 | * Set the end on tick. |
||
| 1425 | * |
||
| 1426 | * @param boolean $endOnTick The end on tick. |
||
| 1427 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1428 | */ |
||
| 1429 | public function setEndOnTick($endOnTick) { |
||
| 1433 | |||
| 1434 | /** |
||
| 1435 | * Set the events. |
||
| 1436 | * |
||
| 1437 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\XAxis\HighchartsEvents $events The events. |
||
| 1438 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1439 | */ |
||
| 1440 | public function setEvents(\WBW\Bundle\HighchartsBundle\API\Chart\XAxis\HighchartsEvents $events = null) { |
||
| 1444 | |||
| 1445 | /** |
||
| 1446 | * Set the floor. |
||
| 1447 | * |
||
| 1448 | * @param integer $floor The floor. |
||
| 1449 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1450 | */ |
||
| 1451 | public function setFloor($floor) { |
||
| 1455 | |||
| 1456 | /** |
||
| 1457 | * Set the grid line color. |
||
| 1458 | * |
||
| 1459 | * @param string $gridLineColor The grid line color. |
||
| 1460 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1461 | */ |
||
| 1462 | public function setGridLineColor($gridLineColor) { |
||
| 1466 | |||
| 1467 | /** |
||
| 1468 | * Set the grid line dash style. |
||
| 1469 | * |
||
| 1470 | * @param string $gridLineDashStyle The grid line dash style. |
||
| 1471 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1472 | */ |
||
| 1473 | public function setGridLineDashStyle($gridLineDashStyle) { |
||
| 1491 | |||
| 1492 | /** |
||
| 1493 | * Set the grid line width. |
||
| 1494 | * |
||
| 1495 | * @param integer $gridLineWidth The grid line width. |
||
| 1496 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1497 | */ |
||
| 1498 | public function setGridLineWidth($gridLineWidth) { |
||
| 1502 | |||
| 1503 | /** |
||
| 1504 | * Set the grid z index. |
||
| 1505 | * |
||
| 1506 | * @param integer $gridZIndex The grid z index. |
||
| 1507 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1508 | */ |
||
| 1509 | public function setGridZIndex($gridZIndex) { |
||
| 1513 | |||
| 1514 | /** |
||
| 1515 | * Set the id. |
||
| 1516 | * |
||
| 1517 | * @param string $id The id. |
||
| 1518 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1519 | */ |
||
| 1520 | public function setId($id) { |
||
| 1524 | |||
| 1525 | /** |
||
| 1526 | * Set the labels. |
||
| 1527 | * |
||
| 1528 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\XAxis\HighchartsLabels $labels The labels. |
||
| 1529 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1530 | */ |
||
| 1531 | public function setLabels(\WBW\Bundle\HighchartsBundle\API\Chart\XAxis\HighchartsLabels $labels = null) { |
||
| 1535 | |||
| 1536 | /** |
||
| 1537 | * Set the line color. |
||
| 1538 | * |
||
| 1539 | * @param string $lineColor The line color. |
||
| 1540 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1541 | */ |
||
| 1542 | public function setLineColor($lineColor) { |
||
| 1546 | |||
| 1547 | /** |
||
| 1548 | * Set the line width. |
||
| 1549 | * |
||
| 1550 | * @param integer $lineWidth The line width. |
||
| 1551 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1552 | */ |
||
| 1553 | public function setLineWidth($lineWidth) { |
||
| 1557 | |||
| 1558 | /** |
||
| 1559 | * Set the linked to. |
||
| 1560 | * |
||
| 1561 | * @param integer $linkedTo The linked to. |
||
| 1562 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1563 | */ |
||
| 1564 | public function setLinkedTo($linkedTo) { |
||
| 1568 | |||
| 1569 | /** |
||
| 1570 | * Set the max. |
||
| 1571 | * |
||
| 1572 | * @param integer $max The max. |
||
| 1573 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1574 | */ |
||
| 1575 | public function setMax($max) { |
||
| 1579 | |||
| 1580 | /** |
||
| 1581 | * Set the max padding. |
||
| 1582 | * |
||
| 1583 | * @param integer $maxPadding The max padding. |
||
| 1584 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1585 | */ |
||
| 1586 | public function setMaxPadding($maxPadding) { |
||
| 1590 | |||
| 1591 | /** |
||
| 1592 | * Set the max zoom. |
||
| 1593 | * |
||
| 1594 | * @param integer $maxZoom The max zoom. |
||
| 1595 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1596 | * @deprecated |
||
| 1597 | */ |
||
| 1598 | public function setMaxZoom($maxZoom) { |
||
| 1602 | |||
| 1603 | /** |
||
| 1604 | * Set the min. |
||
| 1605 | * |
||
| 1606 | * @param integer $min The min. |
||
| 1607 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1608 | */ |
||
| 1609 | public function setMin($min) { |
||
| 1613 | |||
| 1614 | /** |
||
| 1615 | * Set the min padding. |
||
| 1616 | * |
||
| 1617 | * @param integer $minPadding The min padding. |
||
| 1618 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1619 | */ |
||
| 1620 | public function setMinPadding($minPadding) { |
||
| 1624 | |||
| 1625 | /** |
||
| 1626 | * Set the min range. |
||
| 1627 | * |
||
| 1628 | * @param integer $minRange The min range. |
||
| 1629 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1630 | */ |
||
| 1631 | public function setMinRange($minRange) { |
||
| 1635 | |||
| 1636 | /** |
||
| 1637 | * Set the min tick interval. |
||
| 1638 | * |
||
| 1639 | * @param integer $minTickInterval The min tick interval. |
||
| 1640 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1641 | */ |
||
| 1642 | public function setMinTickInterval($minTickInterval) { |
||
| 1646 | |||
| 1647 | /** |
||
| 1648 | * Set the minor grid line color. |
||
| 1649 | * |
||
| 1650 | * @param string $minorGridLineColor The minor grid line color. |
||
| 1651 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1652 | */ |
||
| 1653 | public function setMinorGridLineColor($minorGridLineColor) { |
||
| 1657 | |||
| 1658 | /** |
||
| 1659 | * Set the minor grid line dash style. |
||
| 1660 | * |
||
| 1661 | * @param string $minorGridLineDashStyle The minor grid line dash style. |
||
| 1662 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1663 | */ |
||
| 1664 | public function setMinorGridLineDashStyle($minorGridLineDashStyle) { |
||
| 1682 | |||
| 1683 | /** |
||
| 1684 | * Set the minor grid line width. |
||
| 1685 | * |
||
| 1686 | * @param integer $minorGridLineWidth The minor grid line width. |
||
| 1687 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1688 | */ |
||
| 1689 | public function setMinorGridLineWidth($minorGridLineWidth) { |
||
| 1693 | |||
| 1694 | /** |
||
| 1695 | * Set the minor tick color. |
||
| 1696 | * |
||
| 1697 | * @param string $minorTickColor The minor tick color. |
||
| 1698 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1699 | */ |
||
| 1700 | public function setMinorTickColor($minorTickColor) { |
||
| 1704 | |||
| 1705 | /** |
||
| 1706 | * Set the minor tick interval. |
||
| 1707 | * |
||
| 1708 | * @param string|integer $minorTickInterval The minor tick interval. |
||
| 1709 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1710 | */ |
||
| 1711 | public function setMinorTickInterval($minorTickInterval) { |
||
| 1715 | |||
| 1716 | /** |
||
| 1717 | * Set the minor tick length. |
||
| 1718 | * |
||
| 1719 | * @param integer $minorTickLength The minor tick length. |
||
| 1720 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1721 | */ |
||
| 1722 | public function setMinorTickLength($minorTickLength) { |
||
| 1726 | |||
| 1727 | /** |
||
| 1728 | * Set the minor tick position. |
||
| 1729 | * |
||
| 1730 | * @param string $minorTickPosition The minor tick position. |
||
| 1731 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1732 | */ |
||
| 1733 | public function setMinorTickPosition($minorTickPosition) { |
||
| 1742 | |||
| 1743 | /** |
||
| 1744 | * Set the minor tick width. |
||
| 1745 | * |
||
| 1746 | * @param integer $minorTickWidth The minor tick width. |
||
| 1747 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1748 | */ |
||
| 1749 | public function setMinorTickWidth($minorTickWidth) { |
||
| 1753 | |||
| 1754 | /** |
||
| 1755 | * Set the offset. |
||
| 1756 | * |
||
| 1757 | * @param integer $offset The offset. |
||
| 1758 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1759 | */ |
||
| 1760 | public function setOffset($offset) { |
||
| 1764 | |||
| 1765 | /** |
||
| 1766 | * Set the opposite. |
||
| 1767 | * |
||
| 1768 | * @param boolean $opposite The opposite. |
||
| 1769 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1770 | */ |
||
| 1771 | public function setOpposite($opposite) { |
||
| 1775 | |||
| 1776 | /** |
||
| 1777 | * Set the plot bands. |
||
| 1778 | * |
||
| 1779 | * @param array $plotBands The plot bands. |
||
| 1780 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1781 | */ |
||
| 1782 | public function setPlotBands(array $plotBands = null) { |
||
| 1786 | |||
| 1787 | /** |
||
| 1788 | * Set the plot lines. |
||
| 1789 | * |
||
| 1790 | * @param array $plotLines The plot lines. |
||
| 1791 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1792 | */ |
||
| 1793 | public function setPlotLines(array $plotLines = null) { |
||
| 1797 | |||
| 1798 | /** |
||
| 1799 | * Set the reversed. |
||
| 1800 | * |
||
| 1801 | * @param boolean $reversed The reversed. |
||
| 1802 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1803 | */ |
||
| 1804 | public function setReversed($reversed) { |
||
| 1808 | |||
| 1809 | /** |
||
| 1810 | * Set the show empty. |
||
| 1811 | * |
||
| 1812 | * @param boolean $showEmpty The show empty. |
||
| 1813 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1814 | */ |
||
| 1815 | public function setShowEmpty($showEmpty) { |
||
| 1819 | |||
| 1820 | /** |
||
| 1821 | * Set the show first label. |
||
| 1822 | * |
||
| 1823 | * @param boolean $showFirstLabel The show first label. |
||
| 1824 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1825 | */ |
||
| 1826 | public function setShowFirstLabel($showFirstLabel) { |
||
| 1830 | |||
| 1831 | /** |
||
| 1832 | * Set the show last label. |
||
| 1833 | * |
||
| 1834 | * @param boolean $showLastLabel The show last label. |
||
| 1835 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1836 | */ |
||
| 1837 | public function setShowLastLabel($showLastLabel) { |
||
| 1841 | |||
| 1842 | /** |
||
| 1843 | * Set the soft max. |
||
| 1844 | * |
||
| 1845 | * @param integer $softMax The soft max. |
||
| 1846 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1847 | */ |
||
| 1848 | public function setSoftMax($softMax) { |
||
| 1852 | |||
| 1853 | /** |
||
| 1854 | * Set the soft min. |
||
| 1855 | * |
||
| 1856 | * @param integer $softMin The soft min. |
||
| 1857 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1858 | */ |
||
| 1859 | public function setSoftMin($softMin) { |
||
| 1863 | |||
| 1864 | /** |
||
| 1865 | * Set the start of week. |
||
| 1866 | * |
||
| 1867 | * @param integer $startOfWeek The start of week. |
||
| 1868 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1869 | */ |
||
| 1870 | public function setStartOfWeek($startOfWeek) { |
||
| 1874 | |||
| 1875 | /** |
||
| 1876 | * Set the start on tick. |
||
| 1877 | * |
||
| 1878 | * @param boolean $startOnTick The start on tick. |
||
| 1879 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1880 | */ |
||
| 1881 | public function setStartOnTick($startOnTick) { |
||
| 1885 | |||
| 1886 | /** |
||
| 1887 | * Set the tick amount. |
||
| 1888 | * |
||
| 1889 | * @param integer $tickAmount The tick amount. |
||
| 1890 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1891 | */ |
||
| 1892 | public function setTickAmount($tickAmount) { |
||
| 1896 | |||
| 1897 | /** |
||
| 1898 | * Set the tick color. |
||
| 1899 | * |
||
| 1900 | * @param string $tickColor The tick color. |
||
| 1901 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1902 | */ |
||
| 1903 | public function setTickColor($tickColor) { |
||
| 1907 | |||
| 1908 | /** |
||
| 1909 | * Set the tick interval. |
||
| 1910 | * |
||
| 1911 | * @param integer $tickInterval The tick interval. |
||
| 1912 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1913 | */ |
||
| 1914 | public function setTickInterval($tickInterval) { |
||
| 1918 | |||
| 1919 | /** |
||
| 1920 | * Set the tick length. |
||
| 1921 | * |
||
| 1922 | * @param integer $tickLength The tick length. |
||
| 1923 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1924 | */ |
||
| 1925 | public function setTickLength($tickLength) { |
||
| 1929 | |||
| 1930 | /** |
||
| 1931 | * Set the tick pixel interval. |
||
| 1932 | * |
||
| 1933 | * @param integer $tickPixelInterval The tick pixel interval. |
||
| 1934 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1935 | */ |
||
| 1936 | public function setTickPixelInterval($tickPixelInterval) { |
||
| 1940 | |||
| 1941 | /** |
||
| 1942 | * Set the tick position. |
||
| 1943 | * |
||
| 1944 | * @param string $tickPosition The tick position. |
||
| 1945 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1946 | */ |
||
| 1947 | public function setTickPosition($tickPosition) { |
||
| 1956 | |||
| 1957 | /** |
||
| 1958 | * Set the tick positioner. |
||
| 1959 | * |
||
| 1960 | * @param string $tickPositioner The tick positioner. |
||
| 1961 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1962 | */ |
||
| 1963 | public function setTickPositioner($tickPositioner) { |
||
| 1967 | |||
| 1968 | /** |
||
| 1969 | * Set the tick positions. |
||
| 1970 | * |
||
| 1971 | * @param array $tickPositions The tick positions. |
||
| 1972 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1973 | */ |
||
| 1974 | public function setTickPositions(array $tickPositions = null) { |
||
| 1978 | |||
| 1979 | /** |
||
| 1980 | * Set the tick width. |
||
| 1981 | * |
||
| 1982 | * @param integer $tickWidth The tick width. |
||
| 1983 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1984 | */ |
||
| 1985 | public function setTickWidth($tickWidth) { |
||
| 1989 | |||
| 1990 | /** |
||
| 1991 | * Set the tickmark placement. |
||
| 1992 | * |
||
| 1993 | * @param string $tickmarkPlacement The tickmark placement. |
||
| 1994 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 1995 | */ |
||
| 1996 | public function setTickmarkPlacement($tickmarkPlacement) { |
||
| 2006 | |||
| 2007 | /** |
||
| 2008 | * Set the title. |
||
| 2009 | * |
||
| 2010 | * @param \WBW\Bundle\HighchartsBundle\API\Chart\XAxis\HighchartsTitle $title The title. |
||
| 2011 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 2012 | */ |
||
| 2013 | public function setTitle(\WBW\Bundle\HighchartsBundle\API\Chart\XAxis\HighchartsTitle $title = null) { |
||
| 2017 | |||
| 2018 | /** |
||
| 2019 | * Set the type. |
||
| 2020 | * |
||
| 2021 | * @param string $type The type. |
||
| 2022 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 2023 | */ |
||
| 2024 | public function setType($type) { |
||
| 2035 | |||
| 2036 | /** |
||
| 2037 | * Set the unique names. |
||
| 2038 | * |
||
| 2039 | * @param boolean $uniqueNames The unique names. |
||
| 2040 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 2041 | */ |
||
| 2042 | public function setUniqueNames($uniqueNames) { |
||
| 2046 | |||
| 2047 | /** |
||
| 2048 | * Set the units. |
||
| 2049 | * |
||
| 2050 | * @param array $units The units. |
||
| 2051 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 2052 | */ |
||
| 2053 | public function setUnits(array $units = null) { |
||
| 2057 | |||
| 2058 | /** |
||
| 2059 | * Set the visible. |
||
| 2060 | * |
||
| 2061 | * @param boolean $visible The visible. |
||
| 2062 | * @return \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsXAxis Returns the highcharts x axis. |
||
| 2063 | */ |
||
| 2064 | public function setVisible($visible) { |
||
| 2068 | |||
| 2069 | /** |
||
| 2070 | * Convert into an array representing this instance. |
||
| 2071 | * |
||
| 2072 | * @return array Returns an array representing this instance. |
||
| 2073 | */ |
||
| 2074 | public function toArray() { |
||
| 2279 | |||
| 2280 | } |
||
| 2281 |
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..