highcharts-more.src.js 177 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576
/**
 * @license Highcharts JS v6.2.0 (2018-10-17)
 *
 * (c) 2009-2016 Torstein Honsi
 *
 * License: www.highcharts.com/license
 */
'use strict';
(function (factory) {
	if (typeof module === 'object' && module.exports) {
		module.exports = factory;
	} else if (typeof define === 'function' && define.amd) {
		define(function () {
			return factory;
		});
	} else {
		factory(Highcharts);
	}
}(function (Highcharts) {
	(function (H) {
		/**
		 * (c) 2010-2018 Torstein Honsi
		 *
		 * License: www.highcharts.com/license
		 */
		var CenteredSeriesMixin = H.CenteredSeriesMixin,
		    each = H.each,
		    extend = H.extend,
		    merge = H.merge,
		    splat = H.splat;
		/**
		 * The Pane object allows options that are common to a set of X and Y axes.
		 *
		 * In the future, this can be extended to basic Highcharts and Highstock.
		 *
		 */
		function Pane(options, chart) {
		    this.init(options, chart);
		}

		// Extend the Pane prototype
		extend(Pane.prototype, {

		    coll: 'pane', // Member of chart.pane

		    /**
		     * Initiate the Pane object
		     */
		    init: function (options, chart) {
		        this.chart = chart;
		        this.background = [];

		        chart.pane.push(this);

		        this.setOptions(options);
		    },

		    setOptions: function (options) {

		        // Set options. Angular charts have a default background (#3318)
		        this.options = options = merge(
		            this.defaultOptions,
		            this.chart.angular ? { background: {} } : undefined,
		            options
		        );
		    },

		    /**
		     * Render the pane with its backgrounds.
		     */
		    render: function () {

		        var options = this.options,
		            backgroundOption = this.options.background,
		            renderer = this.chart.renderer,
		            len,
		            i;

		        if (!this.group) {
		            this.group = renderer.g('pane-group')
		                .attr({ zIndex: options.zIndex || 0 })
		                .add();
		        }

		        this.updateCenter();

		        // Render the backgrounds
		        if (backgroundOption) {
		            backgroundOption = splat(backgroundOption);

		            len = Math.max(
		                backgroundOption.length,
		                this.background.length || 0
		            );

		            for (i = 0; i < len; i++) {
		                // #6641 - if axis exists, chart is circular and apply
		                // background
		                if (backgroundOption[i] && this.axis) {
		                    this.renderBackground(
		                        merge(
		                            this.defaultBackgroundOptions,
		                            backgroundOption[i]
		                        ),
		                        i
		                    );
		                } else if (this.background[i]) {
		                    this.background[i] = this.background[i].destroy();
		                    this.background.splice(i, 1);
		                }
		            }
		        }
		    },

		    /**
		     * Render an individual pane background.
		     * @param  {Object} backgroundOptions Background options
		     * @param  {number} i The index of the background in this.backgrounds
		     */
		    renderBackground: function (backgroundOptions, i) {
		        var method = 'animate';

		        if (!this.background[i]) {
		            this.background[i] = this.chart.renderer.path()
		                .add(this.group);
		            method = 'attr';
		        }

		        this.background[i][method]({
		            'd': this.axis.getPlotBandPath(
		                backgroundOptions.from,
		                backgroundOptions.to,
		                backgroundOptions
		            )
		        }).attr({
            
		            'fill': backgroundOptions.backgroundColor,
		            'stroke': backgroundOptions.borderColor,
		            'stroke-width': backgroundOptions.borderWidth,
            
		            'class': 'highcharts-pane ' + (backgroundOptions.className || '')
		        });

		    },

		    /**
		     * The pane serves as a container for axes and backgrounds for circular
		     * gauges and polar charts.
		     * @since 2.3.0
		     * @product highcharts
		     * @optionparent pane
		     */
		    defaultOptions: {

		        /**
		         * The end angle of the polar X axis or gauge value axis, given in
		         * degrees where 0 is north. Defaults to [startAngle](#pane.startAngle)
		         * + 360.
		         *
		         * @type {Number}
		         * @sample {highcharts} highcharts/demo/gauge-vu-meter/
		         *         VU-meter with custom start and end angle
		         * @since 2.3.0
		         * @product highcharts
		         * @apioption pane.endAngle
		         */

		        /**
		         * The center of a polar chart or angular gauge, given as an array
		         * of [x, y] positions. Positions can be given as integers that
		         * transform to pixels, or as percentages of the plot area size.
		         *
		         * @type {Array<String|Number>}
		         * @sample {highcharts} highcharts/demo/gauge-vu-meter/
		         *         Two gauges with different center
		         * @default ["50%", "50%"]
		         * @since 2.3.0
		         * @product highcharts
		         */
		        center: ['50%', '50%'],

		        /**
		         * The size of the pane, either as a number defining pixels, or a
		         * percentage defining a percentage of the plot are.
		         *
		         * @type {Number|String}
		         * @sample {highcharts} highcharts/demo/gauge-vu-meter/ Smaller size
		         * @default 85%
		         * @product highcharts
		         */
		        size: '85%',

		        /**
		         * The start angle of the polar X axis or gauge axis, given in degrees
		         * where 0 is north. Defaults to 0.
		         *
		         * @type {Number}
		         * @sample {highcharts} highcharts/demo/gauge-vu-meter/
		         *         VU-meter with custom start and end angle
		         * @since 2.3.0
		         * @product highcharts
		         */
		        startAngle: 0
		    },

		    /**
		     * An array of background items for the pane.
		     * @type {Array<Object>}
		     * @sample {highcharts} highcharts/demo/gauge-speedometer/
		     *         Speedometer gauge with multiple backgrounds
		     * @optionparent pane.background
		     */
		    defaultBackgroundOptions: {
		        /**
		         * The class name for this background.
		         *
		         * @type {String}
		         * @sample {highcharts} highcharts/css/pane/ Panes styled by CSS
		         * @sample {highstock} highcharts/css/pane/ Panes styled by CSS
		         * @sample {highmaps} highcharts/css/pane/ Panes styled by CSS
		         * @default highcharts-pane
		         * @since 5.0.0
		         * @apioption pane.background.className
		         */

		        /**
		         * The shape of the pane background. When `solid`, the background
		         * is circular. When `arc`, the background extends only from the min
		         * to the max of the value axis.
		         *
		         * @validvalue ["solid", "arc"]
		         * @type {String}
		         * @default solid
		         * @since 2.3.0
		         * @product highcharts
		         */
		        shape: 'circle',
        

		        /**
		         * The pixel border width of the pane background.
		         *
		         * @type {Number}
		         * @default 1
		         * @since 2.3.0
		         * @product highcharts
		         */
		        borderWidth: 1,

		        /**
		         * The pane background border color.
		         *
		         * @type {Color}
		         * @default #cccccc
		         * @since 2.3.0
		         * @product highcharts
		         */
		        borderColor: '#cccccc',

		        /**
		         * The background color or gradient for the pane.
		         *
		         * @type {Color}
		         * @since 2.3.0
		         * @product highcharts
		         */
		        backgroundColor: {
		            /**
		             * Definition of the gradient, similar to SVG: object literal holds
		             * start position (x1, y1) and the end position (x2, y2) relative
		             * to the shape, where 0 means top/left and 1 is bottom/right.
		             * All positions are floats between 0 and 1.
		             *
		             * @type {Object}
		             */
		            linearGradient: { x1: 0, y1: 0, x2: 0, y2: 1 },
		            /**
		             * The stops is an array of tuples, where the first item is a float
		             * between 0 and 1 assigning the relative position in the gradient,
		             * and the second item is the color.
		             *
		             * @default [[0, #ffffff], [1, #e6e6e6]]
		             * @type {Array<Array>}
		             */
		            stops: [
		                [0, '#ffffff'],
		                [1, '#e6e6e6']
		            ]
		        },
        

		        /** @ignore-option */
		        from: -Number.MAX_VALUE, // corrected to axis min

		        /**
		         * The inner radius of the pane background. Can be either numeric
		         * (pixels) or a percentage string.
		         *
		         * @type {Number|String}
		         * @default 0
		         * @since 2.3.0
		         * @product highcharts
		         */
		        innerRadius: 0,

		        /** @ignore-option */
		        to: Number.MAX_VALUE, // corrected to axis max

		        /**
		         * The outer radius of the circular pane background. Can be either
		         * numeric (pixels) or a percentage string.
		         *
		         * @type {Number|String}
		         * @default 105%
		         * @since 2.3.0
		         * @product highcharts
		         */
		        outerRadius: '105%'
		    },

		    /**
		     * Gets the center for the pane and its axis.
		     */
		    updateCenter: function (axis) {
		        this.center = (axis || this.axis || {}).center =
		            CenteredSeriesMixin.getCenter.call(this);
		    },

		    /**
		     * Destroy the pane item
		     * /
		    destroy: function () {
		        H.erase(this.chart.pane, this);
		        each(this.background, function (background) {
		            background.destroy();
		        });
		        this.background.length = 0;
		        this.group = this.group.destroy();
		    },
		    */

		    /**
		     * Update the pane item with new options
		     * @param  {Object} options New pane options
		     */
		    update: function (options, redraw) {

		        merge(true, this.options, options);
		        this.setOptions(this.options);
		        this.render();
		        each(this.chart.axes, function (axis) {
		            if (axis.pane === this) {
		                axis.pane = null;
		                axis.update({}, redraw);
		            }
		        }, this);
		    }

		});

		H.Pane = Pane;

	}(Highcharts));
	(function (H) {
		/**
		 * (c) 2010-2018 Torstein Honsi
		 *
		 * License: www.highcharts.com/license
		 */
		var addEvent = H.addEvent,
		    Axis = H.Axis,
		    each = H.each,
		    extend = H.extend,
		    map = H.map,
		    merge = H.merge,
		    noop = H.noop,
		    pick = H.pick,
		    pInt = H.pInt,
		    Tick = H.Tick,
		    wrap = H.wrap,
		    correctFloat = H.correctFloat,


		    hiddenAxisMixin, // @todo Extract this to a new file
		    radialAxisMixin, // @todo Extract this to a new file
		    axisProto = Axis.prototype,
		    tickProto = Tick.prototype;

		if (!H.radialAxisExtended) {
		    H.radialAxisExtended = true;

		    /**
		     * Augmented methods for the x axis in order to hide it completely, used for
		     * the X axis in gauges
		     */
		    hiddenAxisMixin = {
		        getOffset: noop,
		        redraw: function () {
		            this.isDirty = false; // prevent setting Y axis dirty
		        },
		        render: function () {
		            this.isDirty = false; // prevent setting Y axis dirty
		        },
		        setScale: noop,
		        setCategories: noop,
		        setTitle: noop
		    };

		    /**
		     * Augmented methods for the value axis
		     */
		    radialAxisMixin = {

		        /**
		         * The default options extend defaultYAxisOptions
		         */
		        defaultRadialGaugeOptions: {
		            labels: {
		                align: 'center',
		                x: 0,
		                y: null // auto
		            },
		            minorGridLineWidth: 0,
		            minorTickInterval: 'auto',
		            minorTickLength: 10,
		            minorTickPosition: 'inside',
		            minorTickWidth: 1,
		            tickLength: 10,
		            tickPosition: 'inside',
		            tickWidth: 2,
		            title: {
		                rotation: 0
		            },
		            zIndex: 2 // behind dials, points in the series group
		        },

		        // Circular axis around the perimeter of a polar chart
		        defaultRadialXOptions: {
		            gridLineWidth: 1, // spokes
		            labels: {
		                align: null, // auto
		                distance: 15,
		                x: 0,
		                y: null, // auto
		                style: {
		                    textOverflow: 'none' // wrap lines by default (#7248)
		                }
		            },
		            maxPadding: 0,
		            minPadding: 0,
		            showLastLabel: false,
		            tickLength: 0
		        },

		        // Radial axis, like a spoke in a polar chart
		        defaultRadialYOptions: {
		            gridLineInterpolation: 'circle',
		            labels: {
		                align: 'right',
		                x: -3,
		                y: -2
		            },
		            showLastLabel: false,
		            title: {
		                x: 4,
		                text: null,
		                rotation: 90
		            }
		        },

		        /**
		         * Merge and set options
		         */
		        setOptions: function (userOptions) {

		            var options = this.options = merge(
		                this.defaultOptions,
		                this.defaultRadialOptions,
		                userOptions
		            );

		            // Make sure the plotBands array is instanciated for each Axis
		            // (#2649)
		            if (!options.plotBands) {
		                options.plotBands = [];
		            }

		            H.fireEvent(this, 'afterSetOptions');

		        },

		        /**
		         * Wrap the getOffset method to return zero offset for title or labels
		         * in a radial axis
		         */
		        getOffset: function () {
		            // Call the Axis prototype method (the method we're in now is on the
		            // instance)
		            axisProto.getOffset.call(this);

		            // Title or label offsets are not counted
		            this.chart.axisOffset[this.side] = 0;

		        },


		        /**
		         * Get the path for the axis line. This method is also referenced in the
		         * getPlotLinePath method.
		         */
		        getLinePath: function (lineWidth, radius) {
		            var center = this.center,
		                end,
		                chart = this.chart,
		                r = pick(radius, center[2] / 2 - this.offset),
		                path;

		            if (this.isCircular || radius !== undefined) {
		                path = this.chart.renderer.symbols.arc(
		                    this.left + center[0],
		                    this.top + center[1],
		                    r,
		                    r,
		                    {
		                        start: this.startAngleRad,
		                        end: this.endAngleRad,
		                        open: true,
		                        innerR: 0
		                    }
		                );

		                // Bounds used to position the plotLine label next to the line
		                // (#7117)
		                path.xBounds = [this.left + center[0]];
		                path.yBounds = [this.top + center[1] - r];

		            } else {
		                end = this.postTranslate(this.angleRad, r);
		                path = [
		                    'M',
		                    center[0] + chart.plotLeft,
		                    center[1] + chart.plotTop,
		                    'L',
		                    end.x,
		                    end.y
		                ];
		            }
		            return path;
		        },

		        /**
		         * Override setAxisTranslation by setting the translation to the
		         * difference in rotation. This allows the translate method to return
		         * angle for any given value.
		         */
		        setAxisTranslation: function () {

		            // Call uber method
		            axisProto.setAxisTranslation.call(this);

		            // Set transA and minPixelPadding
		            if (this.center) { // it's not defined the first time
		                if (this.isCircular) {

		                    this.transA = (this.endAngleRad - this.startAngleRad) /
		                        ((this.max - this.min) || 1);


		                } else {
		                    this.transA = (
		                        (this.center[2] / 2) /
		                        ((this.max - this.min) || 1)
		                    );
		                }

		                if (this.isXAxis) {
		                    this.minPixelPadding = this.transA * this.minPointOffset;
		                } else {
		                    // This is a workaround for regression #2593, but categories
		                    // still don't position correctly.
		                    this.minPixelPadding = 0;
		                }
		            }
		        },

		        /**
		         * In case of auto connect, add one closestPointRange to the max value
		         * right before tickPositions are computed, so that ticks will extend
		         * passed the real max.
		         */
		        beforeSetTickPositions: function () {
		            // If autoConnect is true, polygonal grid lines are connected, and
		            // one closestPointRange is added to the X axis to prevent the last
		            // point from overlapping the first.
		            this.autoConnect = (
		                this.isCircular &&
		                pick(this.userMax, this.options.max) === undefined &&
		                correctFloat(this.endAngleRad - this.startAngleRad) ===
		                correctFloat(2 * Math.PI)
		            );

		            if (this.autoConnect) {
		                this.max += (
		                    (this.categories && 1) ||
		                    this.pointRange ||
		                    this.closestPointRange ||
		                    0
		                ); // #1197, #2260
		            }
		        },

		        /**
		         * Override the setAxisSize method to use the arc's circumference as
		         * length. This allows tickPixelInterval to apply to pixel lengths along
		         * the perimeter
		         */
		        setAxisSize: function () {

		            axisProto.setAxisSize.call(this);

		            if (this.isRadial) {

		                // Set the center array
		                this.pane.updateCenter(this);

		                // The sector is used in Axis.translate to compute the
		                // translation of reversed axis points (#2570)
		                if (this.isCircular) {
		                    this.sector = this.endAngleRad - this.startAngleRad;
		                }

		                // Axis len is used to lay out the ticks
		                this.len = this.width = this.height =
		                    this.center[2] * pick(this.sector, 1) / 2;

		            }
		        },

		        /**
		         * Returns the x, y coordinate of a point given by a value and a pixel
		         * distance from center
		         */
		        getPosition: function (value, length) {
		            return this.postTranslate(
		                this.isCircular ?
		                    this.translate(value) :
		                    this.angleRad, // #2848
		                pick(
		                    this.isCircular ? length : this.translate(value),
		                    this.center[2] / 2
		                ) - this.offset
		            );
		        },

		        /**
		         * Translate from intermediate plotX (angle), plotY (axis.len - radius)
		         * to final chart coordinates.
		         */
		        postTranslate: function (angle, radius) {

		            var chart = this.chart,
		                center = this.center;

		            angle = this.startAngleRad + angle;

		            return {
		                x: chart.plotLeft + center[0] + Math.cos(angle) * radius,
		                y: chart.plotTop + center[1] + Math.sin(angle) * radius
		            };

		        },

		        /**
		         * Find the path for plot bands along the radial axis
		         */
		        getPlotBandPath: function (from, to, options) {
		            var center = this.center,
		                startAngleRad = this.startAngleRad,
		                fullRadius = center[2] / 2,
		                radii = [
		                    pick(options.outerRadius, '100%'),
		                    options.innerRadius,
		                    pick(options.thickness, 10)
		                ],
		                offset = Math.min(this.offset, 0),
		                percentRegex = /%$/,
		                start,
		                end,
		                open,
		                isCircular = this.isCircular, // X axis in a polar chart
		                ret;

		            // Polygonal plot bands
		            if (this.options.gridLineInterpolation === 'polygon') {
		                ret = this.getPlotLinePath(from).concat(
		                    this.getPlotLinePath(to, true)
		                );

		            // Circular grid bands
		            } else {

		                // Keep within bounds
		                from = Math.max(from, this.min);
		                to = Math.min(to, this.max);

		                // Plot bands on Y axis (radial axis) - inner and outer radius
		                // depend on to and from
		                if (!isCircular) {
		                    radii[0] = this.translate(from);
		                    radii[1] = this.translate(to);
		                }

		                // Convert percentages to pixel values
		                radii = map(radii, function (radius) {
		                    if (percentRegex.test(radius)) {
		                        radius = (pInt(radius, 10) * fullRadius) / 100;
		                    }
		                    return radius;
		                });

		                // Handle full circle
		                if (options.shape === 'circle' || !isCircular) {
		                    start = -Math.PI / 2;
		                    end = Math.PI * 1.5;
		                    open = true;
		                } else {
		                    start = startAngleRad + this.translate(from);
		                    end = startAngleRad + this.translate(to);
		                }

		                radii[0] -= offset; // #5283
		                radii[2] -= offset; // #5283

		                ret = this.chart.renderer.symbols.arc(
		                    this.left + center[0],
		                    this.top + center[1],
		                    radii[0],
		                    radii[0],
		                    {
		                        // Math is for reversed yAxis (#3606)
		                        start: Math.min(start, end),
		                        end: Math.max(start, end),
		                        innerR: pick(radii[1], radii[0] - radii[2]),
		                        open: open
		                    }
		                );
		            }

		            return ret;
		        },

		        /**
		         * Find the path for plot lines perpendicular to the radial axis.
		         */
		        getPlotLinePath: function (value, reverse) {
		            var axis = this,
		                center = axis.center,
		                chart = axis.chart,
		                end = axis.getPosition(value),
		                xAxis,
		                xy,
		                tickPositions,
		                ret;

		            // Spokes
		            if (axis.isCircular) {
		                ret = [
		                    'M',
		                    center[0] + chart.plotLeft,
		                    center[1] + chart.plotTop,
		                    'L',
		                    end.x,
		                    end.y
		                ];

		            // Concentric circles
		            } else if (axis.options.gridLineInterpolation === 'circle') {
		                value = axis.translate(value);

		                // a value of 0 is in the center, so it won't be visible,
		                // but draw it anyway for update and animation (#2366)
		                ret = axis.getLinePath(0, value);
		            // Concentric polygons
		            } else {
		                // Find the X axis in the same pane
		                each(chart.xAxis, function (a) {
		                    if (a.pane === axis.pane) {
		                        xAxis = a;
		                    }
		                });
		                ret = [];
		                value = axis.translate(value);
		                tickPositions = xAxis.tickPositions;
		                if (xAxis.autoConnect) {
		                    tickPositions = tickPositions.concat([tickPositions[0]]);
		                }
		                // Reverse the positions for concatenation of polygonal plot
		                // bands
		                if (reverse) {
		                    tickPositions = [].concat(tickPositions).reverse();
		                }

		                each(tickPositions, function (pos, i) {
		                    xy = xAxis.getPosition(pos, value);
		                    ret.push(i ? 'L' : 'M', xy.x, xy.y);
		                });

		            }
		            return ret;
		        },

		        /**
		         * Find the position for the axis title, by default inside the gauge
		         */
		        getTitlePosition: function () {
		            var center = this.center,
		                chart = this.chart,
		                titleOptions = this.options.title;

		            return {
		                x: chart.plotLeft + center[0] + (titleOptions.x || 0),
		                y: (
		                    chart.plotTop +
		                    center[1] -
		                    (
		                        {
		                            high: 0.5,
		                            middle: 0.25,
		                            low: 0
		                        }[titleOptions.align] * center[2]
		                    ) +
		                    (titleOptions.y || 0)
		                )
		            };
		        }

		    };

		    /**
		     * Actions before axis init.
		     */
		    addEvent(Axis, 'init', function (e) {
		        var chart = this.chart,
		            angular = chart.angular,
		            polar = chart.polar,
		            isX = this.isXAxis,
		            isHidden = angular && isX,
		            isCircular,
		            chartOptions = chart.options,
		            paneIndex = e.userOptions.pane || 0,
		            pane = this.pane = chart.pane && chart.pane[paneIndex];

		        // Before prototype.init
		        if (angular) {
		            extend(this, isHidden ? hiddenAxisMixin : radialAxisMixin);
		            isCircular = !isX;
		            if (isCircular) {
		                this.defaultRadialOptions = this.defaultRadialGaugeOptions;
		            }

		        } else if (polar) {
		            extend(this, radialAxisMixin);
		            isCircular = isX;
		            this.defaultRadialOptions = isX ?
		                this.defaultRadialXOptions :
		                merge(this.defaultYAxisOptions, this.defaultRadialYOptions);

		        }

		        // Disable certain features on angular and polar axes
		        if (angular || polar) {
		            this.isRadial = true;
		            chart.inverted = false;
		            chartOptions.chart.zoomType = null;
		        } else {
		            this.isRadial = false;
		        }

		        // A pointer back to this axis to borrow geometry
		        if (pane && isCircular) {
		            pane.axis = this;
		        }

		        this.isCircular = isCircular;

		    });

		    addEvent(Axis, 'afterInit', function () {

		        var chart = this.chart,
		            options = this.options,
		            isHidden = chart.angular && this.isXAxis,
		            pane = this.pane,
		            paneOptions = pane && pane.options;

		        if (!isHidden && pane && (chart.angular || chart.polar)) {

		            // Start and end angle options are
		            // given in degrees relative to top, while internal computations are
		            // in radians relative to right (like SVG).

		            // Y axis in polar charts
		            this.angleRad = (options.angle || 0) * Math.PI / 180;
		            // Gauges
		            this.startAngleRad = (paneOptions.startAngle - 90) * Math.PI / 180;
		            this.endAngleRad = (
		                pick(paneOptions.endAngle, paneOptions.startAngle + 360) - 90
		            ) * Math.PI / 180; // Gauges
		            this.offset = options.offset || 0;

		        }

		    });

		    /**
		     * Wrap auto label align to avoid setting axis-wide rotation on radial axes
		     * (#4920)
		     * @param   {Function} proceed
		     * @returns {String} Alignment
		     */
		    wrap(axisProto, 'autoLabelAlign', function (proceed) {
		        if (!this.isRadial) {
		            return proceed.apply(this, [].slice.call(arguments, 1));
		        } // else return undefined
		    });

		    /**
		     * Add special cases within the Tick class' methods for radial axes.
		     */
		    addEvent(Tick, 'afterGetPosition', function (e) {
		        if (this.axis.getPosition) {
		            extend(e.pos, this.axis.getPosition(this.pos));
		        }
		    });

		    /**
		     * Find the center position of the label based on the distance option.
		     */
		    addEvent(Tick, 'afterGetLabelPosition', function (e) {
		        var axis = this.axis,
		            label = this.label,
		            labelOptions = axis.options.labels,
		            optionsY = labelOptions.y,
		            ret,
		            centerSlot = 20, // 20 degrees to each side at the top and bottom
		            align = labelOptions.align,
		            angle = (
		                (axis.translate(this.pos) + axis.startAngleRad + Math.PI / 2) /
		                Math.PI * 180
		            ) % 360;

		        if (axis.isRadial) { // Both X and Y axes in a polar chart
		            ret = axis.getPosition(this.pos, (axis.center[2] / 2) +
		                pick(labelOptions.distance, -25));

		            // Automatically rotated
		            if (labelOptions.rotation === 'auto') {
		                label.attr({
		                    rotation: angle
		                });

		            // Vertically centered
		            } else if (optionsY === null) {
		                optionsY = (
		                    axis.chart.renderer
		                        .fontMetrics(label.styles && label.styles.fontSize).b -
		                    label.getBBox().height / 2
		                );
		            }

		            // Automatic alignment
		            if (align === null) {
		                if (axis.isCircular) { // Y axis
		                    if (
		                        this.label.getBBox().width >
		                        axis.len * axis.tickInterval / (axis.max - axis.min)
		                    ) { // #3506
		                        centerSlot = 0;
		                    }
		                    if (angle > centerSlot && angle < 180 - centerSlot) {
		                        align = 'left'; // right hemisphere
		                    } else if (
		                        angle > 180 + centerSlot &&
		                        angle < 360 - centerSlot
		                    ) {
		                        align = 'right'; // left hemisphere
		                    } else {
		                        align = 'center'; // top or bottom
		                    }
		                } else {
		                    align = 'center';
		                }
		                label.attr({
		                    align: align
		                });
		            }

		            e.pos.x = ret.x + labelOptions.x;
		            e.pos.y = ret.y + optionsY;

		        }
		    });

		    /**
		     * Wrap the getMarkPath function to return the path of the radial marker
		     */
		    wrap(tickProto, 'getMarkPath', function (
		        proceed,
		        x,
		        y,
		        tickLength,
		        tickWidth,
		        horiz,
		        renderer
		    ) {
		        var axis = this.axis,
		            endPoint,
		            ret;

		        if (axis.isRadial) {
		            endPoint = axis.getPosition(
		                this.pos,
		                axis.center[2] / 2 + tickLength
		            );
		            ret = [
		                'M',
		                x,
		                y,
		                'L',
		                endPoint.x,
		                endPoint.y
		            ];
		        } else {
		            ret = proceed.call(
		                this,
		                x,
		                y,
		                tickLength,
		                tickWidth,
		                horiz,
		                renderer
		            );
		        }
		        return ret;
		    });
		}

	}(Highcharts));
	(function (H) {
		/**
		 * (c) 2010-2018 Torstein Honsi
		 *
		 * License: www.highcharts.com/license
		 */
		var each = H.each,
		    noop = H.noop,
		    pick = H.pick,
		    extend = H.extend,
		    isArray = H.isArray,
		    defined = H.defined,
		    Series = H.Series,
		    seriesType = H.seriesType,
		    seriesTypes = H.seriesTypes,
		    seriesProto = Series.prototype,
		    pointProto = H.Point.prototype;

		/**
		 * The area range series is a carteseian series with higher and lower values
		 * for each point along an X axis, where the area between the values is shaded.
		 * Requires `highcharts-more.js`.
		 *
		 * @extends      plotOptions.area
		 * @product      highcharts highstock
		 * @sample       {highcharts} highcharts/demo/arearange/
		 *               Area range chart
		 * @sample       {highstock} stock/demo/arearange/
		 *               Area range chart
		 * @excluding    stack,stacking
		 * @optionparent plotOptions.arearange
		 */
		seriesType('arearange', 'area', {
    

		    /**
		     * Whether to apply a drop shadow to the graph line. Since 2.3 the shadow
		     * can be an object configuration containing `color`, `offsetX`, `offsetY`,
		     * `opacity` and `width`.
		     *
		     * @type      {Boolean|Object}
		     * @product   highcharts
		     * @apioption plotOptions.arearange.shadow
		     */

		    /**
		     * Pixel width of the arearange graph line.
		     *
		     * @since   2.3.0
		     * @product highcharts highstock
		     */
		    lineWidth: 1,
    

		    threshold: null,

		    tooltip: {
        

		        pointFormat: '<span style="color:{series.color}">\u25CF</span> {series.name}: <b>{point.low}</b> - <b>{point.high}</b><br/>' // eslint-disable-line no-dupe-keys
        
		    },

		    /**
		     * Whether the whole area or just the line should respond to mouseover
		     * tooltips and other mouse or touch events.
		     *
		     * @since   2.3.0
		     * @product highcharts highstock
		     */
		    trackByArea: true,

		    /**
		     * Extended data labels for range series types. Range series data labels
		     * have no `x` and `y` options. Instead, they have `xLow`, `xHigh`,
		     * `yLow` and `yHigh` options to allow the higher and lower data label
		     * sets individually.
		     *
		     * @type      {Object}
		     * @extends   plotOptions.series.dataLabels
		     * @excluding x,y
		     * @since     2.3.0
		     * @product   highcharts highstock
		     */
		    dataLabels: {

		        align: null,
		        verticalAlign: null,

		        /**
		         * X offset of the lower data labels relative to the point value.
		         *
		         * @sample  {highcharts} highcharts/plotoptions/arearange-datalabels/
		         *          Data labels on range series
		         * @sample  {highstock} highcharts/plotoptions/arearange-datalabels/
		         *          Data labels on range series
		         * @since   2.3.0
		         * @product highcharts highstock
		         */
		        xLow: 0,

		        /**
		         * X offset of the higher data labels relative to the point value.
		         *
		         * @sample  {highcharts|highstock}
		         *          highcharts/plotoptions/arearange-datalabels/
		         *          Data labels on range series
		         * @since   2.3.0
		         * @product highcharts highstock
		         */
		        xHigh: 0,

		        /**
		         * Y offset of the lower data labels relative to the point value.
		         *
		         * @sample  {highcharts|highstock}
		         *          highcharts/plotoptions/arearange-datalabels/
		         *          Data labels on range series
		         * @default 16
		         * @since   2.3.0
		         * @product highcharts highstock
		         */
		        yLow: 0,

		        /**
		         * Y offset of the higher data labels relative to the point value.
		         *
		         * @sample  {highcharts|highstock}
		         *          highcharts/plotoptions/arearange-datalabels/
		         *          Data labels on range series
		         * @default -6
		         * @since   2.3.0
		         * @product highcharts highstock
		         */
		        yHigh: 0
		    }

		// Prototype members
		}, {
		    pointArrayMap: ['low', 'high'],
		    toYData: function (point) {
		        return [point.low, point.high];
		    },
		    pointValKey: 'low',
		    deferTranslatePolar: true,

		    /**
		     * Translate a point's plotHigh from the internal angle and radius
		     * measures to true plotHigh coordinates. This is an addition of the
		     * toXY method found in Polar.js, because it runs too early for
		     * arearanges to be considered (#3419).
		     */
		    highToXY: function (point) {
		        // Find the polar plotX and plotY
		        var chart = this.chart,
		            xy = this.xAxis.postTranslate(
		                point.rectPlotX,
		                this.yAxis.len - point.plotHigh
		            );
		        point.plotHighX = xy.x - chart.plotLeft;
		        point.plotHigh = xy.y - chart.plotTop;
		        point.plotLowX = point.plotX;
		    },

		    /**
		     * Translate data points from raw values x and y to plotX and plotY
		     */
		    translate: function () {
		        var series = this,
		            yAxis = series.yAxis,
		            hasModifyValue = !!series.modifyValue;

		        seriesTypes.area.prototype.translate.apply(series);

		        // Set plotLow and plotHigh
		        each(series.points, function (point) {

		            var low = point.low,
		                high = point.high,
		                plotY = point.plotY;

		            if (high === null || low === null) {
		                point.isNull = true;
		                point.plotY = null;
		            } else {
		                point.plotLow = plotY;
		                point.plotHigh = yAxis.translate(
		                    hasModifyValue ? series.modifyValue(high, point) : high,
		                    0,
		                    1,
		                    0,
		                    1
		                );
		                if (hasModifyValue) {
		                    point.yBottom = point.plotHigh;
		                }
		            }
		        });

		        // Postprocess plotHigh
		        if (this.chart.polar) {
		            each(this.points, function (point) {
		                series.highToXY(point);
		                point.tooltipPos = [
		                    (point.plotHighX + point.plotLowX) / 2,
		                    (point.plotHigh + point.plotLow) / 2
		                ];
		            });
		        }
		    },

		    /**
		     * Extend the line series' getSegmentPath method by applying the segment
		     * path to both lower and higher values of the range
		     */
		    getGraphPath: function (points) {

		        var highPoints = [],
		            highAreaPoints = [],
		            i,
		            getGraphPath = seriesTypes.area.prototype.getGraphPath,
		            point,
		            pointShim,
		            linePath,
		            lowerPath,
		            options = this.options,
		            connectEnds = this.chart.polar && options.connectEnds !== false,
		            connectNulls = options.connectNulls,
		            step = options.step,
		            higherPath,
		            higherAreaPath;

		        points = points || this.points;
		        i = points.length;

		        /**
		         * Create the top line and the top part of the area fill. The area
		         * fill compensates for null points by drawing down to the lower graph,
		         * moving across the null gap and starting again at the lower graph.
		         */
		        i = points.length;
		        while (i--) {
		            point = points[i];

		            if (
		                !point.isNull &&
		                !connectEnds &&
		                !connectNulls &&
		                (!points[i + 1] || points[i + 1].isNull)
		            ) {
		                highAreaPoints.push({
		                    plotX: point.plotX,
		                    plotY: point.plotY,
		                    doCurve: false // #5186, gaps in areasplinerange fill
		                });
		            }

		            pointShim = {
		                polarPlotY: point.polarPlotY,
		                rectPlotX: point.rectPlotX,
		                yBottom: point.yBottom,
		                // plotHighX is for polar charts
		                plotX: pick(point.plotHighX, point.plotX),
		                plotY: point.plotHigh,
		                isNull: point.isNull
		            };

		            highAreaPoints.push(pointShim);

		            highPoints.push(pointShim);

		            if (
		                !point.isNull &&
		                !connectEnds &&
		                !connectNulls &&
		                (!points[i - 1] || points[i - 1].isNull)
		            ) {
		                highAreaPoints.push({
		                    plotX: point.plotX,
		                    plotY: point.plotY,
		                    doCurve: false // #5186, gaps in areasplinerange fill
		                });
		            }
		        }

		        // Get the paths
		        lowerPath = getGraphPath.call(this, points);
		        if (step) {
		            if (step === true) {
		                step = 'left';
		            }
		            options.step = {
		                left: 'right',
		                center: 'center',
		                right: 'left'
		            }[step]; // swap for reading in getGraphPath
		        }
		        higherPath = getGraphPath.call(this, highPoints);
		        higherAreaPath = getGraphPath.call(this, highAreaPoints);
		        options.step = step;

		        // Create a line on both top and bottom of the range
		        linePath = [].concat(lowerPath, higherPath);

		        // For the area path, we need to change the 'move' statement
		        // into 'lineTo' or 'curveTo'
		        if (!this.chart.polar && higherAreaPath[0] === 'M') {
		            higherAreaPath[0] = 'L'; // this probably doesn't work for spline
		        }

		        this.graphPath = linePath;
		        this.areaPath = lowerPath.concat(higherAreaPath);

		        // Prepare for sideways animation
		        linePath.isArea = true;
		        linePath.xMap = lowerPath.xMap;
		        this.areaPath.xMap = lowerPath.xMap;

		        return linePath;
		    },

		    /**
		     * Extend the basic drawDataLabels method by running it for both lower
		     * and higher values.
		     */
		    drawDataLabels: function () {

		        var data = this.points,
		            length = data.length,
		            i,
		            originalDataLabels = [],
		            dataLabelOptions = this.options.dataLabels,
		            point,
		            up,
		            inverted = this.chart.inverted,
		            upperDataLabelOptions,
		            lowerDataLabelOptions;

		        // Split into upper and lower options. If data labels is an array, the
		        // first element is the upper label, the second is the lower.
		        //
		        // TODO: We want to change this and allow multiple labels for both upper
		        // and lower values in the future - introducing some options for which
		        // point value to use as Y for the dataLabel, so that this could be
		        // handled in Series.drawDataLabels. This would also improve performance
		        // since we now have to loop over all the points multiple times to work
		        // around the data label logic.
		        if (isArray(dataLabelOptions)) {
		            if (dataLabelOptions.length > 1) {
		                upperDataLabelOptions = dataLabelOptions[0];
		                lowerDataLabelOptions = dataLabelOptions[1];
		            } else {
		                upperDataLabelOptions = dataLabelOptions[0];
		                lowerDataLabelOptions = { enabled: false };
		            }
		        } else {
		            upperDataLabelOptions = extend({}, dataLabelOptions); // Make copy;
		            upperDataLabelOptions.x = dataLabelOptions.xHigh;
		            upperDataLabelOptions.y = dataLabelOptions.yHigh;
		            lowerDataLabelOptions = extend({}, dataLabelOptions); // Make copy
		            lowerDataLabelOptions.x = dataLabelOptions.xLow;
		            lowerDataLabelOptions.y = dataLabelOptions.yLow;
		        }

		        // Draw upper labels
		        if (upperDataLabelOptions.enabled || this._hasPointLabels) {
		            // Set preliminary values for plotY and dataLabel
		            // and draw the upper labels
		            i = length;
		            while (i--) {
		                point = data[i];
		                if (point) {
		                    up = upperDataLabelOptions.inside ?
		                        point.plotHigh < point.plotLow :
		                        point.plotHigh > point.plotLow;

		                    point.y = point.high;
		                    point._plotY = point.plotY;
		                    point.plotY = point.plotHigh;

		                    // Store original data labels and set preliminary label
		                    // objects to be picked up in the uber method
		                    originalDataLabels[i] = point.dataLabel;
		                    point.dataLabel = point.dataLabelUpper;

		                    // Set the default offset
		                    point.below = up;
		                    if (inverted) {
		                        if (!upperDataLabelOptions.align) {
		                            upperDataLabelOptions.align = up ? 'right' : 'left';
		                        }
		                    } else {
		                        if (!upperDataLabelOptions.verticalAlign) {
		                            upperDataLabelOptions.verticalAlign = up ?
		                                'top' :
		                                'bottom';
		                        }
		                    }
		                }
		            }

		            this.options.dataLabels = upperDataLabelOptions;

		            if (seriesProto.drawDataLabels) {
		                seriesProto.drawDataLabels.apply(this, arguments); // #1209
		            }

		            // Reset state after the upper labels were created. Move
		            // it to point.dataLabelUpper and reassign the originals.
		            // We do this here to support not drawing a lower label.
		            i = length;
		            while (i--) {
		                point = data[i];
		                if (point) {
		                    point.dataLabelUpper = point.dataLabel;
		                    point.dataLabel = originalDataLabels[i];
		                    delete point.dataLabels;
		                    point.y = point.low;
		                    point.plotY = point._plotY;
		                }
		            }
		        }

		        // Draw lower labels
		        if (lowerDataLabelOptions.enabled || this._hasPointLabels) {
		            i = length;
		            while (i--) {
		                point = data[i];
		                if (point) {
		                    up = lowerDataLabelOptions.inside ?
		                        point.plotHigh < point.plotLow :
		                        point.plotHigh > point.plotLow;

		                    // Set the default offset
		                    point.below = !up;
		                    if (inverted) {
		                        if (!lowerDataLabelOptions.align) {
		                            lowerDataLabelOptions.align = up ? 'left' : 'right';
		                        }
		                    } else {
		                        if (!lowerDataLabelOptions.verticalAlign) {
		                            lowerDataLabelOptions.verticalAlign = up ?
		                                'bottom' :
		                                'top';
		                        }
		                    }
		                }
		            }

		            this.options.dataLabels = lowerDataLabelOptions;

		            if (seriesProto.drawDataLabels) {
		                seriesProto.drawDataLabels.apply(this, arguments);
		            }
		        }

		        // Merge upper and lower into point.dataLabels for later destroying
		        if (upperDataLabelOptions.enabled) {
		            i = length;
		            while (i--) {
		                point = data[i];
		                if (point && point.dataLabelUpper) {
		                    point.dataLabels = [point.dataLabelUpper, point.dataLabel];
		                }
		            }
		        }

		        // Reset options
		        this.options.dataLabels = dataLabelOptions;
		    },

		    alignDataLabel: function () {
		        seriesTypes.column.prototype.alignDataLabel.apply(this, arguments);
		    },

		    drawPoints: function () {
		        var series = this,
		            pointLength = series.points.length,
		            point,
		            i;

		        // Draw bottom points
		        seriesProto.drawPoints.apply(series, arguments);

		        // Prepare drawing top points
		        i = 0;
		        while (i < pointLength) {
		            point = series.points[i];

		            // Save original props to be overridden by temporary props for top
		            // points
		            point.origProps = {
		                plotY: point.plotY,
		                plotX: point.plotX,
		                isInside: point.isInside,
		                negative: point.negative,
		                zone: point.zone,
		                y: point.y
		            };

		            point.lowerGraphic = point.graphic;
		            point.graphic = point.upperGraphic;
		            point.plotY = point.plotHigh;
		            if (defined(point.plotHighX)) {
		                point.plotX = point.plotHighX;
		            }
		            point.y = point.high;
		            point.negative = point.high < (series.options.threshold || 0);
		            point.zone = series.zones.length && point.getZone();

		            if (!series.chart.polar) {
		                point.isInside = point.isTopInside = (
		                    point.plotY !== undefined &&
		                    point.plotY >= 0 &&
		                    point.plotY <= series.yAxis.len && // #3519
		                    point.plotX >= 0 &&
		                    point.plotX <= series.xAxis.len
		                );
		            }
		            i++;
		        }

		        // Draw top points
		        seriesProto.drawPoints.apply(series, arguments);

		        // Reset top points preliminary modifications
		        i = 0;
		        while (i < pointLength) {
		            point = series.points[i];
		            point.upperGraphic = point.graphic;
		            point.graphic = point.lowerGraphic;
		            H.extend(point, point.origProps);
		            delete point.origProps;
		            i++;
		        }
		    },

		    setStackedPoints: noop
		}, {
		    setState: function () {
		        var prevState = this.state,
		            series = this.series,
		            isPolar = series.chart.polar;


		        if (!defined(this.plotHigh)) {
		            // Boost doesn't calculate plotHigh
		            this.plotHigh = series.yAxis.toPixels(this.high, true);
		        }

		        if (!defined(this.plotLow)) {
		            // Boost doesn't calculate plotLow
		            this.plotLow = this.plotY = series.yAxis.toPixels(this.low, true);
		        }

		        if (series.stateMarkerGraphic) {
		            series.lowerStateMarkerGraphic = series.stateMarkerGraphic;
		            series.stateMarkerGraphic = series.upperStateMarkerGraphic;
		        }

		        // Change state also for the top marker
		        this.graphic = this.upperGraphic;
		        this.plotY = this.plotHigh;

		        if (isPolar) {
		            this.plotX = this.plotHighX;
		        }

		        // Top state:
		        pointProto.setState.apply(this, arguments);

		        this.state = prevState;

		        // Now restore defaults
		        this.plotY = this.plotLow;
		        this.graphic = this.lowerGraphic;

		        if (isPolar) {
		            this.plotX = this.plotLowX;
		        }

		        if (series.stateMarkerGraphic) {
		            series.upperStateMarkerGraphic = series.stateMarkerGraphic;
		            series.stateMarkerGraphic = series.lowerStateMarkerGraphic;
		            // Lower marker is stored at stateMarkerGraphic
		            // to avoid reference duplication (#7021)
		            series.lowerStateMarkerGraphic = undefined;
		        }

		        pointProto.setState.apply(this, arguments);

		    },
		    haloPath: function () {
		        var isPolar = this.series.chart.polar,
		            path = [];

		        // Bottom halo
		        this.plotY = this.plotLow;
		        if (isPolar) {
		            this.plotX = this.plotLowX;
		        }

		        if (this.isInside) {
		            path = pointProto.haloPath.apply(this, arguments);
		        }

		        // Top halo
		        this.plotY = this.plotHigh;
		        if (isPolar) {
		            this.plotX = this.plotHighX;
		        }
		        if (this.isTopInside) {
		            path = path.concat(
		                pointProto.haloPath.apply(this, arguments)
		            );
		        }

		        return path;
		    },
		    destroyElements: function () {
		        var graphics = ['lowerGraphic', 'upperGraphic'];

		        each(graphics, function (graphicName) {
		            if (this[graphicName]) {
		                this[graphicName] = this[graphicName].destroy();
		            }
		        }, this);

		        // Clear graphic for states, removed in the above each:
		        this.graphic = null;

		        return pointProto.destroyElements.apply(this, arguments);
		    }
		});


		/**
		 * A `arearange` series. If the [type](#series.arearange.type) option
		 * is not specified, it is inherited from [chart.type](#chart.type).
		 *
		 *
		 * @type      {Object}
		 * @extends   series,plotOptions.arearange
		 * @excluding dataParser,dataURL,stack,stacking
		 * @product   highcharts highstock
		 * @apioption series.arearange
		 */

		/**
		 * An array of data points for the series. For the `arearange` series
		 * type, points can be given in the following ways:
		 *
		 * 1.  An array of arrays with 3 or 2 values. In this case, the values
		 * correspond to `x,low,high`. If the first value is a string, it is
		 * applied as the name of the point, and the `x` value is inferred.
		 * The `x` value can also be omitted, in which case the inner arrays
		 * should be of length 2\. Then the `x` value is automatically calculated,
		 * either starting at 0 and incremented by 1, or from `pointStart`
		 * and `pointInterval` given in the series options.
		 *
		 *  ```js
		 *     data: [
		 *         [0, 8, 3],
		 *         [1, 1, 1],
		 *         [2, 6, 8]
		 *     ]
		 *  ```
		 *
		 * 2.  An array of objects with named values. The following snippet shows only a
		 * few settings, see the complete options set below. If the total number of data
		 * points exceeds the series'
		 * [turboThreshold](#series.arearange.turboThreshold),
		 * this option is not available.
		 *
		 *  ```js
		 *     data: [{
		 *         x: 1,
		 *         low: 9,
		 *         high: 0,
		 *         name: "Point2",
		 *         color: "#00FF00"
		 *     }, {
		 *         x: 1,
		 *         low: 3,
		 *         high: 4,
		 *         name: "Point1",
		 *         color: "#FF00FF"
		 *     }]
		 *  ```
		 *
		 * @type      {Array<Object|Array>}
		 * @extends   series.line.data
		 * @excluding marker,y
		 * @sample    {highcharts} highcharts/chart/reflow-true/
		 *            Numerical values
		 * @sample    {highcharts} highcharts/series/data-array-of-arrays/
		 *            Arrays of numeric x and y
		 * @sample    {highcharts} highcharts/series/data-array-of-arrays-datetime/
		 *            Arrays of datetime x and y
		 * @sample    {highcharts} highcharts/series/data-array-of-name-value/
		 *            Arrays of point.name and y
		 * @sample    {highcharts} highcharts/series/data-array-of-objects/
		 *            Config objects
		 * @product   highcharts highstock
		 * @apioption series.arearange.data
		 */

		/**
		 * The high or maximum value for each data point.
		 *
		 * @type      {Number}
		 * @product   highcharts highstock
		 * @apioption series.arearange.data.high
		 */

		/**
		 * The low or minimum value for each data point.
		 *
		 * @type      {Number}
		 * @product   highcharts highstock
		 * @apioption series.arearange.data.low
		 */

		 /**
		 * @excluding x,y
		 * @product   highcharts highstock
		 * @apioption series.arearange.dataLabels
		 */

	}(Highcharts));
	(function (H) {
		/**
		 * (c) 2010-2018 Torstein Honsi
		 *
		 * License: www.highcharts.com/license
		 */

		var seriesType = H.seriesType,
		    seriesTypes = H.seriesTypes;

		/**
		 * The area spline range is a cartesian series type with higher and
		 * lower Y values along an X axis. The area inside the range is colored, and
		 * the graph outlining the area is a smoothed spline. Requires
		 * `highcharts-more.js`.
		 *
		 * @extends   plotOptions.arearange
		 * @excluding step
		 * @since     2.3.0
		 * @sample    {highstock|highstock} stock/demo/areasplinerange/
		 *            Area spline range
		 * @product   highcharts highstock
		 * @apioption plotOptions.areasplinerange
		 */
		seriesType('areasplinerange', 'arearange', null, {
		    getPointSpline: seriesTypes.spline.prototype.getPointSpline
		});

		/**
		 * A `areasplinerange` series. If the [type](#series.areasplinerange.type)
		 * option is not specified, it is inherited from [chart.type](#chart.type).
		 *
		 * @type      {Object}
		 * @extends   series,plotOptions.areasplinerange
		 * @excluding dataParser,dataURL,stack
		 * @product   highcharts highstock
		 * @apioption series.areasplinerange
		 */

		/**
		 * An array of data points for the series. For the `areasplinerange`
		 * series type, points can be given in the following ways:
		 *
		 * 1.  An array of arrays with 3 or 2 values. In this case, the values
		 * correspond to `x,low,high`. If the first value is a string, it is
		 * applied as the name of the point, and the `x` value is inferred.
		 * The `x` value can also be omitted, in which case the inner arrays
		 * should be of length 2\. Then the `x` value is automatically calculated,
		 * either starting at 0 and incremented by 1, or from `pointStart`
		 * and `pointInterval` given in the series options.
		 *
		 *  ```js
		 *     data: [
		 *         [0, 0, 5],
		 *         [1, 9, 1],
		 *         [2, 5, 2]
		 *     ]
		 *  ```
		 *
		 * 2.  An array of objects with named values. The following snippet shows only a
		 * few settings, see the complete options set below. If the total number of data
		 * points exceeds the series' [turboThreshold](
		 * #series.areasplinerange.turboThreshold), this option is not available.
		 *
		 *  ```js
		 *     data: [{
		 *         x: 1,
		 *         low: 5,
		 *         high: 0,
		 *         name: "Point2",
		 *         color: "#00FF00"
		 *     }, {
		 *         x: 1,
		 *         low: 4,
		 *         high: 1,
		 *         name: "Point1",
		 *         color: "#FF00FF"
		 *     }]
		 *  ```
		 *
		 * @type      {Array<Object|Array>}
		 * @extends   series.arearange.data
		 * @sample    {highcharts} highcharts/chart/reflow-true/
		 *            Numerical values
		 * @sample    {highcharts} highcharts/series/data-array-of-arrays/
		 *            Arrays of numeric x and y
		 * @sample    {highcharts} highcharts/series/data-array-of-arrays-datetime/
		 *            Arrays of datetime x and y
		 * @sample    {highcharts} highcharts/series/data-array-of-name-value/
		 *            Arrays of point.name and y
		 * @sample    {highcharts} highcharts/series/data-array-of-objects/
		 *            Config objects
		 * @product   highcharts highstock
		 * @apioption series.areasplinerange.data
		 */

	}(Highcharts));
	(function (H) {
		/**
		 * (c) 2010-2018 Torstein Honsi
		 *
		 * License: www.highcharts.com/license
		 */
		var defaultPlotOptions = H.defaultPlotOptions,
		    each = H.each,
		    merge = H.merge,
		    noop = H.noop,
		    pick = H.pick,
		    seriesType = H.seriesType,
		    seriesTypes = H.seriesTypes;

		var colProto = seriesTypes.column.prototype;
		/**
		 * The column range is a cartesian series type with higher and lower
		 * Y values along an X axis. Requires `highcharts-more.js`. To display
		 * horizontal bars, set [chart.inverted](#chart.inverted) to `true`.
		 *
		 * @type         {Object}
		 * @extends      plotOptions.column
		 * @excluding    negativeColor,stacking,softThreshold,threshold
		 * @sample       {highcharts|highstock} highcharts/demo/columnrange/
		 *               Inverted column range
		 * @since        2.3.0
		 * @product      highcharts highstock
		 * @optionparent plotOptions.columnrange
		 */
		var columnRangeOptions = {

		    /**
		     * Extended data labels for range series types. Range series data labels
		     * have no `x` and `y` options. Instead, they have `xLow`, `xHigh`,
		     * `yLow` and `yHigh` options to allow the higher and lower data label
		     * sets individually.
		     *
		     * @type      {Object}
		     * @extends   plotOptions.arearange.dataLabels
		     * @excluding x,y
		     * @since     2.3.0
		     * @product   highcharts highstock
		     * @apioption plotOptions.columnrange.dataLabels
		     */

		    pointRange: null,

		    /** @ignore-option */
		    marker: null,

		    states: {
		        hover: {
		            /** @ignore-option */
		            halo: false
		        }
		    }
		};
		/**
		 * The ColumnRangeSeries class
		 */
		seriesType('columnrange', 'arearange', merge(
		    defaultPlotOptions.column,
		    defaultPlotOptions.arearange,
		    columnRangeOptions

		), {
		    /**
		     * Translate data points from raw values x and y to plotX and plotY
		     */
		    translate: function () {
		        var series = this,
		            yAxis = series.yAxis,
		            xAxis = series.xAxis,
		            startAngleRad = xAxis.startAngleRad,
		            start,
		            chart = series.chart,
		            isRadial = series.xAxis.isRadial,
		            safeDistance = Math.max(chart.chartWidth, chart.chartHeight) + 999,
		            plotHigh;

		        // Don't draw too far outside plot area (#6835)
		        function safeBounds(pixelPos) {
		            return Math.min(Math.max(
		                -safeDistance,
		                pixelPos
		            ), safeDistance);
		        }


		        colProto.translate.apply(series);

		        // Set plotLow and plotHigh
		        each(series.points, function (point) {
		            var shapeArgs = point.shapeArgs,
		                minPointLength = series.options.minPointLength,
		                heightDifference,
		                height,
		                y;

		            point.plotHigh = plotHigh = safeBounds(
		                yAxis.translate(point.high, 0, 1, 0, 1)
		            );
		            point.plotLow = safeBounds(point.plotY);

		            // adjust shape
		            y = plotHigh;
		            height = pick(point.rectPlotY, point.plotY) - plotHigh;

		            // Adjust for minPointLength
		            if (Math.abs(height) < minPointLength) {
		                heightDifference = (minPointLength - height);
		                height += heightDifference;
		                y -= heightDifference / 2;

		            // Adjust for negative ranges or reversed Y axis (#1457)
		            } else if (height < 0) {
		                height *= -1;
		                y -= height;
		            }

		            if (isRadial) {

		                start = point.barX + startAngleRad;
		                point.shapeType = 'path';
		                point.shapeArgs = {
		                    d: series.polarArc(
		                        y + height,
		                        y,
		                        start,
		                        start + point.pointWidth
		                    )
		                };
		            } else {

		                shapeArgs.height = height;
		                shapeArgs.y = y;

		                point.tooltipPos = chart.inverted ?
		                [
		                    yAxis.len + yAxis.pos - chart.plotLeft - y - height / 2,
		                    xAxis.len + xAxis.pos - chart.plotTop - shapeArgs.x -
		                        shapeArgs.width / 2,
		                    height
		                ] : [
		                    xAxis.left - chart.plotLeft + shapeArgs.x +
		                        shapeArgs.width / 2,
		                    yAxis.pos - chart.plotTop + y + height / 2,
		                    height
		                ]; // don't inherit from column tooltip position - #3372
		            }
		        });
		    },
		    directTouch: true,
		    trackerGroups: ['group', 'dataLabelsGroup'],
		    drawGraph: noop,
		    getSymbol: noop,
		    crispCol: colProto.crispCol,
		    drawPoints: colProto.drawPoints,
		    drawTracker: colProto.drawTracker,
		    getColumnMetrics: colProto.getColumnMetrics,
		    pointAttribs: colProto.pointAttribs,

		    // Overrides from modules that may be loaded after this module
		    animate: function () {
		        return colProto.animate.apply(this, arguments);
		    },
		    polarArc: function () {
		        return colProto.polarArc.apply(this, arguments);
		    },
		    translate3dPoints: function () {
		        return colProto.translate3dPoints.apply(this, arguments);
		    },
		    translate3dShapes: function () {
		        return colProto.translate3dShapes.apply(this, arguments);
		    }
		}, {
		    setState: colProto.pointClass.prototype.setState
		});


		/**
		 * A `columnrange` series. If the [type](#series.columnrange.type)
		 * option is not specified, it is inherited from
		 * [chart.type](#chart.type).
		 *
		 * @type      {Object}
		 * @extends   series,plotOptions.columnrange
		 * @excluding dataParser,dataURL,stack,stacking
		 * @product   highcharts highstock
		 * @apioption series.columnrange
		 */

		/**
		 * An array of data points for the series. For the `columnrange` series
		 * type, points can be given in the following ways:
		 *
		 * 1.  An array of arrays with 3 or 2 values. In this case, the values
		 * correspond to `x,low,high`. If the first value is a string, it is
		 * applied as the name of the point, and the `x` value is inferred.
		 * The `x` value can also be omitted, in which case the inner arrays
		 * should be of length 2\. Then the `x` value is automatically calculated,
		 * either starting at 0 and incremented by 1, or from `pointStart`
		 * and `pointInterval` given in the series options.
		 *
		 *  ```js
		 *     data: [
		 *         [0, 4, 2],
		 *         [1, 2, 1],
		 *         [2, 9, 10]
		 *     ]
		 *  ```
		 *
		 * 2.  An array of objects with named values. The following snippet shows only a
		 * few settings, see the complete options set below. If the total number of data
		 * points exceeds the series' [turboThreshold](
		 * #series.columnrange.turboThreshold), this option is not available.
		 *
		 *  ```js
		 *     data: [{
		 *         x: 1,
		 *         low: 0,
		 *         high: 4,
		 *         name: "Point2",
		 *         color: "#00FF00"
		 *     }, {
		 *         x: 1,
		 *         low: 5,
		 *         high: 3,
		 *         name: "Point1",
		 *         color: "#FF00FF"
		 *     }]
		 *  ```
		 *
		 * @type      {Array<Object|Array>}
		 * @extends   series.arearange.data
		 * @excluding marker
		 * @sample    {highcharts} highcharts/chart/reflow-true/
		 *            Numerical values
		 * @sample    {highcharts} highcharts/series/data-array-of-arrays/
		 *            Arrays of numeric x and y
		 * @sample    {highcharts} highcharts/series/data-array-of-arrays-datetime/
		 *            Arrays of datetime x and y
		 * @sample    {highcharts} highcharts/series/data-array-of-name-value/
		 *            Arrays of point.name and y
		 * @sample    {highcharts} highcharts/series/data-array-of-objects/
		 *            Config objects
		 * @product   highcharts highstock
		 * @apioption series.columnrange.data
		 */

		/**
		 * @excluding halo,lineWidth,lineWidthPlus,marker
		 * @product   highcharts highstock
		 * @apioption series.columnrange.states.hover
		 */

		/**
		 * @excluding halo,lineWidth,lineWidthPlus,marker
		 * @product   highcharts highstock
		 * @apioption series.columnrange.states.select
		 */

	}(Highcharts));
	(function (H) {
		/**
		 * (c) 2010-2018 Torstein Honsi
		 *
		 * License: www.highcharts.com/license
		 */
		var each = H.each,
		    isNumber = H.isNumber,
		    merge = H.merge,
		    noop = H.noop,
		    pick = H.pick,
		    pInt = H.pInt,
		    Series = H.Series,
		    seriesType = H.seriesType,
		    TrackerMixin = H.TrackerMixin;


		/**
		 * Gauges are circular plots displaying one or more values with a dial pointing
		 * to values along the perimeter.
		 *
		 * @sample       highcharts/demo/gauge-speedometer/ Gauge chart
		 * @extends      {plotOptions.line}
		 * @excluding    animationLimit,boostThreshold,connectEnds,connectNulls,
		 *               cropThreshold,dashStyle,findNearestPointBy,getExtremesFromAll,
		 *               marker,negativeColor,pointPlacement,shadow,softThreshold,
		 *               stacking,states,step,threshold,turboThreshold,xAxis,zoneAxis,
		 *               zones
		 * @product      highcharts
		 * @optionparent plotOptions.gauge
		 */
		seriesType('gauge', 'line', {

		    /**
		     * When this option is `true`, the dial will wrap around the axes. For
		     * instance, in a full-range gauge going from 0 to 360, a value of 400
		     * will point to 40\. When `wrap` is `false`, the dial stops at 360.
		     *
		     * @type      {Boolean}
		     * @see       [overshoot](#plotOptions.gauge.overshoot)
		     * @default   true
		     * @since     3.0
		     * @product   highcharts
		     * @apioption plotOptions.gauge.wrap
		     */

		    /**
		     * Data labels for the gauge. For gauges, the data labels are enabled
		     * by default and shown in a bordered box below the point.
		     *
		     * @type    {Object}
		     * @extends plotOptions.series.dataLabels
		     * @since   2.3.0
		     * @product highcharts
		     */
		    dataLabels: {

		        /**
		         * Enable or disable the data labels.
		         *
		         * @since   2.3.0
		         * @product highcharts highmaps
		         */
		        enabled: true,

		        defer: false,

		        /**
		         * The y position offset of the label relative to the center of the
		         * gauge.
		         *
		         * @since   2.3.0
		         * @product highcharts highmaps
		         */
		        y: 15,

		        /**
		         * The border radius in pixels for the gauge's data label.
		         *
		         * @since   2.3.0
		         * @product highcharts highmaps
		         */
		        borderRadius: 3,

		        crop: false,

		        /**
		         * The vertical alignment of the data label.
		         *
		         * @product highcharts highmaps
		         */
		        verticalAlign: 'top',

		        /**
		         * The Z index of the data labels. A value of 2 display them behind
		         * the dial.
		         *
		         * @since   2.1.5
		         * @product highcharts highmaps
		         */
		        zIndex: 2,
        
		        // Presentational

		        /**
		         * The border width in pixels for the gauge data label.
		         *
		         * @since   2.3.0
		         * @product highcharts highmaps
		         */
		        borderWidth: 1,

		        /**
		         * The border color for the data label.
		         *
		         * @type    {Color}
		         * @default #cccccc
		         * @since   2.3.0
		         * @product highcharts highmaps
		         */
		        borderColor: '#cccccc'
        
		    },

		    /**
		     * Options for the dial or arrow pointer of the gauge.
		     *
		     * In styled mode, the dial is styled with the
		     * `.highcharts-gauge-series .highcharts-dial` rule.
		     *
		     * @type    {Object}
		     * @sample  {highcharts} highcharts/css/gauge/ Styled mode
		     * @since   2.3.0
		     * @product highcharts
		     */
		    dial: {},

		    /**
		     * The length of the dial's base part, relative to the total radius
		     * or length of the dial.
		     *
		     * @type      {String}
		     * @sample    {highcharts} highcharts/plotoptions/gauge-dial/
		     *            Dial options demonstrated
		     * @default   70%
		     * @since     2.3.0
		     * @product   highcharts
		     * @apioption plotOptions.gauge.dial.baseLength
		     */

		    /**
		     * The pixel width of the base of the gauge dial. The base is the part
		     * closest to the pivot, defined by baseLength.
		     *
		     * @type      {Number}
		     * @sample    {highcharts} highcharts/plotoptions/gauge-dial/
		     *            Dial options demonstrated
		     * @default   3
		     * @since     2.3.0
		     * @product   highcharts
		     * @apioption plotOptions.gauge.dial.baseWidth
		     */

		    /**
		     * The radius or length of the dial, in percentages relative to the
		     * radius of the gauge itself.
		     *
		     * @type      {String}
		     * @sample    {highcharts} highcharts/plotoptions/gauge-dial/
		     *            Dial options demonstrated
		     * @default   80%
		     * @since     2.3.0
		     * @product   highcharts
		     * @apioption plotOptions.gauge.dial.radius
		     */

		    /**
		     * The length of the dial's rear end, the part that extends out on the
		     * other side of the pivot. Relative to the dial's length.
		     *
		     * @type      {String}
		     * @sample    {highcharts} highcharts/plotoptions/gauge-dial/
		     *            Dial options demonstrated
		     * @default   10%
		     * @since     2.3.0
		     * @product   highcharts
		     * @apioption plotOptions.gauge.dial.rearLength
		     */

		    /**
		     * The width of the top of the dial, closest to the perimeter. The pivot
		     * narrows in from the base to the top.
		     *
		     * @type      {Number}
		     * @sample    {highcharts} highcharts/plotoptions/gauge-dial/
		     *            Dial options demonstrated
		     * @default   1
		     * @since     2.3.0
		     * @product   highcharts
		     * @apioption plotOptions.gauge.dial.topWidth
		     */

    

		    /**
		     * The background or fill color of the gauge's dial.
		     *
		     * @type      {Color}
		     * @sample    {highcharts} highcharts/plotoptions/gauge-dial/
		     *            Dial options demonstrated
		     * @default   #000000
		     * @since     2.3.0
		     * @product   highcharts
		     * @apioption plotOptions.gauge.dial.backgroundColor
		     */

		    /**
		     * The border color or stroke of the gauge's dial. By default, the
		     * borderWidth is 0, so this must be set in addition to a custom border
		     * color.
		     *
		     * @type      {Color}
		     * @sample    {highcharts} highcharts/plotoptions/gauge-dial/
		     *            Dial options demonstrated
		     * @default   #cccccc
		     * @since     2.3.0
		     * @product   highcharts
		     * @apioption plotOptions.gauge.dial.borderColor
		     */

		    /**
		     * The width of the gauge dial border in pixels.
		     *
		     * @type      {Number}
		     * @sample    {highcharts} highcharts/plotoptions/gauge-dial/
		     *            Dial options demonstrated
		     * @default   0
		     * @since     2.3.0
		     * @product   highcharts
		     * @apioption plotOptions.gauge.dial.borderWidth
		     */

    

		    /**
		     * Allow the dial to overshoot the end of the perimeter axis by this
		     * many degrees. Say if the gauge axis goes from 0 to 60, a value of
		     * 100, or 1000, will show 5 degrees beyond the end of the axis when this
		     * option is set to 5.
		     *
		     * @type      {Number}
		     * @see       [wrap](#plotOptions.gauge.wrap)
		     * @sample    {highcharts} highcharts/plotoptions/gauge-overshoot/
		     *            Allow 5 degrees overshoot
		     * @default   0
		     * @since     3.0.10
		     * @product   highcharts
		     * @apioption plotOptions.gauge.overshoot
		     */

		    /**
		     * Options for the pivot or the center point of the gauge.
		     *
		     * In styled mode, the pivot is styled with the
		     * `.highcharts-gauge-series .highcharts-pivot` rule.
		     *
		     * @type    {Object}
		     * @sample  {highcharts} highcharts/css/gauge/ Styled mode
		     * @since   2.3.0
		     * @product highcharts
		     */
		    pivot: {},

		    /**
		     * The pixel radius of the pivot.
		     *
		     * @type      {Number}
		     * @sample    {highcharts} highcharts/plotoptions/gauge-pivot/
		     *            Pivot options demonstrated
		     * @default   5
		     * @since     2.3.0
		     * @product   highcharts
		     * @apioption plotOptions.gauge.pivot.radius
		     */

    

		    /**
		     * The border or stroke width of the pivot.
		     *
		     * @type      {Number}
		     * @sample    {highcharts} highcharts/plotoptions/gauge-pivot/
		     *            Pivot options demonstrated
		     * @default   0
		     * @since     2.3.0
		     * @product   highcharts
		     * @apioption plotOptions.gauge.pivot.borderWidth
		     */

		    /**
		     * The border or stroke color of the pivot. In able to change this,
		     * the borderWidth must also be set to something other than the default
		     * 0.
		     *
		     * @type      {Color}
		     * @sample    {highcharts} highcharts/plotoptions/gauge-pivot/
		     *            Pivot options demonstrated
		     * @default   #cccccc
		     * @since     2.3.0
		     * @product   highcharts
		     * @apioption plotOptions.gauge.pivot.borderColor
		        */

		    /**
		     * The background color or fill of the pivot.
		     *
		     * @type      {Color}
		     * @sample    {highcharts} highcharts/plotoptions/gauge-pivot/
		     *            Pivot options demonstrated
		     * @default   #000000
		     * @since     2.3.0
		     * @product   highcharts
		     * @apioption plotOptions.gauge.pivot.backgroundColor
		     */
    


		    tooltip: {
		        headerFormat: ''
		    },

		    /**
		     * Whether to display this particular series or series type in the
		     * legend. Defaults to false for gauge series.
		     *
		     * @since   2.3.0
		     * @product highcharts
		     */
		    showInLegend: false



		// Prototype members
		}, {
		    // chart.angular will be set to true when a gauge series is present,
		    // and this will be used on the axes
		    angular: true,
		    directTouch: true, // #5063
		    drawGraph: noop,
		    fixedBox: true,
		    forceDL: true,
		    noSharedTooltip: true,
		    trackerGroups: ['group', 'dataLabelsGroup'],

		    /**
		     * Calculate paths etc
		     */
		    translate: function () {

		        var series = this,
		            yAxis = series.yAxis,
		            options = series.options,
		            center = yAxis.center;

		        series.generatePoints();

		        each(series.points, function (point) {

		            var dialOptions = merge(options.dial, point.dial),
		                radius = (pInt(pick(dialOptions.radius, 80)) * center[2]) /
		                    200,
		                baseLength = (pInt(pick(dialOptions.baseLength, 70)) * radius) /
		                    100,
		                rearLength = (pInt(pick(dialOptions.rearLength, 10)) * radius) /
		                    100,
		                baseWidth = dialOptions.baseWidth || 3,
		                topWidth = dialOptions.topWidth || 1,
		                overshoot = options.overshoot,
		                rotation = yAxis.startAngleRad +
		                    yAxis.translate(point.y, null, null, null, true);

		            // Handle the wrap and overshoot options
		            if (isNumber(overshoot)) {
		                overshoot = overshoot / 180 * Math.PI;
		                rotation = Math.max(
		                    yAxis.startAngleRad - overshoot,
		                    Math.min(yAxis.endAngleRad + overshoot, rotation)
		                );

		            } else if (options.wrap === false) {
		                rotation = Math.max(
		                    yAxis.startAngleRad,
		                    Math.min(yAxis.endAngleRad, rotation)
		                );
		            }

		            rotation = rotation * 180 / Math.PI;

		            point.shapeType = 'path';
		            point.shapeArgs = {
		                d: dialOptions.path || [
		                    'M',
		                    -rearLength, -baseWidth / 2,
		                    'L',
		                    baseLength, -baseWidth / 2,
		                    radius, -topWidth / 2,
		                    radius, topWidth / 2,
		                    baseLength, baseWidth / 2,
		                    -rearLength, baseWidth / 2,
		                    'z'
		                ],
		                translateX: center[0],
		                translateY: center[1],
		                rotation: rotation
		            };

		            // Positions for data label
		            point.plotX = center[0];
		            point.plotY = center[1];
		        });
		    },

		    /**
		     * Draw the points where each point is one needle
		     */
		    drawPoints: function () {

		        var series = this,
		            center = series.yAxis.center,
		            pivot = series.pivot,
		            options = series.options,
		            pivotOptions = options.pivot,
		            renderer = series.chart.renderer;

		        each(series.points, function (point) {

		            var graphic = point.graphic,
		                shapeArgs = point.shapeArgs,
		                d = shapeArgs.d,
		                dialOptions = merge(options.dial, point.dial); // #1233

		            if (graphic) {
		                graphic.animate(shapeArgs);
		                shapeArgs.d = d; // animate alters it
		            } else {
		                point.graphic = renderer[point.shapeType](shapeArgs)
		                    .attr({
		                        // required by VML when animation is false
		                        rotation: shapeArgs.rotation,
		                        zIndex: 1
		                    })
		                    .addClass('highcharts-dial')
		                    .add(series.group);

                
		                // Presentational attributes
		                point.graphic.attr({
		                    stroke: dialOptions.borderColor || 'none',
		                    'stroke-width': dialOptions.borderWidth || 0,
		                    fill: dialOptions.backgroundColor ||
		                        '#000000'
		                });
                
		            }
		        });

		        // Add or move the pivot
		        if (pivot) {
		            pivot.animate({ // #1235
		                translateX: center[0],
		                translateY: center[1]
		            });
		        } else {
		            series.pivot = renderer.circle(0, 0, pick(pivotOptions.radius, 5))
		                .attr({
		                    zIndex: 2
		                })
		                .addClass('highcharts-pivot')
		                .translate(center[0], center[1])
		                .add(series.group);

            
		            // Presentational attributes
		            series.pivot.attr({
		                'stroke-width': pivotOptions.borderWidth || 0,
		                stroke: pivotOptions.borderColor ||
		                    '#cccccc',
		                fill: pivotOptions.backgroundColor ||
		                    '#000000'
		            });
            
		        }
		    },

		    /**
		     * Animate the arrow up from startAngle
		     */
		    animate: function (init) {
		        var series = this;

		        if (!init) {
		            each(series.points, function (point) {
		                var graphic = point.graphic;

		                if (graphic) {
		                    // start value
		                    graphic.attr({
		                        rotation: series.yAxis.startAngleRad * 180 / Math.PI
		                    });

		                    // animate
		                    graphic.animate({
		                        rotation: point.shapeArgs.rotation
		                    }, series.options.animation);
		                }
		            });

		            // delete this function to allow it only once
		            series.animate = null;
		        }
		    },

		    render: function () {
		        this.group = this.plotGroup(
		            'group',
		            'series',
		            this.visible ? 'visible' : 'hidden',
		            this.options.zIndex,
		            this.chart.seriesGroup
		        );
		        Series.prototype.render.call(this);
		        this.group.clip(this.chart.clipRect);
		    },

		    /**
		     * Extend the basic setData method by running processData and generatePoints
		     * immediately, in order to access the points from the legend.
		     */
		    setData: function (data, redraw) {
		        Series.prototype.setData.call(this, data, false);
		        this.processData();
		        this.generatePoints();
		        if (pick(redraw, true)) {
		            this.chart.redraw();
		        }
		    },

		    /**
		     * If the tracking module is loaded, add the point tracker
		     */
		    drawTracker: TrackerMixin && TrackerMixin.drawTrackerPoint

		// Point members
		}, {
		    /**
		     * Don't do any hover colors or anything
		     */
		    setState: function (state) {
		        this.state = state;
		    }
		});

		/**
		 * A `gauge` series. If the [type](#series.gauge.type) option is not
		 * specified, it is inherited from [chart.type](#chart.type).
		 *
		 * @type      {Object}
		 * @extends   series,plotOptions.gauge
		 * @excluding animationLimit,boostThreshold,connectEnds,connectNulls,
		 *            cropThreshold,dashStyle,dataParser,dataURL,findNearestPointBy,
		 *            getExtremesFromAll,marker,negativeColor,pointPlacement,shadow,
		 *            softThreshold,stack,stacking,states,step,threshold,
		 *            turboThreshold,zoneAxis,zones
		 * @product   highcharts
		 * @apioption series.gauge
		 */

		/**
		 * An array of data points for the series. For the `gauge` series type,
		 * points can be given in the following ways:
		 *
		 * 1.  An array of numerical values. In this case, the numerical values
		 * will be interpreted as `y` options. Example:
		 *
		 *  ```js
		 *  data: [0, 5, 3, 5]
		 *  ```
		 *
		 * 2.  An array of objects with named values. The following snippet shows only a
		 * few settings, see the complete options set below. If the total number of data
		 * points exceeds the series' [turboThreshold](#series.gauge.turboThreshold),
		 * this option is not available.
		 *
		 *  ```js
		 *     data: [{
		 *     y: 6,
		 *     name: "Point2",
		 *     color: "#00FF00"
		 * }, {
		 *     y: 8,
		 *     name: "Point1",
		 *     color: "#FF00FF"
		 * }]</pre>
		 *
		 * The typical gauge only contains a single data value.
		 *
		 * @type      {Array<Object|Number>}
		 * @extends   series.line.data
		 * @excluding drilldown,marker,x
		 * @sample    {highcharts} highcharts/chart/reflow-true/
		 *            Numerical values
		 * @sample    {highcharts} highcharts/series/data-array-of-arrays/
		 *            Arrays of numeric x and y
		 * @sample    {highcharts} highcharts/series/data-array-of-arrays-datetime/
		 *            Arrays of datetime x and y
		 * @sample    {highcharts} highcharts/series/data-array-of-name-value/
		 *            Arrays of point.name and y
		 * @sample    {highcharts} highcharts/series/data-array-of-objects/
		 *            Config objects
		 * @product   highcharts
		 * @apioption series.gauge.data
		 */

	}(Highcharts));
	(function (H) {
		/**
		 * (c) 2010-2018 Torstein Honsi
		 *
		 * License: www.highcharts.com/license
		 */

		var each = H.each,
		    noop = H.noop,
		    pick = H.pick,
		    seriesType = H.seriesType,
		    seriesTypes = H.seriesTypes;

		/**
		 * The boxplot series type.
		 *
		 * @constructor seriesTypes.boxplot
		 * @augments    seriesTypes.column
		 */

		/**
		 * A box plot is a convenient way of depicting groups of data through their
		 * five-number summaries: the smallest observation (sample minimum), lower
		 * quartile (Q1), median (Q2), upper quartile (Q3), and largest observation
		 * (sample maximum).
		 *
		 * @sample       highcharts/demo/box-plot/ Box plot
		 * @extends      {plotOptions.column}
		 * @product      highcharts
		 * @excluding    borderColor,borderRadius,borderWidth,groupZPadding,states
		 * @optionparent plotOptions.boxplot
		 */
		seriesType('boxplot', 'column', {

		    threshold: null,

		    tooltip: {
        

		        pointFormat: // eslint-disable-line no-dupe-keys
		            '<span style="color:{point.color}">\u25CF</span> <b> ' +
		            '{series.name}</b><br/>' +
		            'Maximum: {point.high}<br/>' +
		            'Upper quartile: {point.q3}<br/>' +
		            'Median: {point.median}<br/>' +
		            'Lower quartile: {point.q1}<br/>' +
		            'Minimum: {point.low}<br/>'
        
		    },

		    /**
		     * The length of the whiskers, the horizontal lines marking low and
		     * high values. It can be a numerical pixel value, or a percentage
		     * value of the box width. Set `0` to disable whiskers.
		     *
		     * @type    {Number|String}
		     * @sample  {highcharts} highcharts/plotoptions/box-plot-styling/
		     *          True by default
		     * @since   3.0
		     * @product highcharts
		     */
		    whiskerLength: '50%',
    

		    /**
		     * The fill color of the box.
		     *
		     * In styled mode, the fill color can be set with the
		     * `.highcharts-boxplot-box` class.
		     *
		     * @type    {Color}
		     * @sample  {highcharts} highcharts/plotoptions/box-plot-styling/
		     *          Box plot styling
		     * @default #ffffff
		     * @since   3.0
		     * @product highcharts
		     */
		    fillColor: '#ffffff',

		    /**
		     * The width of the line surrounding the box. If any of
		     * [stemWidth](#plotOptions.boxplot.stemWidth),
		     * [medianWidth](#plotOptions.boxplot.medianWidth)
		     * or [whiskerWidth](#plotOptions.boxplot.whiskerWidth) are `null`,
		     * the lineWidth also applies to these lines.
		     *
		     * @sample  {highcharts} highcharts/plotoptions/box-plot-styling/
		     *          Box plot styling
		     * @sample  {highcharts} highcharts/plotoptions/error-bar-styling/
		     *          Error bar styling
		     * @since   3.0
		     * @product highcharts
		     */
		    lineWidth: 1,

		    /**
		     * The color of the median line. If `null`, the general series color
		     * applies.
		     *
		     * In styled mode, the median stroke width can be set with the
		     * `.highcharts-boxplot-median` class.
		     *
		     * @type {Color}
		     * @sample    {highcharts} highcharts/plotoptions/box-plot-styling/
		     *            Box plot styling
		     * @sample    {highcharts} highcharts/css/boxplot/
		     *            Box plot in styled mode
		     * @sample    {highcharts} highcharts/plotoptions/error-bar-styling/
		     *            Error bar styling
		     * @default   null
		     * @since     3.0
		     * @product   highcharts
		     * @apioption plotOptions.boxplot.medianColor
		     */

		    /**
		     * The pixel width of the median line. If `null`, the
		     * [lineWidth](#plotOptions.boxplot.lineWidth) is used.
		     *
		     * In styled mode, the median stroke width can be set with the
		     * `.highcharts-boxplot-median` class.
		     *
		     * @sample  {highcharts} highcharts/plotoptions/box-plot-styling/
		     *          Box plot styling
		     * @sample  {highcharts} highcharts/css/boxplot/
		     *          Box plot in styled mode
		     * @since   3.0
		     * @product highcharts
		     */
		    medianWidth: 2,

		    /*
		    // States are not working and are removed from docs.
		    // Refer to: #2340
		    states: {
		        hover: {
		            brightness: -0.3
		        }
		    },
		    */

		    /**
		     * The color of the stem, the vertical line extending from the box to
		     * the whiskers. If `null`, the series color is used.
		     *
		     * In styled mode, the stem stroke can be set with the
		     * `.highcharts-boxplot-stem` class.
		     *
		     * @type      {Color}
		     * @sample    {highcharts} highcharts/plotoptions/box-plot-styling/
		     *            Box plot styling
		     * @sample    {highcharts} highcharts/css/boxplot/
		     *            Box plot in styled mode
		     * @sample    {highcharts} highcharts/plotoptions/error-bar-styling/
		     *            Error bar styling
		     * @default   null
		     * @since     3.0
		     * @product   highcharts
		     * @apioption plotOptions.boxplot.stemColor
		     */

		    /**
		     * The dash style of the stem, the vertical line extending from the
		     * box to the whiskers.
		     *
		     * @validvalue ["Solid", "ShortDash", "ShortDot", "ShortDashDot",
		     *              "ShortDashDotDot", "Dot", "Dash" ,"LongDash", "DashDot",
		     *              "LongDashDot", "LongDashDotDot"]
		     * @type       {String}
		     * @sample     {highcharts} highcharts/plotoptions/box-plot-styling/
		     *             Box plot styling
		     * @sample     {highcharts} highcharts/css/boxplot/
		     *             Box plot in styled mode
		     * @sample     {highcharts} highcharts/plotoptions/error-bar-styling/
		     *             Error bar styling
		     * @default    Solid
		     * @since      3.0
		     * @product    highcharts
		     * @apioption  plotOptions.boxplot.stemDashStyle
		     */

		    /**
		     * The width of the stem, the vertical line extending from the box to
		     * the whiskers. If `null`, the width is inherited from the
		     * [lineWidth](#plotOptions.boxplot.lineWidth) option.
		     *
		     * In styled mode, the stem stroke width can be set with the
		     * `.highcharts-boxplot-stem` class.
		     *
		     * @type      {Number}
		     * @sample    {highcharts} highcharts/plotoptions/box-plot-styling/
		     *            Box plot styling
		     * @sample    {highcharts} highcharts/css/boxplot/
		     *            Box plot in styled mode
		     * @sample    {highcharts} highcharts/plotoptions/error-bar-styling/
		     *            Error bar styling
		     * @default   null
		     * @since     3.0
		     * @product   highcharts
		     * @apioption plotOptions.boxplot.stemWidth
		     */

		    /**
		     * The color of the whiskers, the horizontal lines marking low and high
		     * values. When `null`, the general series color is used.
		     *
		     * In styled mode, the whisker stroke can be set with the
		     * `.highcharts-boxplot-whisker` class .
		     *
		     * @type      {Color}
		     * @sample    {highcharts} highcharts/plotoptions/box-plot-styling/
		     *            Box plot styling
		     * @sample    {highcharts} highcharts/css/boxplot/
		     *            Box plot in styled mode
		     * @default   null
		     * @since     3.0
		     * @product   highcharts
		     * @apioption plotOptions.boxplot.whiskerColor
		     */

		    /**
		     * The line width of the whiskers, the horizontal lines marking low and
		     * high values. When `null`, the general
		     * [lineWidth](#plotOptions.boxplot.lineWidth) applies.
		     *
		     * In styled mode, the whisker stroke width can be set with the
		     * `.highcharts-boxplot-whisker` class.
		     *
		     * @sample  {highcharts} highcharts/plotoptions/box-plot-styling/
		     *          Box plot styling
		     * @sample  {highcharts} highcharts/css/boxplot/
		     *          Box plot in styled mode
		     * @since   3.0
		     * @product highcharts
		     */
		    whiskerWidth: 2
    

		}, /** @lends seriesTypes.boxplot */ {

		    // array point configs are mapped to this
		    pointArrayMap: ['low', 'q1', 'median', 'q3', 'high'],
		    toYData: function (point) { // return a plain array for speedy calculation
		        return [point.low, point.q1, point.median, point.q3, point.high];
		    },

		    // defines the top of the tracker
		    pointValKey: 'high',

    
		    /**
		     * Get presentational attributes
		     */
		    pointAttribs: function () {
		        // No attributes should be set on point.graphic which is the group
		        return {};
		    },
    

		    /**
		     * Disable data labels for box plot
		     */
		    drawDataLabels: noop,

		    /**
		     * Translate data points from raw values x and y to plotX and plotY
		     */
		    translate: function () {
		        var series = this,
		            yAxis = series.yAxis,
		            pointArrayMap = series.pointArrayMap;

		        seriesTypes.column.prototype.translate.apply(series);

		        // do the translation on each point dimension
		        each(series.points, function (point) {
		            each(pointArrayMap, function (key) {
		                if (point[key] !== null) {
		                    point[key + 'Plot'] = yAxis.translate(
		                        point[key], 0, 1, 0, 1
		                    );
		                }
		            });
		        });
		    },

		    /**
		     * Draw the data points
		     */
		    drawPoints: function () {
		        var series = this,
		            points = series.points,
		            options = series.options,
		            chart = series.chart,
		            renderer = chart.renderer,
		            q1Plot,
		            q3Plot,
		            highPlot,
		            lowPlot,
		            medianPlot,
		            medianPath,
		            crispCorr,
		            crispX = 0,
		            boxPath,
		            width,
		            left,
		            right,
		            halfWidth,
		            // error bar inherits this series type but doesn't do quartiles
		            doQuartiles = series.doQuartiles !== false,
		            pointWiskerLength,
		            whiskerLength = series.options.whiskerLength;


		        each(points, function (point) {

		            var graphic = point.graphic,
		                verb = graphic ? 'animate' : 'attr',
		                shapeArgs = point.shapeArgs; // the box

            
		            var boxAttr = {},
		                stemAttr = {},
		                whiskersAttr = {},
		                medianAttr = {},
		                color = point.color || series.color;
            

		            if (point.plotY !== undefined) {

		                // crisp vector coordinates
		                width = shapeArgs.width;
		                left = Math.floor(shapeArgs.x);
		                right = left + width;
		                halfWidth = Math.round(width / 2);
		                q1Plot = Math.floor(doQuartiles ? point.q1Plot : point.lowPlot);
		                q3Plot = Math.floor(doQuartiles ? point.q3Plot : point.lowPlot);
		                highPlot = Math.floor(point.highPlot);
		                lowPlot = Math.floor(point.lowPlot);

		                if (!graphic) {
		                    point.graphic = graphic = renderer.g('point')
		                        .add(series.group);

		                    point.stem = renderer.path()
		                        .addClass('highcharts-boxplot-stem')
		                        .add(graphic);

		                    if (whiskerLength) {
		                        point.whiskers = renderer.path()
		                            .addClass('highcharts-boxplot-whisker')
		                            .add(graphic);
		                    }
		                    if (doQuartiles) {
		                        point.box = renderer.path(boxPath)
		                            .addClass('highcharts-boxplot-box')
		                            .add(graphic);
		                    }
		                    point.medianShape = renderer.path(medianPath)
		                        .addClass('highcharts-boxplot-median')
		                        .add(graphic);
		                }

                

		                // Stem attributes
		                stemAttr.stroke = point.stemColor || options.stemColor || color;
		                stemAttr['stroke-width'] = pick(
		                    point.stemWidth,
		                    options.stemWidth,
		                    options.lineWidth
		                );
		                stemAttr.dashstyle =
		                    point.stemDashStyle || options.stemDashStyle;
		                point.stem.attr(stemAttr);

		                // Whiskers attributes
		                if (whiskerLength) {
		                    whiskersAttr.stroke =
		                        point.whiskerColor || options.whiskerColor || color;
		                    whiskersAttr['stroke-width'] = pick(
		                        point.whiskerWidth,
		                        options.whiskerWidth,
		                        options.lineWidth
		                    );
		                    point.whiskers.attr(whiskersAttr);
		                }

		                if (doQuartiles) {
		                    boxAttr.fill = (
		                        point.fillColor ||
		                        options.fillColor ||
		                        color
		                    );
		                    boxAttr.stroke = options.lineColor || color;
		                    boxAttr['stroke-width'] = options.lineWidth || 0;
		                    point.box.attr(boxAttr);
		                }


		                // Median attributes
		                medianAttr.stroke =
		                    point.medianColor || options.medianColor || color;
		                medianAttr['stroke-width'] = pick(
		                    point.medianWidth,
		                    options.medianWidth,
		                    options.lineWidth
		                );
		                point.medianShape.attr(medianAttr);

                


		                // The stem
		                crispCorr = (point.stem.strokeWidth() % 2) / 2;
		                crispX = left + halfWidth + crispCorr;
		                point.stem[verb]({ d: [
		                    // stem up
		                    'M',
		                    crispX, q3Plot,
		                    'L',
		                    crispX, highPlot,

		                    // stem down
		                    'M',
		                    crispX, q1Plot,
		                    'L',
		                    crispX, lowPlot
		                ] });

		                // The box
		                if (doQuartiles) {
		                    crispCorr = (point.box.strokeWidth() % 2) / 2;
		                    q1Plot = Math.floor(q1Plot) + crispCorr;
		                    q3Plot = Math.floor(q3Plot) + crispCorr;
		                    left += crispCorr;
		                    right += crispCorr;
		                    point.box[verb]({ d: [
		                        'M',
		                        left, q3Plot,
		                        'L',
		                        left, q1Plot,
		                        'L',
		                        right, q1Plot,
		                        'L',
		                        right, q3Plot,
		                        'L',
		                        left, q3Plot,
		                        'z'
		                    ] });
		                }

		                // The whiskers
		                if (whiskerLength) {
		                    crispCorr = (point.whiskers.strokeWidth() % 2) / 2;
		                    highPlot = highPlot + crispCorr;
		                    lowPlot = lowPlot + crispCorr;
		                    pointWiskerLength = (/%$/).test(whiskerLength) ?
		                        halfWidth * parseFloat(whiskerLength) / 100 :
		                        whiskerLength / 2;
		                    point.whiskers[verb]({ d: [
		                        // High whisker
		                        'M',
		                        crispX - pointWiskerLength,
		                        highPlot,
		                        'L',
		                        crispX + pointWiskerLength,
		                        highPlot,

		                        // Low whisker
		                        'M',
		                        crispX - pointWiskerLength,
		                        lowPlot,
		                        'L',
		                        crispX + pointWiskerLength,
		                        lowPlot
		                    ] });
		                }

		                // The median
		                medianPlot = Math.round(point.medianPlot);
		                crispCorr = (point.medianShape.strokeWidth() % 2) / 2;
		                medianPlot = medianPlot + crispCorr;

		                point.medianShape[verb]({ d: [
		                    'M',
		                    left,
		                    medianPlot,
		                    'L',
		                    right,
		                    medianPlot
		                ] });
		            }
		        });

		    },
		    setStackedPoints: noop // #3890

		});

		/**
		 * A `boxplot` series. If the [type](#series.boxplot.type) option is
		 * not specified, it is inherited from [chart.type](#chart.type).
		 *
		 * @type      {Object}
		 * @extends   series,plotOptions.boxplot
		 * @excluding dataParser,dataURL,marker,stack,stacking,states
		 * @product   highcharts
		 * @apioption series.boxplot
		 */

		/**
		 * An array of data points for the series. For the `boxplot` series
		 * type, points can be given in the following ways:
		 *
		 * 1.  An array of arrays with 6 or 5 values. In this case, the values
		 * correspond to `x,low,q1,median,q3,high`. If the first value is a
		 * string, it is applied as the name of the point, and the `x` value
		 * is inferred. The `x` value can also be omitted, in which case the
		 * inner arrays should be of length 5\. Then the `x` value is automatically
		 * calculated, either starting at 0 and incremented by 1, or from `pointStart`
		 * and `pointInterval` given in the series options.
		 *
		 *  ```js
		 *     data: [
		 *         [0, 3, 0, 10, 3, 5],
		 *         [1, 7, 8, 7, 2, 9],
		 *         [2, 6, 9, 5, 1, 3]
		 *     ]
		 *  ```
		 *
		 * 2.  An array of objects with named values. The following snippet shows only a
		 * few settings, see the complete options set below. If the total number of data
		 * points exceeds the series' [turboThreshold](#series.boxplot.turboThreshold),
		 * this option is not available.
		 *
		 *  ```js
		 *     data: [{
		 *         x: 1,
		 *         low: 4,
		 *         q1: 9,
		 *         median: 9,
		 *         q3: 1,
		 *         high: 10,
		 *         name: "Point2",
		 *         color: "#00FF00"
		 *     }, {
		 *         x: 1,
		 *         low: 5,
		 *         q1: 7,
		 *         median: 3,
		 *         q3: 6,
		 *         high: 2,
		 *         name: "Point1",
		 *         color: "#FF00FF"
		 *     }]
		 *  ```
		 *
		 * @type      {Array<Object|Array>}
		 * @extends   series.line.data
		 * @excluding marker
		 * @sample    {highcharts} highcharts/chart/reflow-true/
		 *            Numerical values
		 * @sample    {highcharts} highcharts/series/data-array-of-arrays/
		 *            Arrays of numeric x and y
		 * @sample    {highcharts} highcharts/series/data-array-of-arrays-datetime/
		 *            Arrays of datetime x and y
		 * @sample    {highcharts} highcharts/series/data-array-of-name-value/
		 *            Arrays of point.name and y
		 * @sample    {highcharts} highcharts/series/data-array-of-objects/
		 *            Config objects
		 * @product   highcharts
		 * @apioption series.boxplot.data
		 */

		/**
		 * The `high` value for each data point, signifying the highest value
		 * in the sample set. The top whisker is drawn here.
		 *
		 * @type      {Number}
		 * @product   highcharts
		 * @apioption series.boxplot.data.high
		 */

		/**
		 * The `low` value for each data point, signifying the lowest value
		 * in the sample set. The bottom whisker is drawn here.
		 *
		 * @type      {Number}
		 * @product   highcharts
		 * @apioption series.boxplot.data.low
		 */

		/**
		 * The median for each data point. This is drawn as a line through the
		 * middle area of the box.
		 *
		 * @type      {Number}
		 * @product   highcharts
		 * @apioption series.boxplot.data.median
		 */

		/**
		 * The lower quartile for each data point. This is the bottom of the
		 * box.
		 *
		 * @type      {Number}
		 * @product   highcharts
		 * @apioption series.boxplot.data.q1
		 */

		/**
		 * The higher quartile for each data point. This is the top of the box.
		 *
		 * @type      {Number}
		 * @product   highcharts
		 * @apioption series.boxplot.data.q3
		 */

	}(Highcharts));
	(function (H) {
		/**
		 * (c) 2010-2018 Torstein Honsi
		 *
		 * License: www.highcharts.com/license
		 */
		var each = H.each,
		    noop = H.noop,
		    seriesType = H.seriesType,
		    seriesTypes = H.seriesTypes;

		/**
		 * Error bars are a graphical representation of the variability of data and are
		 * used on graphs to indicate the error, or uncertainty in a reported
		 * measurement.
		 *
		 * @sample       highcharts/demo/error-bar/
		 *               Error bars on a column series
		 * @sample       highcharts/series-errorbar/on-scatter/
		 *               Error bars on a scatter series
		 * @extends      {plotOptions.boxplot}
		 * @product      highcharts highstock
		 * @optionparent plotOptions.errorbar
		 */
		seriesType('errorbar', 'boxplot', {
    

		    /**
		     * The main color of the bars. This can be overridden by
		     * [stemColor](#plotOptions.errorbar.stemColor) and
		     * [whiskerColor](#plotOptions.errorbar.whiskerColor) individually.
		     *
		     * @type    {Color}
		     * @sample  {highcharts} highcharts/plotoptions/error-bar-styling/
		     *          Error bar styling
		     * @default #000000
		     * @since   3.0
		     * @product highcharts
		     */
		    color: '#000000',
    

		    grouping: false,

		    /**
		     * The parent series of the error bar. The default value links it to
		     * the previous series. Otherwise, use the id of the parent series.
		     *
		     * @since   3.0
		     * @product highcharts
		     */
		    linkedTo: ':previous',

		    tooltip: {
		        pointFormat: '<span style="color:{point.color}">\u25CF</span> {series.name}: <b>{point.low}</b> - <b>{point.high}</b><br/>'
		    },

		    /**
		     * The line width of the whiskers, the horizontal lines marking low
		     * and high values. When `null`, the general
		     * [lineWidth](#plotOptions.errorbar.lineWidth) applies.
		     *
		     * @type    {Number}
		     * @sample  {highcharts} highcharts/plotoptions/error-bar-styling/
		     *          Error bar styling
		     * @since   3.0
		     * @product highcharts
		     */
		    whiskerWidth: null

		// Prototype members
		}, {
		    type: 'errorbar',
		    pointArrayMap: ['low', 'high'], // array point configs are mapped to this
		    toYData: function (point) { // return a plain array for speedy calculation
		        return [point.low, point.high];
		    },
		    pointValKey: 'high', // defines the top of the tracker
		    doQuartiles: false,
		    drawDataLabels: seriesTypes.arearange ?
		        function () {
		            var valKey = this.pointValKey;
		            seriesTypes.arearange.prototype.drawDataLabels.call(this);
		            // Arearange drawDataLabels does not reset point.y to high,
		            // but to low after drawing (#4133)
		            each(this.data, function (point) {
		                point.y = point[valKey];
		            });
		        } :
		        noop,

		    /**
		     * Get the width and X offset, either on top of the linked series column
		     * or standalone
		     */
		    getColumnMetrics: function () {
		        return (this.linkedParent && this.linkedParent.columnMetrics) ||
		            seriesTypes.column.prototype.getColumnMetrics.call(this);
		    }
		});

		/**
		 * A `errorbar` series. If the [type](#series.errorbar.type) option
		 * is not specified, it is inherited from [chart.type](#chart.type).
		 *
		 * @type      {Object}
		 * @extends   series,plotOptions.errorbar
		 * @excluding dataParser,dataURL,stack,stacking
		 * @product   highcharts
		 * @apioption series.errorbar
		 */

		/**
		 * An array of data points for the series. For the `errorbar` series
		 * type, points can be given in the following ways:
		 *
		 * 1.  An array of arrays with 3 or 2 values. In this case, the values
		 * correspond to `x,low,high`. If the first value is a string, it is
		 * applied as the name of the point, and the `x` value is inferred.
		 * The `x` value can also be omitted, in which case the inner arrays
		 * should be of length 2\. Then the `x` value is automatically calculated,
		 * either starting at 0 and incremented by 1, or from `pointStart`
		 * and `pointInterval` given in the series options.
		 *
		 *  ```js
		 *     data: [
		 *         [0, 10, 2],
		 *         [1, 1, 8],
		 *         [2, 4, 5]
		 *     ]
		 *  ```
		 *
		 * 2.  An array of objects with named values. The following snippet shows only a
		 * few settings, see the complete options set below. If the total number of data
		 * points exceeds the series' [turboThreshold](#series.errorbar.turboThreshold),
		 * this option is not available.
		 *
		 *  ```js
		 *     data: [{
		 *         x: 1,
		 *         low: 0,
		 *         high: 0,
		 *         name: "Point2",
		 *         color: "#00FF00"
		 *     }, {
		 *         x: 1,
		 *         low: 5,
		 *         high: 5,
		 *         name: "Point1",
		 *         color: "#FF00FF"
		 *     }]
		 *  ```
		 *
		 * @type      {Array<Object|Array>}
		 * @extends   series.arearange.data
		 * @excluding dataLabels,drilldown,marker,states
		 * @sample    {highcharts} highcharts/chart/reflow-true/
		 *            Numerical values
		 * @sample    {highcharts} highcharts/series/data-array-of-arrays/
		 *            Arrays of numeric x and y
		 * @sample    {highcharts} highcharts/series/data-array-of-arrays-datetime/
		 *            Arrays of datetime x and y
		 * @sample    {highcharts} highcharts/series/data-array-of-name-value/
		 *            Arrays of point.name and y
		 * @sample    {highcharts} highcharts/series/data-array-of-objects/
		 *            Config objects
		 * @product   highcharts
		 * @apioption series.errorbar.data
		 */

	}(Highcharts));
	(function (H) {
		/**
		 * (c) 2010-2018 Torstein Honsi
		 *
		 * License: www.highcharts.com/license
		 */
		var correctFloat = H.correctFloat,
		    isNumber = H.isNumber,
		    pick = H.pick,
		    Point = H.Point,
		    Series = H.Series,
		    seriesType = H.seriesType,
		    seriesTypes = H.seriesTypes;

		/**
		 * A waterfall chart displays sequentially introduced positive or negative
		 * values in cumulative columns.
		 *
		 * @sample       highcharts/demo/waterfall/
		 *               Waterfall chart
		 * @sample       highcharts/plotoptions/waterfall-inverted/
		 *               Horizontal (inverted) waterfall
		 * @sample       highcharts/plotoptions/waterfall-stacked/
		 *               Stacked waterfall chart
		 * @extends      {plotOptions.column}
		 * @product      highcharts
		 * @optionparent plotOptions.waterfall
		 */
		seriesType('waterfall', 'column', {

		    /**
		     * The color used specifically for positive point columns. When not
		     * specified, the general series color is used.
		     *
		     * In styled mode, the waterfall colors can be set with the
		     * `.highcharts-point-negative`, `.highcharts-sum` and
		     * `.highcharts-intermediate-sum` classes.
		     *
		     * @type      {Color}
		     * @sample    {highcharts} highcharts/demo/waterfall/ Waterfall
		     * @product   highcharts
		     * @apioption plotOptions.waterfall.upColor
		     */

		    dataLabels: {
		        inside: true
		    },
    

		    /**
		     * The width of the line connecting waterfall columns.
		     *
		     * @product highcharts
		     */
		    lineWidth: 1,

		    /**
		     * The color of the line that connects columns in a waterfall series.
		     *
		     * In styled mode, the stroke can be set with the `.highcharts-graph` class.
		     *
		     * @type    {Color}
		     * @default #333333
		     * @since   3.0
		     * @product highcharts
		     */
		    lineColor: '#333333',

		    /**
		     * A name for the dash style to use for the line connecting the columns
		     * of the waterfall series. Possible values:
		     *
		     * *   Solid
		     * *   ShortDash
		     * *   ShortDot
		     * *   ShortDashDot
		     * *   ShortDashDotDot
		     * *   Dot
		     * *   Dash
		     * *   LongDash
		     * *   DashDot
		     * *   LongDashDot
		     * *   LongDashDotDot
		     *
		     * In styled mode, the stroke dash-array can be set with the
		     * `.highcharts-graph` class.
		     *
		     * @type    {String}
		     * @default Dot
		     * @since   3.0
		     * @product highcharts
		     */
		    dashStyle: 'dot',

		    /**
		     * The color of the border of each waterfall column.
		     *
		     * In styled mode, the border stroke can be set with the
		     * `.highcharts-point` class.
		     *
		     * @type    {Color}
		     * @default #333333
		     * @since   3.0
		     * @product highcharts
		     */
		    borderColor: '#333333',

		    states: {
		        hover: {
		            lineWidthPlus: 0 // #3126
		        }
		    }
    

		// Prototype members
		}, {
		    pointValKey: 'y',

		    /**
		     * Property needed to prevent lines between the columns from disappearing
		     * when negativeColor is used.
		     */
		    showLine: true,

		    /**
		     * After generating points, set y-values for all sums.
		     */
		    generatePoints: function () {
		        var previousIntermediate = this.options.threshold,
		            point,
		            len,
		            i,
		            y;
		        // Parent call:
		        seriesTypes.column.prototype.generatePoints.apply(this);

		        for (i = 0, len = this.points.length; i < len; i++) {
		            point = this.points[i];
		            y = this.processedYData[i];
		            // override point value for sums
		            // #3710 Update point does not propagate to sum
		            if (point.isSum) {
		                point.y = correctFloat(y);
		            } else if (point.isIntermediateSum) {
		                point.y = correctFloat(y - previousIntermediate); // #3840
		                previousIntermediate = y;
		            }
		        }
		    },

		    /**
		     * Translate data points from raw values
		     */
		    translate: function () {
		        var series = this,
		            options = series.options,
		            yAxis = series.yAxis,
		            len,
		            i,
		            points,
		            point,
		            shapeArgs,
		            stack,
		            y,
		            yValue,
		            previousY,
		            previousIntermediate,
		            range,
		            minPointLength = pick(options.minPointLength, 5),
		            halfMinPointLength = minPointLength / 2,
		            threshold = options.threshold,
		            stacking = options.stacking,
		            stackIndicator,
		            tooltipY;

		        // run column series translate
		        seriesTypes.column.prototype.translate.apply(series);

		        previousY = previousIntermediate = threshold;
		        points = series.points;

		        for (i = 0, len = points.length; i < len; i++) {
		            // cache current point object
		            point = points[i];
		            yValue = series.processedYData[i];
		            shapeArgs = point.shapeArgs;

		            // get current stack
		            stack = stacking &&
		                yAxis.stacks[
		                    (series.negStacks && yValue < threshold ? '-' : '') +
		                        series.stackKey
		                ];
		            stackIndicator = series.getStackIndicator(
		                stackIndicator,
		                point.x,
		                series.index
		            );
		            range = pick(
		                stack && stack[point.x].points[stackIndicator.key],
		                [0, yValue]
		            );

		            // up points
		            y = Math.max(previousY, previousY + point.y) + range[0];
		            shapeArgs.y = yAxis.translate(y, 0, 1, 0, 1);

		            // sum points
		            if (point.isSum) {
		                shapeArgs.y = yAxis.translate(range[1], 0, 1, 0, 1);
		                shapeArgs.height = Math.min(
		                        yAxis.translate(range[0], 0, 1, 0, 1),
		                        yAxis.len
		                    ) - shapeArgs.y; // #4256

		            } else if (point.isIntermediateSum) {
		                shapeArgs.y = yAxis.translate(range[1], 0, 1, 0, 1);
		                shapeArgs.height = Math.min(
		                        yAxis.translate(previousIntermediate, 0, 1, 0, 1),
		                        yAxis.len
		                    ) - shapeArgs.y;
		                previousIntermediate = range[1];

		            // If it's not the sum point, update previous stack end position
		            // and get shape height (#3886)
		            } else {
		                shapeArgs.height = yValue > 0 ?
		                    yAxis.translate(previousY, 0, 1, 0, 1) - shapeArgs.y :
		                    yAxis.translate(previousY, 0, 1, 0, 1) -
		                        yAxis.translate(previousY - yValue, 0, 1, 0, 1);

		                previousY += stack && stack[point.x] ?
		                    stack[point.x].total :
		                    yValue;

		                point.below = previousY < pick(threshold, 0);
		            }

		            // #3952 Negative sum or intermediate sum not rendered correctly
		            if (shapeArgs.height < 0) {
		                shapeArgs.y += shapeArgs.height;
		                shapeArgs.height *= -1;
		            }

		            point.plotY = shapeArgs.y = Math.round(shapeArgs.y) -
		                (series.borderWidth % 2) / 2;
		            // #3151
		            shapeArgs.height = Math.max(Math.round(shapeArgs.height), 0.001);
		            point.yBottom = shapeArgs.y + shapeArgs.height;

		            if (shapeArgs.height <= minPointLength && !point.isNull) {
		                shapeArgs.height = minPointLength;
		                shapeArgs.y -= halfMinPointLength;
		                point.plotY = shapeArgs.y;
		                if (point.y < 0) {
		                    point.minPointLengthOffset = -halfMinPointLength;
		                } else {
		                    point.minPointLengthOffset = halfMinPointLength;
		                }
		            } else {
		                if (point.isNull) {
		                    shapeArgs.width = 0;
		                }
		                point.minPointLengthOffset = 0;
		            }

		            // Correct tooltip placement (#3014)
		            tooltipY = point.plotY + (point.negative ? shapeArgs.height : 0);

		            if (series.chart.inverted) {
		                point.tooltipPos[0] = yAxis.len - tooltipY;
		            } else {
		                point.tooltipPos[1] = tooltipY;
		            }
		        }
		    },

		    /**
		     * Call default processData then override yData to reflect
		     * waterfall's extremes on yAxis
		     */
		    processData: function (force) {
		        var series = this,
		            options = series.options,
		            yData = series.yData,
		            // #3710 Update point does not propagate to sum
		            points = series.options.data,
		            point,
		            dataLength = yData.length,
		            threshold = options.threshold || 0,
		            subSum,
		            sum,
		            dataMin,
		            dataMax,
		            y,
		            i;

		        sum = subSum = dataMin = dataMax = threshold;

		        for (i = 0; i < dataLength; i++) {
		            y = yData[i];
		            point = points && points[i] ? points[i] : {};

		            if (y === 'sum' || point.isSum) {
		                yData[i] = correctFloat(sum);
		            } else if (y === 'intermediateSum' || point.isIntermediateSum) {
		                yData[i] = correctFloat(subSum);
		            } else {
		                sum += y;
		                subSum += y;
		            }
		            dataMin = Math.min(sum, dataMin);
		            dataMax = Math.max(sum, dataMax);
		        }

		        Series.prototype.processData.call(this, force);

		        // Record extremes only if stacking was not set:
		        if (!series.options.stacking) {
		            series.dataMin = dataMin;
		            series.dataMax = dataMax;
		        }
		    },

		    /**
		     * Return y value or string if point is sum
		     */
		    toYData: function (pt) {
		        if (pt.isSum) {
		            // #3245 Error when first element is Sum or Intermediate Sum
		            return (pt.x === 0 ? null : 'sum');
		        }
		        if (pt.isIntermediateSum) {
		            return (pt.x === 0 ? null : 'intermediateSum'); // #3245
		        }
		        return pt.y;
		    },

    
		    /**
		     * Postprocess mapping between options and SVG attributes
		     */
		    pointAttribs: function (point, state) {

		        var upColor = this.options.upColor,
		            attr;

		        // Set or reset up color (#3710, update to negative)
		        if (upColor && !point.options.color) {
		            point.color = point.y > 0 ? upColor : null;
		        }

		        attr = seriesTypes.column.prototype.pointAttribs.call(
		                this,
		                point,
		                state
		            );

		        // The dashStyle option in waterfall applies to the graph, not
		        // the points
		        delete attr.dashstyle;

		        return attr;
		    },
    

		    /**
		     * Return an empty path initially, because we need to know the
		     * stroke-width in order to set the final path.
		     */
		    getGraphPath: function () {
		        return ['M', 0, 0];
		    },

		    /**
		     * Draw columns' connector lines
		     */
		    getCrispPath: function () {

		        var data = this.data,
		            length = data.length,
		            lineWidth = this.graph.strokeWidth() + this.borderWidth,
		            normalizer = Math.round(lineWidth) % 2 / 2,
		            reversedXAxis = this.xAxis.reversed,
		            reversedYAxis = this.yAxis.reversed,
		            path = [],
		            prevArgs,
		            pointArgs,
		            i,
		            d;

		        for (i = 1; i < length; i++) {
		            pointArgs = data[i].shapeArgs;
		            prevArgs = data[i - 1].shapeArgs;

		            d = [
		                'M',
		                prevArgs.x + (reversedXAxis ? 0 : prevArgs.width),
		                prevArgs.y + data[i - 1].minPointLengthOffset + normalizer,
		                'L',
		                pointArgs.x + (reversedXAxis ? prevArgs.width : 0),
		                prevArgs.y + data[i - 1].minPointLengthOffset + normalizer
		            ];

		            if (
		                (data[i - 1].y < 0 && !reversedYAxis) ||
		                (data[i - 1].y > 0 && reversedYAxis)
		            ) {
		                d[2] += prevArgs.height;
		                d[5] += prevArgs.height;
		            }

		            path = path.concat(d);
		        }

		        return path;
		    },

		    /**
		     * The graph is initially drawn with an empty definition, then updated with
		     * crisp rendering.
		     */
		    drawGraph: function () {
		        Series.prototype.drawGraph.call(this);
		        this.graph.attr({
		            d: this.getCrispPath()
		        });
		    },

		    /**
		     * Waterfall has stacking along the x-values too.
		     */
		    setStackedPoints: function () {
		        var series = this,
		            options = series.options,
		            stackedYLength,
		            i;

		        Series.prototype.setStackedPoints.apply(series, arguments);

		        stackedYLength = series.stackedYData ? series.stackedYData.length : 0;

		        // Start from the second point:
		        for (i = 1; i < stackedYLength; i++) {
		            if (
		                !options.data[i].isSum &&
		                !options.data[i].isIntermediateSum
		            ) {
		                // Sum previous stacked data as waterfall can grow up/down:
		                series.stackedYData[i] += series.stackedYData[i - 1];
		            }
		        }
		    },

		    /**
		     * Extremes for a non-stacked series are recorded in processData.
		     * In case of stacking, use Series.stackedYData to calculate extremes.
		     */
		    getExtremes: function () {
		        if (this.options.stacking) {
		            return Series.prototype.getExtremes.apply(this, arguments);
		        }
		    }


		// Point members
		}, {
		    getClassName: function () {
		        var className = Point.prototype.getClassName.call(this);

		        if (this.isSum) {
		            className += ' highcharts-sum';
		        } else if (this.isIntermediateSum) {
		            className += ' highcharts-intermediate-sum';
		        }
		        return className;
		    },
		    /**
		     * Pass the null test in ColumnSeries.translate.
		     */
		    isValid: function () {
		        return isNumber(this.y, true) || this.isSum || this.isIntermediateSum;
		    }

		});

		/**
		 * A `waterfall` series. If the [type](#series.waterfall.type) option
		 * is not specified, it is inherited from [chart.type](#chart.type).
		 *
		 * @type      {Object}
		 * @extends   series,plotOptions.waterfall
		 * @excluding dataParser,dataURL
		 * @product   highcharts
		 * @apioption series.waterfall
		 */

		/**
		 * An array of data points for the series. For the `waterfall` series
		 * type, points can be given in the following ways:
		 *
		 * 1.  An array of numerical values. In this case, the numerical values
		 * will be interpreted as `y` options. The `x` values will be automatically
		 * calculated, either starting at 0 and incremented by 1, or from `pointStart`
		 * and `pointInterval` given in the series options. If the axis has
		 * categories, these will be used. Example:
		 *
		 *  ```js
		 *  data: [0, 5, 3, 5]
		 *  ```
		 *
		 * 2.  An array of arrays with 2 values. In this case, the values correspond
		 * to `x,y`. If the first value is a string, it is applied as the name
		 * of the point, and the `x` value is inferred.
		 *
		 *  ```js
		 *     data: [
		 *         [0, 7],
		 *         [1, 8],
		 *         [2, 3]
		 *     ]
		 *  ```
		 *
		 * 3.  An array of objects with named values. The following snippet shows only a
		 * few settings, see the complete options set below. If the total number of data
		 * points exceeds the series'
		 * [turboThreshold](#series.waterfall.turboThreshold),
		 * this option is not available.
		 *
		 *  ```js
		 *     data: [{
		 *         x: 1,
		 *         y: 8,
		 *         name: "Point2",
		 *         color: "#00FF00"
		 *     }, {
		 *         x: 1,
		 *         y: 8,
		 *         name: "Point1",
		 *         color: "#FF00FF"
		 *     }]
		 *  ```
		 *
		 * @type      {Array<Object|Array|Number>}
		 * @extends   series.line.data
		 * @excluding marker
		 * @sample    {highcharts} highcharts/chart/reflow-true/
		 *            Numerical values
		 * @sample    {highcharts} highcharts/series/data-array-of-arrays/
		 *            Arrays of numeric x and y
		 * @sample    {highcharts} highcharts/series/data-array-of-arrays-datetime/
		 *            Arrays of datetime x and y
		 * @sample    {highcharts} highcharts/series/data-array-of-name-value/
		 *            Arrays of point.name and y
		 * @sample    {highcharts} highcharts/series/data-array-of-objects/
		 *            Config objects
		 * @product   highcharts
		 * @apioption series.waterfall.data
		 */


		/**
		 * When this property is true, the points acts as a summary column for
		 * the values added or substracted since the last intermediate sum,
		 * or since the start of the series. The `y` value is ignored.
		 *
		 * @type      {Boolean}
		 * @sample    {highcharts} highcharts/demo/waterfall/ Waterfall
		 * @default   false
		 * @product   highcharts
		 * @apioption series.waterfall.data.isIntermediateSum
		 */

		/**
		 * When this property is true, the point display the total sum across
		 * the entire series. The `y` value is ignored.
		 *
		 * @type      {Boolean}
		 * @sample    {highcharts} highcharts/demo/waterfall/ Waterfall
		 * @default   false
		 * @product   highcharts
		 * @apioption series.waterfall.data.isSum
		 */

	}(Highcharts));
	(function (H) {
		/**
		 * (c) 2010-2018 Torstein Honsi
		 *
		 * License: www.highcharts.com/license
		 */
		var LegendSymbolMixin = H.LegendSymbolMixin,
		    noop = H.noop,
		    Series = H.Series,
		    seriesType = H.seriesType,
		    seriesTypes = H.seriesTypes;

		/**
		 * A polygon series can be used to draw any freeform shape in the cartesian
		 * coordinate system. A fill is applied with the `color` option, and
		 * stroke is applied through `lineWidth` and `lineColor` options. Requires
		 * the `highcharts-more.js` file.
		 *
		 * @type {Object}
		 * @extends plotOptions.scatter
		 * @excluding softThreshold,threshold
		 * @sample {highcharts} highcharts/demo/polygon/ Polygon
		 * @sample {highstock} highcharts/demo/polygon/ Polygon
		 * @since 4.1.0
		 * @product highcharts highstock
		 * @optionparent plotOptions.polygon
		 */
		seriesType('polygon', 'scatter', {
		    marker: {
		        enabled: false,
		        states: {
		            hover: {
		                enabled: false
		            }
		        }
		    },
		    stickyTracking: false,
		    tooltip: {
		        followPointer: true,
		        pointFormat: ''
		    },
		    trackByArea: true

		// Prototype members
		}, {
		    type: 'polygon',
		    getGraphPath: function () {

		        var graphPath = Series.prototype.getGraphPath.call(this),
		            i = graphPath.length + 1;

		        // Close all segments
		        while (i--) {
		            if ((i === graphPath.length || graphPath[i] === 'M') && i > 0) {
		                graphPath.splice(i, 0, 'z');
		            }
		        }
		        this.areaPath = graphPath;
		        return graphPath;
		    },
		    drawGraph: function () {
        
		        // Hack into the fill logic in area.drawGraph
		        this.options.fillColor = this.color;
        
		        seriesTypes.area.prototype.drawGraph.call(this);
		    },
		    drawLegendSymbol: LegendSymbolMixin.drawRectangle,
		    drawTracker: Series.prototype.drawTracker,
		    setStackedPoints: noop // No stacking points on polygons (#5310)
		});



		/**
		 * A `polygon` series. If the [type](#series.polygon.type) option is
		 * not specified, it is inherited from [chart.type](#chart.type).
		 *
		 * @type {Object}
		 * @extends series,plotOptions.polygon
		 * @excluding dataParser,dataURL,stack
		 * @product highcharts highstock
		 * @apioption series.polygon
		 */

		/**
		 * An array of data points for the series. For the `polygon` series
		 * type, points can be given in the following ways:
		 *
		 * 1.  An array of numerical values. In this case, the numerical values
		 * will be interpreted as `y` options. The `x` values will be automatically
		 * calculated, either starting at 0 and incremented by 1, or from `pointStart`
		 * and `pointInterval` given in the series options. If the axis has
		 * categories, these will be used. Example:
		 *
		 *  ```js
		 *  data: [0, 5, 3, 5]
		 *  ```
		 *
		 * 2.  An array of arrays with 2 values. In this case, the values correspond
		 * to `x,y`. If the first value is a string, it is applied as the name
		 * of the point, and the `x` value is inferred.
		 *
		 *  ```js
		 *     data: [
		 *         [0, 10],
		 *         [1, 3],
		 *         [2, 1]
		 *     ]
		 *  ```
		 *
		 * 3.  An array of objects with named values. The following snippet shows only a
		 * few settings, see the complete options set below. If the total number of data
		 * points exceeds the series' [turboThreshold](#series.polygon.turboThreshold),
		 * this option is not available.
		 *
		 *  ```js
		 *     data: [{
		 *         x: 1,
		 *         y: 1,
		 *         name: "Point2",
		 *         color: "#00FF00"
		 *     }, {
		 *         x: 1,
		 *         y: 8,
		 *         name: "Point1",
		 *         color: "#FF00FF"
		 *     }]
		 *  ```
		 *
		 * @type {Array<Object|Array>}
		 * @extends series.line.data
		 * @sample {highcharts} highcharts/chart/reflow-true/
		 *         Numerical values
		 * @sample {highcharts} highcharts/series/data-array-of-arrays/
		 *         Arrays of numeric x and y
		 * @sample {highcharts} highcharts/series/data-array-of-arrays-datetime/
		 *         Arrays of datetime x and y
		 * @sample {highcharts} highcharts/series/data-array-of-name-value/
		 *         Arrays of point.name and y
		 * @sample {highcharts} highcharts/series/data-array-of-objects/
		 *         Config objects
		 * @product highcharts highstock
		 * @apioption series.polygon.data
		 */

	}(Highcharts));
	(function (H) {
		/**
		 * (c) 2010-2018 Torstein Honsi
		 *
		 * License: www.highcharts.com/license
		 */
		var arrayMax = H.arrayMax,
		    arrayMin = H.arrayMin,
		    Axis = H.Axis,
		    color = H.color,
		    each = H.each,
		    isNumber = H.isNumber,
		    noop = H.noop,
		    pick = H.pick,
		    pInt = H.pInt,
		    Point = H.Point,
		    Series = H.Series,
		    seriesType = H.seriesType,
		    seriesTypes = H.seriesTypes;


		/**
		 * A bubble series is a three dimensional series type where each point renders
		 * an X, Y and Z value. Each points is drawn as a bubble where the position
		 * along the X and Y axes mark the X and Y values, and the size of the bubble
		 * relates to the Z value. Requires `highcharts-more.js`.
		 *
		 * @sample       {highcharts} highcharts/demo/bubble/ Bubble chart
		 * @extends      plotOptions.scatter
		 * @product      highcharts highstock
		 * @optionparent plotOptions.bubble
		 */
		seriesType('bubble', 'scatter', {

		    dataLabels: {
		        formatter: function () { // #2945
		            return this.point.z;
		        },
		        inside: true,
		        verticalAlign: 'middle'
		    },

		    /**
		     * If there are more points in the series than the `animationLimit`, the
		     * animation won't run. Animation affects overall performance and doesn't
		     * work well with heavy data series.
		     * @since 6.1.0
		     */
		    animationLimit: 250,

		    /**
		     * Whether to display negative sized bubbles. The threshold is given
		     * by the [zThreshold](#plotOptions.bubble.zThreshold) option, and negative
		     * bubbles can be visualized by setting
		     * [negativeColor](#plotOptions.bubble.negativeColor).
		     *
		     * @type      {Boolean}
		     * @sample    {highcharts} highcharts/plotoptions/bubble-negative/
		     *            Negative bubbles
		     * @default   true
		     * @since     3.0
		     * @apioption plotOptions.bubble.displayNegative
		     */

		    /**
		     * @extends   plotOptions.series.marker
		     * @excluding enabled,enabledThreshold,height,radius,width
		     */
		    marker: {
        
		        lineColor: null, // inherit from series.color
		        lineWidth: 1,

		        /**
		         * The fill opacity of the bubble markers.
		         */
		        fillOpacity: 0.5,
        
		        /**
		         * In bubble charts, the radius is overridden and determined based on
		         * the point's data value.
		         */
		        /**
		         * @ignore-option
		         */
		        radius: null,

		        states: {
		            hover: {
		                radiusPlus: 0
		            }
		        },

		        /**
		         * A predefined shape or symbol for the marker. Possible values are
		         * "circle", "square", "diamond", "triangle" and "triangle-down".
		         *
		         * Additionally, the URL to a graphic can be given on the form
		         * `url(graphic.png)`. Note that for the image to be applied to exported
		         * charts, its URL needs to be accessible by the export server.
		         *
		         * Custom callbacks for symbol path generation can also be added to
		         * `Highcharts.SVGRenderer.prototype.symbols`. The callback is then
		         * used by its method name, as shown in the demo.
		         *
		         * @validvalue ["circle", "square", "diamond", "triangle",
		         *              "triangle-down"]
		         * @sample     {highcharts} highcharts/plotoptions/bubble-symbol/
		         *             Bubble chart with various symbols
		         * @sample     {highcharts} highcharts/plotoptions/series-marker-symbol/
		         *             General chart with predefined, graphic and custom markers
		         * @since      5.0.11
		         */
		        symbol: 'circle'
		    },

		    /**
		     * Minimum bubble size. Bubbles will automatically size between the
		     * `minSize` and `maxSize` to reflect the `z` value of each bubble.
		     * Can be either pixels (when no unit is given), or a percentage of
		     * the smallest one of the plot width and height.
		     *
		     * @type    {Number|String}
		     * @sample  {highcharts} highcharts/plotoptions/bubble-size/ Bubble size
		     * @since   3.0
		     * @product highcharts highstock
		     */
		    minSize: 8,

		    /**
		     * Maximum bubble size. Bubbles will automatically size between the
		     * `minSize` and `maxSize` to reflect the `z` value of each bubble.
		     * Can be either pixels (when no unit is given), or a percentage of
		     * the smallest one of the plot width and height.
		     *
		     * @type    {Number|String}
		     * @sample  {highcharts} highcharts/plotoptions/bubble-size/
		     *          Bubble size
		     * @since   3.0
		     * @product highcharts highstock
		     */
		    maxSize: '20%',

		    /**
		     * When a point's Z value is below the
		     * [zThreshold](#plotOptions.bubble.zThreshold) setting, this color is used.
		     *
		     * @type      {Color}
		     * @sample    {highcharts} highcharts/plotoptions/bubble-negative/
		     *            Negative bubbles
		     * @default   null
		     * @since     3.0
		     * @product   highcharts
		     * @apioption plotOptions.bubble.negativeColor
		     */

		    /**
		     * Whether the bubble's value should be represented by the area or the
		     * width of the bubble. The default, `area`, corresponds best to the
		     * human perception of the size of each bubble.
		     *
		     * @validvalue ["area", "width"]
		     * @type       {String}
		     * @sample     {highcharts} highcharts/plotoptions/bubble-sizeby/
		     *             Comparison of area and size
		     * @default    area
		     * @since      3.0.7
		     * @apioption  plotOptions.bubble.sizeBy
		     */

		    /**
		     * When this is true, the absolute value of z determines the size of
		     * the bubble. This means that with the default `zThreshold` of 0, a
		     * bubble of value -1 will have the same size as a bubble of value 1,
		     * while a bubble of value 0 will have a smaller size according to
		     * `minSize`.
		     *
		     * @type      {Boolean}
		     * @sample    {highcharts}
		     *            highcharts/plotoptions/bubble-sizebyabsolutevalue/
		     *            Size by absolute value, various thresholds
		     * @default   false
		     * @since     4.1.9
		     * @product   highcharts
		     * @apioption plotOptions.bubble.sizeByAbsoluteValue
		     */

		    /**
		     * When this is true, the series will not cause the Y axis to cross
		     * the zero plane (or [threshold](#plotOptions.series.threshold) option)
		     * unless the data actually crosses the plane.
		     *
		     * For example, if `softThreshold` is `false`, a series of 0, 1, 2,
		     * 3 will make the Y axis show negative values according to the `minPadding`
		     * option. If `softThreshold` is `true`, the Y axis starts at 0.
		     *
		     * @since   4.1.9
		     * @product highcharts
		     */
		    softThreshold: false,

		    states: {
		        hover: {
		            halo: {
		                size: 5
		            }
		        }
		    },

		    tooltip: {
		        pointFormat: '({point.x}, {point.y}), Size: {point.z}'
		    },

		    turboThreshold: 0,

		    /**
		     * The minimum for the Z value range. Defaults to the highest Z value
		     * in the data.
		     *
		     * @type      {Number}
		     * @see       [zMin](#plotOptions.bubble.zMin)
		     * @sample    {highcharts} highcharts/plotoptions/bubble-zmin-zmax/
		     *            Z has a possible range of 0-100
		     * @default   null
		     * @since     4.0.3
		     * @product   highcharts
		     * @apioption plotOptions.bubble.zMax
		     */

		    /**
		     * The minimum for the Z value range. Defaults to the lowest Z value
		     * in the data.
		     *
		     * @type      {Number}
		     * @see       [zMax](#plotOptions.bubble.zMax)
		     * @sample    {highcharts} highcharts/plotoptions/bubble-zmin-zmax/
		     *            Z has a possible range of 0-100
		     * @default   null
		     * @since     4.0.3
		     * @product   highcharts
		     * @apioption plotOptions.bubble.zMin
		     */

		    /**
		     * When [displayNegative](#plotOptions.bubble.displayNegative) is `false`,
		     * bubbles with lower Z values are skipped. When `displayNegative`
		     * is `true` and a [negativeColor](#plotOptions.bubble.negativeColor)
		     * is given, points with lower Z is colored.
		     *
		     * @type    {Number}
		     * @sample  {highcharts} highcharts/plotoptions/bubble-negative/
		     *          Negative bubbles
		     * @default 0
		     * @since   3.0
		     * @product highcharts
		     */
		    zThreshold: 0,

		    zoneAxis: 'z'

		// Prototype members
		}, {
		    pointArrayMap: ['y', 'z'],
		    parallelArrays: ['x', 'y', 'z'],
		    trackerGroups: ['group', 'dataLabelsGroup'],
		    specialGroup: 'group', // To allow clipping (#6296)
		    bubblePadding: true,
		    zoneAxis: 'z',
		    directTouch: true,

    
		    pointAttribs: function (point, state) {
		        var markerOptions = this.options.marker,
		            fillOpacity = markerOptions.fillOpacity,
		            attr = Series.prototype.pointAttribs.call(this, point, state);

		        if (fillOpacity !== 1) {
		            attr.fill = color(attr.fill).setOpacity(fillOpacity).get('rgba');
		        }

		        return attr;
		    },
    

		    /**
		     * Get the radius for each point based on the minSize, maxSize and each
		     * point's Z value. This must be done prior to Series.translate because
		     * the axis needs to add padding in accordance with the point sizes.
		     */
		    getRadii: function (zMin, zMax, minSize, maxSize) {
		        var len,
		            i,
		            pos,
		            zData = this.zData,
		            radii = [],
		            options = this.options,
		            sizeByArea = options.sizeBy !== 'width',
		            zThreshold = options.zThreshold,
		            zRange = zMax - zMin,
		            value,
		            radius;

		        // Set the shape type and arguments to be picked up in drawPoints
		        for (i = 0, len = zData.length; i < len; i++) {

		            value = zData[i];

		            // When sizing by threshold, the absolute value of z determines
		            // the size of the bubble.
		            if (options.sizeByAbsoluteValue && value !== null) {
		                value = Math.abs(value - zThreshold);
		                zMax = zRange = Math.max(
		                    zMax - zThreshold,
		                    Math.abs(zMin - zThreshold)
		                );
		                zMin = 0;
		            }

		            if (!isNumber(value)) {
		                radius = null;
		            // Issue #4419 - if value is less than zMin, push a radius that's
		            // always smaller than the minimum size
		            } else if (value < zMin) {
		                radius = minSize / 2 - 1;
		            } else {
		                // Relative size, a number between 0 and 1
		                pos = zRange > 0 ? (value - zMin) / zRange : 0.5;

		                if (sizeByArea && pos >= 0) {
		                    pos = Math.sqrt(pos);
		                }
		                radius = Math.ceil(minSize + pos * (maxSize - minSize)) / 2;
		            }
		            radii.push(radius);
		        }
		        this.radii = radii;
		    },

		    /**
		     * Perform animation on the bubbles
		     */
		    animate: function (init) {
		        if (
		            !init &&
		            this.points.length < this.options.animationLimit // #8099
		        ) {
		            each(this.points, function (point) {
		                var graphic = point.graphic,
		                    animationTarget;

		                if (graphic && graphic.width) { // URL symbols don't have width
		                    animationTarget = {
		                        x: graphic.x,
		                        y: graphic.y,
		                        width: graphic.width,
		                        height: graphic.height
		                    };

		                    // Start values
		                    graphic.attr({
		                        x: point.plotX,
		                        y: point.plotY,
		                        width: 1,
		                        height: 1
		                    });

		                    // Run animation
		                    graphic.animate(animationTarget, this.options.animation);
		                }
		            }, this);

		            // delete this function to allow it only once
		            this.animate = null;
		        }
		    },

		    /**
		     * Extend the base translate method to handle bubble size
		     */
		    translate: function () {

		        var i,
		            data = this.data,
		            point,
		            radius,
		            radii = this.radii;

		        // Run the parent method
		        seriesTypes.scatter.prototype.translate.call(this);

		        // Set the shape type and arguments to be picked up in drawPoints
		        i = data.length;

		        while (i--) {
		            point = data[i];
		            radius = radii ? radii[i] : 0; // #1737

		            if (isNumber(radius) && radius >= this.minPxSize / 2) {
		                // Shape arguments
		                point.marker = H.extend(point.marker, {
		                    radius: radius,
		                    width: 2 * radius,
		                    height: 2 * radius
		                });

		                // Alignment box for the data label
		                point.dlBox = {
		                    x: point.plotX - radius,
		                    y: point.plotY - radius,
		                    width: 2 * radius,
		                    height: 2 * radius
		                };
		            } else { // below zThreshold
		                // #1691
		                point.shapeArgs = point.plotY = point.dlBox = undefined;
		            }
		        }
		    },

		    alignDataLabel: seriesTypes.column.prototype.alignDataLabel,
		    buildKDTree: noop,
		    applyZones: noop

		// Point class
		}, {
		    haloPath: function (size) {
		        return Point.prototype.haloPath.call(
		            this,
		            // #6067
		            size === 0 ? 0 : (this.marker ? this.marker.radius || 0 : 0) + size
		        );
		    },
		    ttBelow: false
		});

		/**
		 * Add logic to pad each axis with the amount of pixels
		 * necessary to avoid the bubbles to overflow.
		 */
		Axis.prototype.beforePadding = function () {
		    var axis = this,
		        axisLength = this.len,
		        chart = this.chart,
		        pxMin = 0,
		        pxMax = axisLength,
		        isXAxis = this.isXAxis,
		        dataKey = isXAxis ? 'xData' : 'yData',
		        min = this.min,
		        extremes = {},
		        smallestSize = Math.min(chart.plotWidth, chart.plotHeight),
		        zMin = Number.MAX_VALUE,
		        zMax = -Number.MAX_VALUE,
		        range = this.max - min,
		        transA = axisLength / range,
		        activeSeries = [];

		    // Handle padding on the second pass, or on redraw
		    each(this.series, function (series) {

		        var seriesOptions = series.options,
		            zData;

		        if (
		            series.bubblePadding &&
		            (series.visible || !chart.options.chart.ignoreHiddenSeries)
		        ) {

		            // Correction for #1673
		            axis.allowZoomOutside = true;

		            // Cache it
		            activeSeries.push(series);

		            if (isXAxis) { // because X axis is evaluated first

		                // For each series, translate the size extremes to pixel values
		                each(['minSize', 'maxSize'], function (prop) {
		                    var length = seriesOptions[prop],
		                        isPercent = /%$/.test(length);

		                    length = pInt(length);
		                    extremes[prop] = isPercent ?
		                        smallestSize * length / 100 :
		                        length;

		                });
		                series.minPxSize = extremes.minSize;
		                // Prioritize min size if conflict to make sure bubbles are
		                // always visible. #5873
		                series.maxPxSize = Math.max(extremes.maxSize, extremes.minSize);

		                // Find the min and max Z
		                zData = H.grep(series.zData, H.isNumber);
		                if (zData.length) { // #1735
		                    zMin = pick(seriesOptions.zMin, Math.min(
		                        zMin,
		                        Math.max(
		                            arrayMin(zData),
		                            seriesOptions.displayNegative === false ?
		                                seriesOptions.zThreshold :
		                                -Number.MAX_VALUE
		                        )
		                    ));
		                    zMax = pick(
		                        seriesOptions.zMax,
		                        Math.max(zMax, arrayMax(zData))
		                    );
		                }
		            }
		        }
		    });

		    each(activeSeries, function (series) {

		        var data = series[dataKey],
		            i = data.length,
		            radius;

		        if (isXAxis) {
		            series.getRadii(zMin, zMax, series.minPxSize, series.maxPxSize);
		        }

		        if (range > 0) {
		            while (i--) {
		                if (
		                    isNumber(data[i]) &&
		                    axis.dataMin <= data[i] &&
		                    data[i] <= axis.dataMax
		                ) {
		                    radius = series.radii[i];
		                    pxMin = Math.min(
		                        ((data[i] - min) * transA) - radius,
		                        pxMin
		                    );
		                    pxMax = Math.max(
		                        ((data[i] - min) * transA) + radius,
		                        pxMax
		                    );
		                }
		            }
		        }
		    });

		    // Apply the padding to the min and max properties
		    if (activeSeries.length && range > 0 && !this.isLog) {
		        pxMax -= axisLength;
		        transA *= (
		            axisLength +
		            Math.max(0, pxMin) - // #8901
		            Math.min(pxMax, axisLength)
		        ) / axisLength;
		        each(
		            [['min', 'userMin', pxMin], ['max', 'userMax', pxMax]],
		            function (keys) {
		                if (pick(axis.options[keys[0]], axis[keys[1]]) === undefined) {
		                    axis[keys[0]] += keys[2] / transA;
		                }
		            }
		        );
		    }
		};


		/**
		 * A `bubble` series. If the [type](#series.bubble.type) option is
		 * not specified, it is inherited from [chart.type](#chart.type).
		 *
		 * @type      {Object}
		 * @extends   series,plotOptions.bubble
		 * @excluding dataParser,dataURL,stack
		 * @product   highcharts highstock
		 * @apioption series.bubble
		 */

		/**
		 * An array of data points for the series. For the `bubble` series type,
		 * points can be given in the following ways:
		 *
		 * 1.  An array of arrays with 3 or 2 values. In this case, the values
		 * correspond to `x,y,z`. If the first value is a string, it is applied
		 * as the name of the point, and the `x` value is inferred. The `x`
		 * value can also be omitted, in which case the inner arrays should
		 * be of length 2\. Then the `x` value is automatically calculated,
		 * either starting at 0 and incremented by 1, or from `pointStart` and
		 * `pointInterval` given in the series options.
		 *
		 *  ```js
		 *     data: [
		 *         [0, 1, 2],
		 *         [1, 5, 5],
		 *         [2, 0, 2]
		 *     ]
		 *  ```
		 *
		 * 2.  An array of objects with named values. The following snippet shows only a
		 * few settings, see the complete options set below. If the total number of data
		 * points exceeds the series' [turboThreshold](#series.bubble.turboThreshold),
		 * this option is not available.
		 *
		 *  ```js
		 *     data: [{
		 *         x: 1,
		 *         y: 1,
		 *         z: 1,
		 *         name: "Point2",
		 *         color: "#00FF00"
		 *     }, {
		 *         x: 1,
		 *         y: 5,
		 *         z: 4,
		 *         name: "Point1",
		 *         color: "#FF00FF"
		 *     }]
		 *  ```
		 *
		 * @type      {Array<Object|Array>}
		 * @extends   series.line.data
		 * @excluding marker
		 * @sample    {highcharts} highcharts/chart/reflow-true/
		 *            Numerical values
		 * @sample    {highcharts} highcharts/series/data-array-of-arrays/
		 *            Arrays of numeric x and y
		 * @sample    {highcharts} highcharts/series/data-array-of-arrays-datetime/
		 *            Arrays of datetime x and y
		 * @sample    {highcharts} highcharts/series/data-array-of-name-value/
		 *            Arrays of point.name and y
		 * @sample    {highcharts} highcharts/series/data-array-of-objects/
		 *            Config objects
		 * @product   highcharts
		 * @apioption series.bubble.data
		 */

		/**
		 * The size value for each bubble. The bubbles' diameters are computed
		 * based on the `z`, and controlled by series options like `minSize`,
		 * `maxSize`, `sizeBy`, `zMin` and `zMax`.
		 *
		 * @type {Number}
		 * @product highcharts
		 * @apioption series.bubble.data.z
		 */

		/**
		 * @excluding enabled,enabledThreshold,height,radius,width
		 * @apioption series.bubble.marker
		 */

	}(Highcharts));
	(function (H) {
		/**
		 * (c) 2010-2018 Torstein Honsi
		 *
		 * License: www.highcharts.com/license
		 */

		/**
		 * Extensions for polar charts. Additionally, much of the geometry required for
		 * polar charts is gathered in RadialAxes.js.
		 */

		var each = H.each,
		    pick = H.pick,
		    Pointer = H.Pointer,
		    Series = H.Series,
		    seriesTypes = H.seriesTypes,
		    wrap = H.wrap,

		    seriesProto = Series.prototype,
		    pointerProto = Pointer.prototype,
		    colProto;

		if (!H.polarExtended) {
		    H.polarExtended = true;


		    /**
		     * Search a k-d tree by the point angle, used for shared tooltips in polar
		     * charts
		     */
		    seriesProto.searchPointByAngle = function (e) {
		        var series = this,
		            chart = series.chart,
		            xAxis = series.xAxis,
		            center = xAxis.pane.center,
		            plotX = e.chartX - center[0] - chart.plotLeft,
		            plotY = e.chartY - center[1] - chart.plotTop;

		        return this.searchKDTree({
		            clientX: 180 + (Math.atan2(plotX, plotY) * (-180 / Math.PI))
		        });

		    };

		    /**
		     * #6212 Calculate connectors for spline series in polar chart.
		     * @param {Boolean} calculateNeighbours
		     *        Check if connectors should be calculated for neighbour points as
		     *        well allows short recurence
		     */
		    seriesProto.getConnectors = function (
		        segment,
		        index,
		        calculateNeighbours,
		        connectEnds
		    ) {

		        var i,
		            prevPointInd,
		            nextPointInd,
		            previousPoint,
		            nextPoint,
		            previousX,
		            previousY,
		            nextX,
		            nextY,
		            plotX,
		            plotY,
		            ret,
		            // 1 means control points midway between points, 2 means 1/3 from
		            // the point, 3 is 1/4 etc;
		            smoothing = 1.5,
		            denom = smoothing + 1,
		            leftContX,
		            leftContY,
		            rightContX,
		            rightContY,
		            dLControlPoint, // distance left control point
		            dRControlPoint,
		            leftContAngle,
		            rightContAngle,
		            jointAngle,
		            addedNumber = connectEnds ? 1 : 0;

		        // Calculate final index of points depending on the initial index value.
		        // Because of calculating neighbours, index may be outisde segment
		        // array.
		        if (index >= 0 && index <= segment.length - 1) {
		            i = index;
		        } else if (index < 0) {
		            i = segment.length - 1 + index;
		        } else {
		            i = 0;
		        }

		        prevPointInd = (i - 1 < 0) ? segment.length - (1 + addedNumber) : i - 1;
		        nextPointInd = (i + 1 > segment.length - 1) ? addedNumber : i + 1;
		        previousPoint = segment[prevPointInd];
		        nextPoint = segment[nextPointInd];
		        previousX = previousPoint.plotX;
		        previousY = previousPoint.plotY;
		        nextX = nextPoint.plotX;
		        nextY = nextPoint.plotY;
		        plotX = segment[i].plotX; // actual point
		        plotY = segment[i].plotY;
		        leftContX = (smoothing * plotX + previousX) / denom;
		        leftContY = (smoothing * plotY + previousY) / denom;
		        rightContX = (smoothing * plotX + nextX) / denom;
		        rightContY = (smoothing * plotY + nextY) / denom;
		        dLControlPoint = Math.sqrt(
		            Math.pow(leftContX - plotX, 2) + Math.pow(leftContY - plotY, 2)
		        );
		        dRControlPoint = Math.sqrt(
		            Math.pow(rightContX - plotX, 2) + Math.pow(rightContY - plotY, 2)
		        );
		        leftContAngle = Math.atan2(leftContY - plotY, leftContX - plotX);
		        rightContAngle = Math.atan2(rightContY - plotY, rightContX - plotX);
		        jointAngle = (Math.PI / 2) + ((leftContAngle + rightContAngle) / 2);
		        // Ensure the right direction, jointAngle should be in the same quadrant
		        // as leftContAngle
		        if (Math.abs(leftContAngle - jointAngle) > Math.PI / 2) {
		            jointAngle -= Math.PI;
		        }
		        // Find the corrected control points for a spline straight through the
		        // point
		        leftContX = plotX + Math.cos(jointAngle) * dLControlPoint;
		        leftContY = plotY + Math.sin(jointAngle) * dLControlPoint;
		        rightContX = plotX + Math.cos(Math.PI + jointAngle) * dRControlPoint;
		        rightContY = plotY + Math.sin(Math.PI + jointAngle) * dRControlPoint;

		        // push current point's connectors into returned object

		        ret = {
		            rightContX: rightContX,
		            rightContY: rightContY,
		            leftContX: leftContX,
		            leftContY: leftContY,
		            plotX: plotX,
		            plotY: plotY
		        };

		        // calculate connectors for previous and next point and push them inside
		        // returned object
		        if (calculateNeighbours) {
		            ret.prevPointCont = this.getConnectors(
		                segment,
		                prevPointInd,
		                false,
		                connectEnds
		            );
		        }
		        return ret;
		    };

		    /**
		     * Wrap the buildKDTree function so that it searches by angle (clientX) in
		     * case of shared tooltip, and by two dimensional distance in case of
		     * non-shared.
		     */
		    wrap(seriesProto, 'buildKDTree', function (proceed) {
		        if (this.chart.polar) {
		            if (this.kdByAngle) {
		                this.searchPoint = this.searchPointByAngle;
		            } else {
		                this.options.findNearestPointBy = 'xy';
		            }
		        }
		        proceed.apply(this);
		    });

		    /**
		     * Translate a point's plotX and plotY from the internal angle and radius
		     * measures to true plotX, plotY coordinates
		     */
		    seriesProto.toXY = function (point) {
		        var xy,
		            chart = this.chart,
		            plotX = point.plotX,
		            plotY = point.plotY,
		            clientX;

		        // Save rectangular plotX, plotY for later computation
		        point.rectPlotX = plotX;
		        point.rectPlotY = plotY;

		        // Find the polar plotX and plotY
		        xy = this.xAxis.postTranslate(point.plotX, this.yAxis.len - plotY);
		        point.plotX = point.polarPlotX = xy.x - chart.plotLeft;
		        point.plotY = point.polarPlotY = xy.y - chart.plotTop;

		        // If shared tooltip, record the angle in degrees in order to align X
		        // points. Otherwise, use a standard k-d tree to get the nearest point
		        // in two dimensions.
		        if (this.kdByAngle) {
		            clientX = (
		                (plotX / Math.PI * 180) + this.xAxis.pane.options.startAngle
		            ) % 360;
		            if (clientX < 0) { // #2665
		                clientX += 360;
		            }
		            point.clientX = clientX;
		        } else {
		            point.clientX = point.plotX;
		        }
		    };

		    if (seriesTypes.spline) {
		        /**
		         * Overridden method for calculating a spline from one point to the next
		         */
		        wrap(
		            seriesTypes.spline.prototype,
		            'getPointSpline',
		            function (proceed, segment, point, i) {
		                var ret,
		                    connectors;

		                if (this.chart.polar) {
		                    // moveTo or lineTo
		                    if (!i) {
		                        ret = ['M', point.plotX, point.plotY];
		                    } else { // curve from last point to this
		                        connectors = this.getConnectors(
		                            segment,
		                            i,
		                            true,
		                            this.connectEnds
		                        );
		                        ret = [
		                            'C',
		                            connectors.prevPointCont.rightContX,
		                            connectors.prevPointCont.rightContY,
		                            connectors.leftContX,
		                            connectors.leftContY,
		                            connectors.plotX,
		                            connectors.plotY
		                        ];
		                    }
		                } else {
		                    ret = proceed.call(this, segment, point, i);
		                }
		                return ret;
		            }
		        );

		        // #6430 Areasplinerange series use unwrapped getPointSpline method, so
		        // we need to set this method again.
		        if (seriesTypes.areasplinerange) {
		            seriesTypes.areasplinerange.prototype.getPointSpline =
		                seriesTypes.spline.prototype.getPointSpline;
		        }
		    }

		    /**
		     * Extend translate. The plotX and plotY values are computed as if the polar
		     * chart were a cartesian plane, where plotX denotes the angle in radians
		     * and (yAxis.len - plotY) is the pixel distance from center.
		     */
		    H.addEvent(Series, 'afterTranslate', function () {
		        var chart = this.chart,
		            points,
		            i;

		        if (chart.polar) {
		            // Postprocess plot coordinates
		            this.kdByAngle = chart.tooltip && chart.tooltip.shared;

		            if (!this.preventPostTranslate) {
		                points = this.points;
		                i = points.length;

		                while (i--) {
		                    // Translate plotX, plotY from angle and radius to true plot
		                    // coordinates
		                    this.toXY(points[i]);
		                }
		            }

		            // Perform clip after render
		            if (!this.hasClipCircleSetter) {
		                this.hasClipCircleSetter = Boolean(
		                    H.addEvent(this, 'afterRender', function () {
		                        var circ;
		                        if (chart.polar) {
		                            circ = this.yAxis.center;
		                            this.group.clip(
		                                chart.renderer.clipCircle(
		                                    circ[0],
		                                    circ[1],
		                                    circ[2] / 2
		                                )
		                            );
		                            this.setClip = H.noop;
		                        }
		                    })
		                );
		            }
		        }
		    }, { order: 2 }); // Run after translation of ||-coords

		    /**
		     * Extend getSegmentPath to allow connecting ends across 0 to provide a
		     * closed circle in line-like series.
		     */
		    wrap(seriesProto, 'getGraphPath', function (proceed, points) {
		        var series = this,
		            i,
		            firstValid,
		            popLastPoint;

		        // Connect the path
		        if (this.chart.polar) {
		            points = points || this.points;

		            // Append first valid point in order to connect the ends
		            for (i = 0; i < points.length; i++) {
		                if (!points[i].isNull) {
		                    firstValid = i;
		                    break;
		                }
		            }


		            /**
		             * Polar charts only. Whether to connect the ends of a line series
		             * plot across the extremes.
		             *
		             * @type {Boolean}
		             * @sample {highcharts} highcharts/plotoptions/line-connectends-false/
		             *         Do not connect
		             * @since 2.3.0
		             * @product highcharts
		             * @apioption plotOptions.series.connectEnds
		             */
		            if (
		                this.options.connectEnds !== false &&
		                firstValid !== undefined
		            ) {
		                this.connectEnds = true; // re-used in splines
		                points.splice(points.length, 0, points[firstValid]);
		                popLastPoint = true;
		            }

		            // For area charts, pseudo points are added to the graph, now we
		            // need to translate these
		            each(points, function (point) {
		                if (point.polarPlotY === undefined) {
		                    series.toXY(point);
		                }
		            });
		        }

		        // Run uber method
		        var ret = proceed.apply(this, [].slice.call(arguments, 1));

		        // #6212 points.splice method is adding points to an array. In case of
		        // areaspline getGraphPath method is used two times and in both times
		        // points are added to an array. That is why points.pop is used, to get
		        // unmodified points.
		        if (popLastPoint) {
		            points.pop();
		        }
		        return ret;
		    });


		    var polarAnimate = function (proceed, init) {
		        var chart = this.chart,
		            animation = this.options.animation,
		            group = this.group,
		            markerGroup = this.markerGroup,
		            center = this.xAxis.center,
		            plotLeft = chart.plotLeft,
		            plotTop = chart.plotTop,
		            attribs;

		        // Specific animation for polar charts
		        if (chart.polar) {

		            // Enable animation on polar charts only in SVG. In VML, the scaling
		            // is different, plus animation would be so slow it would't matter.
		            if (chart.renderer.isSVG) {

		                if (animation === true) {
		                    animation = {};
		                }

		                // Initialize the animation
		                if (init) {

		                    // Scale down the group and place it in the center
		                    attribs = {
		                        translateX: center[0] + plotLeft,
		                        translateY: center[1] + plotTop,
		                        scaleX: 0.001, // #1499
		                        scaleY: 0.001
		                    };

		                    group.attr(attribs);
		                    if (markerGroup) {
		                        markerGroup.attr(attribs);
		                    }

		                // Run the animation
		                } else {
		                    attribs = {
		                        translateX: plotLeft,
		                        translateY: plotTop,
		                        scaleX: 1,
		                        scaleY: 1
		                    };
		                    group.animate(attribs, animation);
		                    if (markerGroup) {
		                        markerGroup.animate(attribs, animation);
		                    }

		                    // Delete this function to allow it only once
		                    this.animate = null;
		                }
		            }

		        // For non-polar charts, revert to the basic animation
		        } else {
		            proceed.call(this, init);
		        }
		    };

		    // Define the animate method for regular series
		    wrap(seriesProto, 'animate', polarAnimate);


		    if (seriesTypes.column) {

		        colProto = seriesTypes.column.prototype;

		        colProto.polarArc = function (low, high, start, end) {
		            var center = this.xAxis.center,
		                len = this.yAxis.len;

		            return this.chart.renderer.symbols.arc(
		                center[0],
		                center[1],
		                len - high,
		                null,
		                {
		                    start: start,
		                    end: end,
		                    innerR: len - pick(low, len)
		                }
		            );
		        };

		        /**
		        * Define the animate method for columnseries
		        */
		        wrap(colProto, 'animate', polarAnimate);


		        /**
		         * Extend the column prototype's translate method
		         */
		        wrap(colProto, 'translate', function (proceed) {

		            var xAxis = this.xAxis,
		                startAngleRad = xAxis.startAngleRad,
		                start,
		                points,
		                point,
		                i;

		            this.preventPostTranslate = true;

		            // Run uber method
		            proceed.call(this);

		            // Postprocess plot coordinates
		            if (xAxis.isRadial) {
		                points = this.points;
		                i = points.length;
		                while (i--) {
		                    point = points[i];
		                    start = point.barX + startAngleRad;
		                    point.shapeType = 'path';
		                    point.shapeArgs = {
		                        d: this.polarArc(
		                            point.yBottom,
		                            point.plotY,
		                            start,
		                            start + point.pointWidth
		                        )
		                    };
		                    // Provide correct plotX, plotY for tooltip
		                    this.toXY(point);
		                    point.tooltipPos = [point.plotX, point.plotY];
		                    point.ttBelow = point.plotY > xAxis.center[1];
		                }
		            }
		        });


		        /**
		         * Align column data labels outside the columns. #1199.
		         */
		        wrap(colProto, 'alignDataLabel', function (
		            proceed,
		            point,
		            dataLabel,
		            options,
		            alignTo,
		            isNew
		        ) {

		            if (this.chart.polar) {
		                var angle = point.rectPlotX / Math.PI * 180,
		                    align,
		                    verticalAlign;

		                // Align nicely outside the perimeter of the columns
		                if (options.align === null) {
		                    if (angle > 20 && angle < 160) {
		                        align = 'left'; // right hemisphere
		                    } else if (angle > 200 && angle < 340) {
		                        align = 'right'; // left hemisphere
		                    } else {
		                        align = 'center'; // top or bottom
		                    }
		                    options.align = align;
		                }
		                if (options.verticalAlign === null) {
		                    if (angle < 45 || angle > 315) {
		                        verticalAlign = 'bottom'; // top part
		                    } else if (angle > 135 && angle < 225) {
		                        verticalAlign = 'top'; // bottom part
		                    } else {
		                        verticalAlign = 'middle'; // left or right
		                    }
		                    options.verticalAlign = verticalAlign;
		                }

		                seriesProto.alignDataLabel.call(
		                    this,
		                    point,
		                    dataLabel,
		                    options,
		                    alignTo,
		                    isNew
		                );
		            } else {
		                proceed.call(this, point, dataLabel, options, alignTo, isNew);
		            }

		        });
		    }

		    /**
		     * Extend getCoordinates to prepare for polar axis values
		     */
		    wrap(pointerProto, 'getCoordinates', function (proceed, e) {
		        var chart = this.chart,
		            ret = {
		                xAxis: [],
		                yAxis: []
		            };

		        if (chart.polar) {

		            each(chart.axes, function (axis) {
		                var isXAxis = axis.isXAxis,
		                    center = axis.center,
		                    x = e.chartX - center[0] - chart.plotLeft,
		                    y = e.chartY - center[1] - chart.plotTop;

		                ret[isXAxis ? 'xAxis' : 'yAxis'].push({
		                    axis: axis,
		                    value: axis.translate(
		                        isXAxis ?
		                            Math.PI - Math.atan2(x, y) : // angle
		                            // distance from center
		                            Math.sqrt(Math.pow(x, 2) + Math.pow(y, 2)),
		                        true
		                    )
		                });
		            });

		        } else {
		            ret = proceed.call(this, e);
		        }

		        return ret;
		    });

		    H.SVGRenderer.prototype.clipCircle = function (x, y, r) {
		        var wrapper,
		            id = H.uniqueKey(),

		            clipPath = this.createElement('clipPath').attr({
		                id: id
		            }).add(this.defs);

		        wrapper = this.circle(x, y, r).add(clipPath);
		        wrapper.id = id;
		        wrapper.clipPath = clipPath;

		        return wrapper;
		    };

		    H.addEvent(H.Chart, 'getAxes', function () {

		        if (!this.pane) {
		            this.pane = [];
		        }
		        each(H.splat(this.options.pane), function (paneOptions) {
		            new H.Pane( // eslint-disable-line no-new
		                paneOptions,
		                this
		            );
		        }, this);
		    });

		    H.addEvent(H.Chart, 'afterDrawChartBox', function () {
		        each(this.pane, function (pane) {
		            pane.render();
		        });
		    });

		    /**
		     * Extend chart.get to also search in panes. Used internally in
		     * responsiveness and chart.update.
		     */
		    wrap(H.Chart.prototype, 'get', function (proceed, id) {
		        return H.find(this.pane, function (pane) {
		            return pane.options.id === id;
		        }) || proceed.call(this, id);
		    });
		}

	}(Highcharts));
	return (function () {


	}());
}));