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
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta name="author" content="Emanuel Eichhammer" />
<meta name="copyright" content="(C) 2013-2015 Emanuel Eichhammer" />
<title>QCPAxis Class Reference</title>
<link href="qt.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="top">
<a class="headerLink" href="index.html">Main Page</a> ·
<a class="headerLink" href="classoverview.html">Class Overview</a> ·
<a class="headerLink" href="hierarchy.html">Hierarchy</a> ·
<a class="headerLink" href="annotated.html">All Classes</a> ·
<a class="headerLink" href="pages.html">Special Pages</a>
<!-- Generated by Doxygen 1.8.6 -->
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#pub-types">Public Types</a> |
<a href="#pub-methods">Public Functions</a> |
<a href="#signals">Signals</a> |
<a href="#pub-static-methods">Static Public Functions</a> |
<a href="#pro-methods">Protected Functions</a> </div>
<div class="headertitle">
<div class="title">QCPAxis Class Reference</div> </div>
</div><!--header-->
<div class="contents">
<p>Manages a single axis inside a <a class="el" href="classQCustomPlot.html" title="The central class of the library. This is the QWidget which displays the plot and interacts with the ...">QCustomPlot</a>.
<a href="classQCPAxis.html#details">More...</a></p>
<div class="dynheader">
Inheritance diagram for QCPAxis:</div>
<div class="dyncontent">
<div class="center"><img src="classQCPAxis__inherit__graph.png" border="0" usemap="#QCPAxis_inherit__map" alt="Inheritance graph"/></div>
<map name="QCPAxis_inherit__map" id="QCPAxis_inherit__map">
<area shape="rect" id="node2" href="classQCPLayerable.html" title="Base class for all drawable objects. " alt="" coords="5,5,107,29"/></map>
</div>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-types"></a>
Public Types</h2></td></tr>
<tr class="memitem:ae2bcc1728b382f10f064612b368bc18a"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#ae2bcc1728b382f10f064612b368bc18a">AxisType</a> </td></tr>
<tr class="separator:ae2bcc1728b382f10f064612b368bc18a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4a7da0166f755f5abac23b765d184cad"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a4a7da0166f755f5abac23b765d184cad">LabelType</a> </td></tr>
<tr class="separator:a4a7da0166f755f5abac23b765d184cad"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a24b13374b9b8f75f47eed2ea78c37db9"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a24b13374b9b8f75f47eed2ea78c37db9">LabelSide</a> </td></tr>
<tr class="separator:a24b13374b9b8f75f47eed2ea78c37db9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a36d8e8658dbaa179bf2aeb973db2d6f0"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a36d8e8658dbaa179bf2aeb973db2d6f0">ScaleType</a> </td></tr>
<tr class="separator:a36d8e8658dbaa179bf2aeb973db2d6f0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abee4c7a54c468b1385dfce2c898b115f"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#abee4c7a54c468b1385dfce2c898b115f">SelectablePart</a> </td></tr>
<tr class="separator:abee4c7a54c468b1385dfce2c898b115f"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Functions</h2></td></tr>
<tr class="memitem:ac62c042968bae0e6d474fcfc57c9b71f"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#ac62c042968bae0e6d474fcfc57c9b71f">QCPAxis</a> (<a class="el" href="classQCPAxisRect.html">QCPAxisRect</a> *parent, <a class="el" href="classQCPAxis.html#ae2bcc1728b382f10f064612b368bc18a">AxisType</a> type)</td></tr>
<tr class="separator:ac62c042968bae0e6d474fcfc57c9b71f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a593c37bf6aa4990326dc09e24f45db7f"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a593c37bf6aa4990326dc09e24f45db7f"></a>
<a class="el" href="classQCPAxis.html#ae2bcc1728b382f10f064612b368bc18a">AxisType</a> </td><td class="memItemRight" valign="bottom"><b>axisType</b> () const </td></tr>
<tr class="separator:a593c37bf6aa4990326dc09e24f45db7f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aada3102af43b029e3879bcbf2bddfabb"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aada3102af43b029e3879bcbf2bddfabb"></a>
<a class="el" href="classQCPAxisRect.html">QCPAxisRect</a> * </td><td class="memItemRight" valign="bottom"><b>axisRect</b> () const </td></tr>
<tr class="separator:aada3102af43b029e3879bcbf2bddfabb"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8563e13407bc0616da7f7c84e02de170"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a8563e13407bc0616da7f7c84e02de170"></a>
<a class="el" href="classQCPAxis.html#a36d8e8658dbaa179bf2aeb973db2d6f0">ScaleType</a> </td><td class="memItemRight" valign="bottom"><b>scaleType</b> () const </td></tr>
<tr class="separator:a8563e13407bc0616da7f7c84e02de170"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac937d2a602f865aff2ab6c1e288739f6"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ac937d2a602f865aff2ab6c1e288739f6"></a>
double </td><td class="memItemRight" valign="bottom"><b>scaleLogBase</b> () const </td></tr>
<tr class="separator:ac937d2a602f865aff2ab6c1e288739f6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab1ea79a4f5ea4cf42620f8f51c477ac4"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ab1ea79a4f5ea4cf42620f8f51c477ac4"></a>
const <a class="el" href="classQCPRange.html">QCPRange</a> </td><td class="memItemRight" valign="bottom"><b>range</b> () const </td></tr>
<tr class="separator:ab1ea79a4f5ea4cf42620f8f51c477ac4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ade26dc7994ccd8a11f64fd83377ee021"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ade26dc7994ccd8a11f64fd83377ee021"></a>
bool </td><td class="memItemRight" valign="bottom"><b>rangeReversed</b> () const </td></tr>
<tr class="separator:ade26dc7994ccd8a11f64fd83377ee021"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afc7f20e30dc2865ff6c39f3281f330c2"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="afc7f20e30dc2865ff6c39f3281f330c2"></a>
bool </td><td class="memItemRight" valign="bottom"><b>autoTicks</b> () const </td></tr>
<tr class="separator:afc7f20e30dc2865ff6c39f3281f330c2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac87454a1342f5d2939ab59e68b4d515b"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ac87454a1342f5d2939ab59e68b4d515b"></a>
int </td><td class="memItemRight" valign="bottom"><b>autoTickCount</b> () const </td></tr>
<tr class="separator:ac87454a1342f5d2939ab59e68b4d515b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7169da316ac25dec1606784152fbf2c1"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a7169da316ac25dec1606784152fbf2c1"></a>
bool </td><td class="memItemRight" valign="bottom"><b>autoTickLabels</b> () const </td></tr>
<tr class="separator:a7169da316ac25dec1606784152fbf2c1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae762920261b0c24beb56b893e5a2471d"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae762920261b0c24beb56b893e5a2471d"></a>
bool </td><td class="memItemRight" valign="bottom"><b>autoTickStep</b> () const </td></tr>
<tr class="separator:ae762920261b0c24beb56b893e5a2471d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab9a950e16f373fe5c4b79078bb97c171"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ab9a950e16f373fe5c4b79078bb97c171"></a>
bool </td><td class="memItemRight" valign="bottom"><b>autoSubTicks</b> () const </td></tr>
<tr class="separator:ab9a950e16f373fe5c4b79078bb97c171"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a61c504ec7c5bed9a63edf45345995d10"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a61c504ec7c5bed9a63edf45345995d10"></a>
bool </td><td class="memItemRight" valign="bottom"><b>ticks</b> () const </td></tr>
<tr class="separator:a61c504ec7c5bed9a63edf45345995d10"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9a78fcccd98a73d37b3d991df7b6ef1d"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a9a78fcccd98a73d37b3d991df7b6ef1d"></a>
bool </td><td class="memItemRight" valign="bottom"><b>tickLabels</b> () const </td></tr>
<tr class="separator:a9a78fcccd98a73d37b3d991df7b6ef1d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af7bc2fac3f95949ecd0204d20dc1463b"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="af7bc2fac3f95949ecd0204d20dc1463b"></a>
int </td><td class="memItemRight" valign="bottom"><b>tickLabelPadding</b> () const </td></tr>
<tr class="separator:af7bc2fac3f95949ecd0204d20dc1463b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8a6f58a1ce12cfc4fadd379167668e8d"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a8a6f58a1ce12cfc4fadd379167668e8d"></a>
<a class="el" href="classQCPAxis.html#a4a7da0166f755f5abac23b765d184cad">LabelType</a> </td><td class="memItemRight" valign="bottom"><b>tickLabelType</b> () const </td></tr>
<tr class="separator:a8a6f58a1ce12cfc4fadd379167668e8d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af6d7ad17f3398b114a413f7a3dc5ef9d"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="af6d7ad17f3398b114a413f7a3dc5ef9d"></a>
QFont </td><td class="memItemRight" valign="bottom"><b>tickLabelFont</b> () const </td></tr>
<tr class="separator:af6d7ad17f3398b114a413f7a3dc5ef9d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac86d0636aa55ddd94df171f609897a32"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ac86d0636aa55ddd94df171f609897a32"></a>
QColor </td><td class="memItemRight" valign="bottom"><b>tickLabelColor</b> () const </td></tr>
<tr class="separator:ac86d0636aa55ddd94df171f609897a32"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab9199d72b8c4c06cc6c9b928c30d00d2"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ab9199d72b8c4c06cc6c9b928c30d00d2"></a>
double </td><td class="memItemRight" valign="bottom"><b>tickLabelRotation</b> () const </td></tr>
<tr class="separator:ab9199d72b8c4c06cc6c9b928c30d00d2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0a33835705406506b02a445b1ba32357"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a0a33835705406506b02a445b1ba32357"></a>
<a class="el" href="classQCPAxis.html#a24b13374b9b8f75f47eed2ea78c37db9">LabelSide</a> </td><td class="memItemRight" valign="bottom"><b>tickLabelSide</b> () const </td></tr>
<tr class="separator:a0a33835705406506b02a445b1ba32357"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a132b54ae184a12ed24c9af24f53dc70b"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a132b54ae184a12ed24c9af24f53dc70b"></a>
QString </td><td class="memItemRight" valign="bottom"><b>dateTimeFormat</b> () const </td></tr>
<tr class="separator:a132b54ae184a12ed24c9af24f53dc70b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afdd04c56ed29a9d948f840fc76f0d383"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="afdd04c56ed29a9d948f840fc76f0d383"></a>
Qt::TimeSpec </td><td class="memItemRight" valign="bottom"><b>dateTimeSpec</b> () const </td></tr>
<tr class="separator:afdd04c56ed29a9d948f840fc76f0d383"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae6729b40845b29ffa5a440aa53cec215"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae6729b40845b29ffa5a440aa53cec215"></a>
QString </td><td class="memItemRight" valign="bottom"><b>numberFormat</b> () const </td></tr>
<tr class="separator:ae6729b40845b29ffa5a440aa53cec215"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a91cb2825060ac79a889296377fe0c7c1"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a91cb2825060ac79a889296377fe0c7c1"></a>
int </td><td class="memItemRight" valign="bottom"><b>numberPrecision</b> () const </td></tr>
<tr class="separator:a91cb2825060ac79a889296377fe0c7c1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0e6120d24266544441ab691f316a1b03"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a0e6120d24266544441ab691f316a1b03"></a>
double </td><td class="memItemRight" valign="bottom"><b>tickStep</b> () const </td></tr>
<tr class="separator:a0e6120d24266544441ab691f316a1b03"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5b00b14f480f926df976cc6c52309e78"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a5b00b14f480f926df976cc6c52309e78"></a>
QVector< double > </td><td class="memItemRight" valign="bottom"><b>tickVector</b> () const </td></tr>
<tr class="separator:a5b00b14f480f926df976cc6c52309e78"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a64e6fa81f943ad33dcaf3fa606687b93"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a64e6fa81f943ad33dcaf3fa606687b93"></a>
QVector< QString > </td><td class="memItemRight" valign="bottom"><b>tickVectorLabels</b> () const </td></tr>
<tr class="separator:a64e6fa81f943ad33dcaf3fa606687b93"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a59265d65c5034695ac2578bccbbb0f4a"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a59265d65c5034695ac2578bccbbb0f4a"></a>
int </td><td class="memItemRight" valign="bottom"><b>tickLengthIn</b> () const </td></tr>
<tr class="separator:a59265d65c5034695ac2578bccbbb0f4a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae1b3d7473f50ba8544b2027c1cdc80f2"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae1b3d7473f50ba8544b2027c1cdc80f2"></a>
int </td><td class="memItemRight" valign="bottom"><b>tickLengthOut</b> () const </td></tr>
<tr class="separator:ae1b3d7473f50ba8544b2027c1cdc80f2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a290b4c1375476826daa10e914cb71dab"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a290b4c1375476826daa10e914cb71dab"></a>
int </td><td class="memItemRight" valign="bottom"><b>subTickCount</b> () const </td></tr>
<tr class="separator:a290b4c1375476826daa10e914cb71dab"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a052e6ab2ada7e87fa5e5831dcbd4a517"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a052e6ab2ada7e87fa5e5831dcbd4a517"></a>
int </td><td class="memItemRight" valign="bottom"><b>subTickLengthIn</b> () const </td></tr>
<tr class="separator:a052e6ab2ada7e87fa5e5831dcbd4a517"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a091fdf8d1b3f9660e38b854578efb9bc"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a091fdf8d1b3f9660e38b854578efb9bc"></a>
int </td><td class="memItemRight" valign="bottom"><b>subTickLengthOut</b> () const </td></tr>
<tr class="separator:a091fdf8d1b3f9660e38b854578efb9bc"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4f6a7cd46fb104b1dad93e29cc78fe74"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a4f6a7cd46fb104b1dad93e29cc78fe74"></a>
QPen </td><td class="memItemRight" valign="bottom"><b>basePen</b> () const </td></tr>
<tr class="separator:a4f6a7cd46fb104b1dad93e29cc78fe74"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5eb206da4265c6c083db71d692da3bc4"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a5eb206da4265c6c083db71d692da3bc4"></a>
QPen </td><td class="memItemRight" valign="bottom"><b>tickPen</b> () const </td></tr>
<tr class="separator:a5eb206da4265c6c083db71d692da3bc4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2e8bce6dd03e393dbdf6bb427461a726"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a2e8bce6dd03e393dbdf6bb427461a726"></a>
QPen </td><td class="memItemRight" valign="bottom"><b>subTickPen</b> () const </td></tr>
<tr class="separator:a2e8bce6dd03e393dbdf6bb427461a726"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae8029ae0b32e9d4d73dddcdd0a08c838"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae8029ae0b32e9d4d73dddcdd0a08c838"></a>
QFont </td><td class="memItemRight" valign="bottom"><b>labelFont</b> () const </td></tr>
<tr class="separator:ae8029ae0b32e9d4d73dddcdd0a08c838"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7854c2875e3b8d86b210d108bd87aeb9"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a7854c2875e3b8d86b210d108bd87aeb9"></a>
QColor </td><td class="memItemRight" valign="bottom"><b>labelColor</b> () const </td></tr>
<tr class="separator:a7854c2875e3b8d86b210d108bd87aeb9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab3486dca5a6e9e3ca0e32678272ba549"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ab3486dca5a6e9e3ca0e32678272ba549"></a>
QString </td><td class="memItemRight" valign="bottom"><b>label</b> () const </td></tr>
<tr class="separator:ab3486dca5a6e9e3ca0e32678272ba549"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a59c9a0e362dec811491fc9a0709d2afa"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a59c9a0e362dec811491fc9a0709d2afa"></a>
int </td><td class="memItemRight" valign="bottom"><b>labelPadding</b> () const </td></tr>
<tr class="separator:a59c9a0e362dec811491fc9a0709d2afa"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abb85015a9467ec176e70698307ec833a"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="abb85015a9467ec176e70698307ec833a"></a>
int </td><td class="memItemRight" valign="bottom"><b>padding</b> () const </td></tr>
<tr class="separator:abb85015a9467ec176e70698307ec833a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aebc032ac6eea164a02859c017f52d5e7"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aebc032ac6eea164a02859c017f52d5e7"></a>
int </td><td class="memItemRight" valign="bottom"><b>offset</b> () const </td></tr>
<tr class="separator:aebc032ac6eea164a02859c017f52d5e7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a08323248a1cba4750ef07ceea159e0b3"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a08323248a1cba4750ef07ceea159e0b3"></a>
SelectableParts </td><td class="memItemRight" valign="bottom"><b>selectedParts</b> () const </td></tr>
<tr class="separator:a08323248a1cba4750ef07ceea159e0b3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad2bff3d2ed3d35c10d44c0c02441bd2c"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ad2bff3d2ed3d35c10d44c0c02441bd2c"></a>
SelectableParts </td><td class="memItemRight" valign="bottom"><b>selectableParts</b> () const </td></tr>
<tr class="separator:ad2bff3d2ed3d35c10d44c0c02441bd2c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae245bb3dcd0ec71eee38437de6e719f7"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae245bb3dcd0ec71eee38437de6e719f7"></a>
QFont </td><td class="memItemRight" valign="bottom"><b>selectedTickLabelFont</b> () const </td></tr>
<tr class="separator:ae245bb3dcd0ec71eee38437de6e719f7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a078bbc88b33595a5308350c2889c96d4"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a078bbc88b33595a5308350c2889c96d4"></a>
QFont </td><td class="memItemRight" valign="bottom"><b>selectedLabelFont</b> () const </td></tr>
<tr class="separator:a078bbc88b33595a5308350c2889c96d4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5a3af4bd1a820bb7c6d4c85e1d8d452f"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a5a3af4bd1a820bb7c6d4c85e1d8d452f"></a>
QColor </td><td class="memItemRight" valign="bottom"><b>selectedTickLabelColor</b> () const </td></tr>
<tr class="separator:a5a3af4bd1a820bb7c6d4c85e1d8d452f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8cf8de6ac7f1ca617e05412f669ed229"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a8cf8de6ac7f1ca617e05412f669ed229"></a>
QColor </td><td class="memItemRight" valign="bottom"><b>selectedLabelColor</b> () const </td></tr>
<tr class="separator:a8cf8de6ac7f1ca617e05412f669ed229"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5a3919ad7b60c2789b04c7e72387cfd6"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a5a3919ad7b60c2789b04c7e72387cfd6"></a>
QPen </td><td class="memItemRight" valign="bottom"><b>selectedBasePen</b> () const </td></tr>
<tr class="separator:a5a3919ad7b60c2789b04c7e72387cfd6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9f86ef82e1d1a908ab4c68cfa5fe4175"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a9f86ef82e1d1a908ab4c68cfa5fe4175"></a>
QPen </td><td class="memItemRight" valign="bottom"><b>selectedTickPen</b> () const </td></tr>
<tr class="separator:a9f86ef82e1d1a908ab4c68cfa5fe4175"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1b264fdfef48c22aba36e76de7856784"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a1b264fdfef48c22aba36e76de7856784"></a>
QPen </td><td class="memItemRight" valign="bottom"><b>selectedSubTickPen</b> () const </td></tr>
<tr class="separator:a1b264fdfef48c22aba36e76de7856784"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac85aebbedf67d7bc9e1e5c182151536b"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ac85aebbedf67d7bc9e1e5c182151536b"></a>
<a class="el" href="classQCPLineEnding.html">QCPLineEnding</a> </td><td class="memItemRight" valign="bottom"><b>lowerEnding</b> () const </td></tr>
<tr class="separator:ac85aebbedf67d7bc9e1e5c182151536b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aad503ac95ee34e614ffee0bd66473e1a"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aad503ac95ee34e614ffee0bd66473e1a"></a>
<a class="el" href="classQCPLineEnding.html">QCPLineEnding</a> </td><td class="memItemRight" valign="bottom"><b>upperEnding</b> () const </td></tr>
<tr class="separator:aad503ac95ee34e614ffee0bd66473e1a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac4fb913cce3072b5e75a4635e0f6cd04"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classQCPGrid.html">QCPGrid</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#ac4fb913cce3072b5e75a4635e0f6cd04">grid</a> () const </td></tr>
<tr class="separator:ac4fb913cce3072b5e75a4635e0f6cd04"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adef29cae617af4f519f6c40d1a866ca6"><td class="memItemLeft" align="right" valign="top">Q_SLOT void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#adef29cae617af4f519f6c40d1a866ca6">setScaleType</a> (<a class="el" href="classQCPAxis.html#a36d8e8658dbaa179bf2aeb973db2d6f0">QCPAxis::ScaleType</a> type)</td></tr>
<tr class="separator:adef29cae617af4f519f6c40d1a866ca6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a726186054be90487885a748aa1b42188"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a726186054be90487885a748aa1b42188">setScaleLogBase</a> (double base)</td></tr>
<tr class="separator:a726186054be90487885a748aa1b42188"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aebdfea5d44c3a0ad2b4700cd4d25b641"><td class="memItemLeft" align="right" valign="top">Q_SLOT void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#aebdfea5d44c3a0ad2b4700cd4d25b641">setRange</a> (const <a class="el" href="classQCPRange.html">QCPRange</a> &range)</td></tr>
<tr class="separator:aebdfea5d44c3a0ad2b4700cd4d25b641"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a57d6ee9e9009fe88cb19db476ec70bca"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a57d6ee9e9009fe88cb19db476ec70bca">setRange</a> (double lower, double upper)</td></tr>
<tr class="separator:a57d6ee9e9009fe88cb19db476ec70bca"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acf60e5b2d631fbc8c4548c3d579cb6d0"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#acf60e5b2d631fbc8c4548c3d579cb6d0">setRange</a> (double position, double size, Qt::AlignmentFlag alignment)</td></tr>
<tr class="separator:acf60e5b2d631fbc8c4548c3d579cb6d0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afcf51227d337db28d1a9ce9a4d1bc91a"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#afcf51227d337db28d1a9ce9a4d1bc91a">setRangeLower</a> (double lower)</td></tr>
<tr class="separator:afcf51227d337db28d1a9ce9a4d1bc91a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acd3ca1247aa867b540cd5ec30ccd3bef"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#acd3ca1247aa867b540cd5ec30ccd3bef">setRangeUpper</a> (double upper)</td></tr>
<tr class="separator:acd3ca1247aa867b540cd5ec30ccd3bef"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2172fdb196b1a0dc3f40992fcad8e9e1"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a2172fdb196b1a0dc3f40992fcad8e9e1">setRangeReversed</a> (bool reversed)</td></tr>
<tr class="separator:a2172fdb196b1a0dc3f40992fcad8e9e1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae867c23d3a6a7bd4d09cc66c5d018f63"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#ae867c23d3a6a7bd4d09cc66c5d018f63">setAutoTicks</a> (bool on)</td></tr>
<tr class="separator:ae867c23d3a6a7bd4d09cc66c5d018f63"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7c7111cbeac9ec5fcb40f93a1ef51a0b"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a7c7111cbeac9ec5fcb40f93a1ef51a0b">setAutoTickCount</a> (int approximateCount)</td></tr>
<tr class="separator:a7c7111cbeac9ec5fcb40f93a1ef51a0b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aaa47e3a6bac0c20d4beb9028f01bc1a1"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#aaa47e3a6bac0c20d4beb9028f01bc1a1">setAutoTickLabels</a> (bool on)</td></tr>
<tr class="separator:aaa47e3a6bac0c20d4beb9028f01bc1a1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a99fe77b034e06f5b723995beab96e741"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a99fe77b034e06f5b723995beab96e741">setAutoTickStep</a> (bool on)</td></tr>
<tr class="separator:a99fe77b034e06f5b723995beab96e741"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adcbdec7a60054b88571e89599f4a45bf"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#adcbdec7a60054b88571e89599f4a45bf">setAutoSubTicks</a> (bool on)</td></tr>
<tr class="separator:adcbdec7a60054b88571e89599f4a45bf"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac891409315bc379e3b1abdb162c1a011"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#ac891409315bc379e3b1abdb162c1a011">setTicks</a> (bool show)</td></tr>
<tr class="separator:ac891409315bc379e3b1abdb162c1a011"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a04ba16e1f6f78d70f938519576ed32c8"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a04ba16e1f6f78d70f938519576ed32c8">setTickLabels</a> (bool show)</td></tr>
<tr class="separator:a04ba16e1f6f78d70f938519576ed32c8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af302c479af9dbc2e9f0e44e07c0012ee"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#af302c479af9dbc2e9f0e44e07c0012ee">setTickLabelPadding</a> (int padding)</td></tr>
<tr class="separator:af302c479af9dbc2e9f0e44e07c0012ee"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a54f24f5ce8feea25209388a863d7e448"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a54f24f5ce8feea25209388a863d7e448">setTickLabelType</a> (<a class="el" href="classQCPAxis.html#a4a7da0166f755f5abac23b765d184cad">LabelType</a> type)</td></tr>
<tr class="separator:a54f24f5ce8feea25209388a863d7e448"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2b8690c4e8dbc39d9185d2b398ce7a6c"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a2b8690c4e8dbc39d9185d2b398ce7a6c">setTickLabelFont</a> (const QFont &font)</td></tr>
<tr class="separator:a2b8690c4e8dbc39d9185d2b398ce7a6c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a395e445c3fe496b935bee7b911ecfd1c"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a395e445c3fe496b935bee7b911ecfd1c">setTickLabelColor</a> (const QColor &color)</td></tr>
<tr class="separator:a395e445c3fe496b935bee7b911ecfd1c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1bddd4413df8a576b7ad4b067fb33375"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a1bddd4413df8a576b7ad4b067fb33375">setTickLabelRotation</a> (double degrees)</td></tr>
<tr class="separator:a1bddd4413df8a576b7ad4b067fb33375"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a13ec644fc6e22715744c92c6dfa4f0fa"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a13ec644fc6e22715744c92c6dfa4f0fa">setTickLabelSide</a> (<a class="el" href="classQCPAxis.html#a24b13374b9b8f75f47eed2ea78c37db9">LabelSide</a> side)</td></tr>
<tr class="separator:a13ec644fc6e22715744c92c6dfa4f0fa"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2ee0191daa03524a682113e63e05f7a7"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a2ee0191daa03524a682113e63e05f7a7">setDateTimeFormat</a> (const QString &format)</td></tr>
<tr class="separator:a2ee0191daa03524a682113e63e05f7a7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a262e06731debed7eee11fa6a81d67eaf"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a262e06731debed7eee11fa6a81d67eaf">setDateTimeSpec</a> (const Qt::TimeSpec &timeSpec)</td></tr>
<tr class="separator:a262e06731debed7eee11fa6a81d67eaf"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae585a54dc2aac662e90a2ca82f002590"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#ae585a54dc2aac662e90a2ca82f002590">setNumberFormat</a> (const QString &formatCode)</td></tr>
<tr class="separator:ae585a54dc2aac662e90a2ca82f002590"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a21dc8023ad7500382ad9574b48137e63"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a21dc8023ad7500382ad9574b48137e63">setNumberPrecision</a> (int precision)</td></tr>
<tr class="separator:a21dc8023ad7500382ad9574b48137e63"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af727db0acc6492c4c774c0700e738205"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#af727db0acc6492c4c774c0700e738205">setTickStep</a> (double step)</td></tr>
<tr class="separator:af727db0acc6492c4c774c0700e738205"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a871db94c5d796c80fcbe1a9d4506e27e"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a871db94c5d796c80fcbe1a9d4506e27e">setTickVector</a> (const QVector< double > &vec)</td></tr>
<tr class="separator:a871db94c5d796c80fcbe1a9d4506e27e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a921d3ba3853ca3bd2cce3459f7a243ed"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a921d3ba3853ca3bd2cce3459f7a243ed">setTickVectorLabels</a> (const QVector< QString > &vec)</td></tr>
<tr class="separator:a921d3ba3853ca3bd2cce3459f7a243ed"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a62ec40bebe3540e9c1479a8fd2be3b0d"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a62ec40bebe3540e9c1479a8fd2be3b0d">setTickLength</a> (int inside, int outside=0)</td></tr>
<tr class="separator:a62ec40bebe3540e9c1479a8fd2be3b0d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afae1a37a99611366275a51204d991739"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#afae1a37a99611366275a51204d991739">setTickLengthIn</a> (int inside)</td></tr>
<tr class="separator:afae1a37a99611366275a51204d991739"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3b8a0debd1ffedd2c22d0592dfbb4e62"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a3b8a0debd1ffedd2c22d0592dfbb4e62">setTickLengthOut</a> (int outside)</td></tr>
<tr class="separator:a3b8a0debd1ffedd2c22d0592dfbb4e62"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4b1554ead9d7f9799650d51383e326dd"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a4b1554ead9d7f9799650d51383e326dd">setSubTickCount</a> (int count)</td></tr>
<tr class="separator:a4b1554ead9d7f9799650d51383e326dd"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab702d6fd42fc620607435339a1c2a2e1"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#ab702d6fd42fc620607435339a1c2a2e1">setSubTickLength</a> (int inside, int outside=0)</td></tr>
<tr class="separator:ab702d6fd42fc620607435339a1c2a2e1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac46fa2a993a9f5789540977610acf1de"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#ac46fa2a993a9f5789540977610acf1de">setSubTickLengthIn</a> (int inside)</td></tr>
<tr class="separator:ac46fa2a993a9f5789540977610acf1de"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4c6dfc3963492ed72a77724012df5f23"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a4c6dfc3963492ed72a77724012df5f23">setSubTickLengthOut</a> (int outside)</td></tr>
<tr class="separator:a4c6dfc3963492ed72a77724012df5f23"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a778d45fb71b3c7ab3bb7079e18b058e4"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a778d45fb71b3c7ab3bb7079e18b058e4">setBasePen</a> (const QPen &pen)</td></tr>
<tr class="separator:a778d45fb71b3c7ab3bb7079e18b058e4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad80923bcc1c5da4c4db602c5325e797e"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#ad80923bcc1c5da4c4db602c5325e797e">setTickPen</a> (const QPen &pen)</td></tr>
<tr class="separator:ad80923bcc1c5da4c4db602c5325e797e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aede4028ae7516bd51a60618a8233f9cf"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#aede4028ae7516bd51a60618a8233f9cf">setSubTickPen</a> (const QPen &pen)</td></tr>
<tr class="separator:aede4028ae7516bd51a60618a8233f9cf"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a71ac1a47f7547e490a8c4311d1433cf3"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a71ac1a47f7547e490a8c4311d1433cf3">setLabelFont</a> (const QFont &font)</td></tr>
<tr class="separator:a71ac1a47f7547e490a8c4311d1433cf3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6c906fe56d75f0122335b9f79b999608"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a6c906fe56d75f0122335b9f79b999608">setLabelColor</a> (const QColor &color)</td></tr>
<tr class="separator:a6c906fe56d75f0122335b9f79b999608"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a33bcc382c111c9f31bb0687352a2dea4"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a33bcc382c111c9f31bb0687352a2dea4">setLabel</a> (const QString &str)</td></tr>
<tr class="separator:a33bcc382c111c9f31bb0687352a2dea4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4391192a766e5d20cfe5cbc17607a7a2"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a4391192a766e5d20cfe5cbc17607a7a2">setLabelPadding</a> (int padding)</td></tr>
<tr class="separator:a4391192a766e5d20cfe5cbc17607a7a2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5691441cb3de9e9844855d339c0db279"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a5691441cb3de9e9844855d339c0db279">setPadding</a> (int padding)</td></tr>
<tr class="separator:a5691441cb3de9e9844855d339c0db279"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a04a652603cbe50eba9969ee6d68873c3"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a04a652603cbe50eba9969ee6d68873c3">setOffset</a> (int offset)</td></tr>
<tr class="separator:a04a652603cbe50eba9969ee6d68873c3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a845ccb560b7bc5281098a5be494145f6"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a845ccb560b7bc5281098a5be494145f6">setSelectedTickLabelFont</a> (const QFont &font)</td></tr>
<tr class="separator:a845ccb560b7bc5281098a5be494145f6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a02ec2a75d4d8401eaab834fbc6803d30"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a02ec2a75d4d8401eaab834fbc6803d30">setSelectedLabelFont</a> (const QFont &font)</td></tr>
<tr class="separator:a02ec2a75d4d8401eaab834fbc6803d30"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9bdbf5e63ab15187f3a1de9440129227"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a9bdbf5e63ab15187f3a1de9440129227">setSelectedTickLabelColor</a> (const QColor &color)</td></tr>
<tr class="separator:a9bdbf5e63ab15187f3a1de9440129227"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5d502dec597c634f491fdd73d151c72d"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a5d502dec597c634f491fdd73d151c72d">setSelectedLabelColor</a> (const QColor &color)</td></tr>
<tr class="separator:a5d502dec597c634f491fdd73d151c72d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aeb917a909215605b95ef2be843de1ee8"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#aeb917a909215605b95ef2be843de1ee8">setSelectedBasePen</a> (const QPen &pen)</td></tr>
<tr class="separator:aeb917a909215605b95ef2be843de1ee8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8360502685eb782edbf04019c9345cdc"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a8360502685eb782edbf04019c9345cdc">setSelectedTickPen</a> (const QPen &pen)</td></tr>
<tr class="separator:a8360502685eb782edbf04019c9345cdc"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2a00a7166600155eac26843132eb9576"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a2a00a7166600155eac26843132eb9576">setSelectedSubTickPen</a> (const QPen &pen)</td></tr>
<tr class="separator:a2a00a7166600155eac26843132eb9576"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a513f9b9e326c505d9bec54880031b085"><td class="memItemLeft" align="right" valign="top">Q_SLOT void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a513f9b9e326c505d9bec54880031b085">setSelectableParts</a> (const QCPAxis::SelectableParts &selectableParts)</td></tr>
<tr class="separator:a513f9b9e326c505d9bec54880031b085"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab9d7a69277dcbed9119b3c1f25ca19c3"><td class="memItemLeft" align="right" valign="top">Q_SLOT void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#ab9d7a69277dcbed9119b3c1f25ca19c3">setSelectedParts</a> (const QCPAxis::SelectableParts &selectedParts)</td></tr>
<tr class="separator:ab9d7a69277dcbed9119b3c1f25ca19c3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a08af1c72db9ae4dc8cb8a973d44405ab"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a08af1c72db9ae4dc8cb8a973d44405ab">setLowerEnding</a> (const <a class="el" href="classQCPLineEnding.html">QCPLineEnding</a> &ending)</td></tr>
<tr class="separator:a08af1c72db9ae4dc8cb8a973d44405ab"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a69119b892fc306f651763596685aa377"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a69119b892fc306f651763596685aa377">setUpperEnding</a> (const <a class="el" href="classQCPLineEnding.html">QCPLineEnding</a> &ending)</td></tr>
<tr class="separator:a69119b892fc306f651763596685aa377"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2877a6230920c118be65c6113089f467"><td class="memItemLeft" align="right" valign="top">virtual double </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a2877a6230920c118be65c6113089f467">selectTest</a> (const QPointF &pos, bool onlySelectable, QVariant *details=0) const </td></tr>
<tr class="separator:a2877a6230920c118be65c6113089f467"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a57483f2f60145ddc9e63f3af53959265"><td class="memItemLeft" align="right" valign="top">Qt::Orientation </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a57483f2f60145ddc9e63f3af53959265">orientation</a> () const </td></tr>
<tr class="separator:a57483f2f60145ddc9e63f3af53959265"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a18f3a68f2b691af1fd34b6593c886630"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a18f3a68f2b691af1fd34b6593c886630">moveRange</a> (double diff)</td></tr>
<tr class="separator:a18f3a68f2b691af1fd34b6593c886630"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7072ff96fe690148f1bbcdb4f773ea1c"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a7072ff96fe690148f1bbcdb4f773ea1c">scaleRange</a> (double factor, double center)</td></tr>
<tr class="separator:a7072ff96fe690148f1bbcdb4f773ea1c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af4bbd446dcaee5a83ac30ce9bcd6e125"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#af4bbd446dcaee5a83ac30ce9bcd6e125">setScaleRatio</a> (const <a class="el" href="classQCPAxis.html">QCPAxis</a> *otherAxis, double ratio=1.0)</td></tr>
<tr class="separator:af4bbd446dcaee5a83ac30ce9bcd6e125"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a499345f02ebce4b23d8ccec96e58daa9"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a499345f02ebce4b23d8ccec96e58daa9">rescale</a> (bool onlyVisiblePlottables=false)</td></tr>
<tr class="separator:a499345f02ebce4b23d8ccec96e58daa9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae9289ef7043b9d966af88eaa95b037d1"><td class="memItemLeft" align="right" valign="top">double </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#ae9289ef7043b9d966af88eaa95b037d1">pixelToCoord</a> (double value) const </td></tr>
<tr class="separator:ae9289ef7043b9d966af88eaa95b037d1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a985ae693b842fb0422b4390fe36d299a"><td class="memItemLeft" align="right" valign="top">double </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a985ae693b842fb0422b4390fe36d299a">coordToPixel</a> (double value) const </td></tr>
<tr class="separator:a985ae693b842fb0422b4390fe36d299a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab2965a8ab1da948b897f1c006080760b"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classQCPAxis.html#abee4c7a54c468b1385dfce2c898b115f">SelectablePart</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#ab2965a8ab1da948b897f1c006080760b">getPartAt</a> (const QPointF &pos) const </td></tr>
<tr class="separator:ab2965a8ab1da948b897f1c006080760b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4f7404494cccdbfc00e1e865b7ed16a4"><td class="memItemLeft" align="right" valign="top">QList< <a class="el" href="classQCPAbstractPlottable.html">QCPAbstractPlottable</a> * > </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a4f7404494cccdbfc00e1e865b7ed16a4">plottables</a> () const </td></tr>
<tr class="separator:a4f7404494cccdbfc00e1e865b7ed16a4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad3919e7d7400f55446ea82018fe5e3a8"><td class="memItemLeft" align="right" valign="top">QList< <a class="el" href="classQCPGraph.html">QCPGraph</a> * > </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#ad3919e7d7400f55446ea82018fe5e3a8">graphs</a> () const </td></tr>
<tr class="separator:ad3919e7d7400f55446ea82018fe5e3a8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae437656a5fd1a03721a8f2d7aab460fe"><td class="memItemLeft" align="right" valign="top">QList< <a class="el" href="classQCPAbstractItem.html">QCPAbstractItem</a> * > </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#ae437656a5fd1a03721a8f2d7aab460fe">items</a> () const </td></tr>
<tr class="separator:ae437656a5fd1a03721a8f2d7aab460fe"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classQCPLayerable"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classQCPLayerable')"><img src="closed.png" alt="-"/> Public Functions inherited from <a class="el" href="classQCPLayerable.html">QCPLayerable</a></td></tr>
<tr class="memitem:a74c0fa237f29bf0e49565013fc5d1ec0 inherit pub_methods_classQCPLayerable"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPLayerable.html#a74c0fa237f29bf0e49565013fc5d1ec0">QCPLayerable</a> (<a class="el" href="classQCustomPlot.html">QCustomPlot</a> *plot, QString targetLayer=QString(), <a class="el" href="classQCPLayerable.html">QCPLayerable</a> *<a class="el" href="classQCPLayerable.html#a98d79f5b716d45eac4347befe546d0ec">parentLayerable</a>=0)</td></tr>
<tr class="separator:a74c0fa237f29bf0e49565013fc5d1ec0 inherit pub_methods_classQCPLayerable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a10a3cc92e0fa63e4a929e61d34e275a7 inherit pub_methods_classQCPLayerable"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a10a3cc92e0fa63e4a929e61d34e275a7"></a>
bool </td><td class="memItemRight" valign="bottom"><b>visible</b> () const </td></tr>
<tr class="separator:a10a3cc92e0fa63e4a929e61d34e275a7 inherit pub_methods_classQCPLayerable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab7e0e94461566093d36ffc0f5312b109 inherit pub_methods_classQCPLayerable"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ab7e0e94461566093d36ffc0f5312b109"></a>
<a class="el" href="classQCustomPlot.html">QCustomPlot</a> * </td><td class="memItemRight" valign="bottom"><b>parentPlot</b> () const </td></tr>
<tr class="separator:ab7e0e94461566093d36ffc0f5312b109 inherit pub_methods_classQCPLayerable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a98d79f5b716d45eac4347befe546d0ec inherit pub_methods_classQCPLayerable"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classQCPLayerable.html">QCPLayerable</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPLayerable.html#a98d79f5b716d45eac4347befe546d0ec">parentLayerable</a> () const </td></tr>
<tr class="separator:a98d79f5b716d45eac4347befe546d0ec inherit pub_methods_classQCPLayerable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aea67e8c19145e70d68c286a36f6b8300 inherit pub_methods_classQCPLayerable"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aea67e8c19145e70d68c286a36f6b8300"></a>
<a class="el" href="classQCPLayer.html">QCPLayer</a> * </td><td class="memItemRight" valign="bottom"><b>layer</b> () const </td></tr>
<tr class="separator:aea67e8c19145e70d68c286a36f6b8300 inherit pub_methods_classQCPLayerable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aef5cb4aa899ed9dc9384fd614560291e inherit pub_methods_classQCPLayerable"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aef5cb4aa899ed9dc9384fd614560291e"></a>
bool </td><td class="memItemRight" valign="bottom"><b>antialiased</b> () const </td></tr>
<tr class="separator:aef5cb4aa899ed9dc9384fd614560291e inherit pub_methods_classQCPLayerable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3bed99ddc396b48ce3ebfdc0418744f8 inherit pub_methods_classQCPLayerable"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPLayerable.html#a3bed99ddc396b48ce3ebfdc0418744f8">setVisible</a> (bool on)</td></tr>
<tr class="separator:a3bed99ddc396b48ce3ebfdc0418744f8 inherit pub_methods_classQCPLayerable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab0d0da6d2de45a118886d2c8e16d5a54 inherit pub_methods_classQCPLayerable"><td class="memItemLeft" align="right" valign="top">Q_SLOT bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPLayerable.html#ab0d0da6d2de45a118886d2c8e16d5a54">setLayer</a> (<a class="el" href="classQCPLayer.html">QCPLayer</a> *layer)</td></tr>
<tr class="separator:ab0d0da6d2de45a118886d2c8e16d5a54 inherit pub_methods_classQCPLayerable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab25a0e7b897993b44447caee0f142083 inherit pub_methods_classQCPLayerable"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPLayerable.html#ab25a0e7b897993b44447caee0f142083">setLayer</a> (const QString &layerName)</td></tr>
<tr class="separator:ab25a0e7b897993b44447caee0f142083 inherit pub_methods_classQCPLayerable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4fd43e89be4a553ead41652565ff0581 inherit pub_methods_classQCPLayerable"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPLayerable.html#a4fd43e89be4a553ead41652565ff0581">setAntialiased</a> (bool enabled)</td></tr>
<tr class="separator:a4fd43e89be4a553ead41652565ff0581 inherit pub_methods_classQCPLayerable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a30809f7455e9794bca7b6c737622fa63 inherit pub_methods_classQCPLayerable"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPLayerable.html#a30809f7455e9794bca7b6c737622fa63">realVisibility</a> () const </td></tr>
<tr class="separator:a30809f7455e9794bca7b6c737622fa63 inherit pub_methods_classQCPLayerable"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="signals"></a>
Signals</h2></td></tr>
<tr class="memitem:af46d99613d29518795134ec4928e3873"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#af46d99613d29518795134ec4928e3873">ticksRequest</a> ()</td></tr>
<tr class="separator:af46d99613d29518795134ec4928e3873"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0894084e4c16a1736534c4095746f910"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a0894084e4c16a1736534c4095746f910">rangeChanged</a> (const <a class="el" href="classQCPRange.html">QCPRange</a> &newRange)</td></tr>
<tr class="separator:a0894084e4c16a1736534c4095746f910"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aac8576288e8e31f16186124bc10dd10d"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#aac8576288e8e31f16186124bc10dd10d">rangeChanged</a> (const <a class="el" href="classQCPRange.html">QCPRange</a> &newRange, const <a class="el" href="classQCPRange.html">QCPRange</a> &oldRange)</td></tr>
<tr class="separator:aac8576288e8e31f16186124bc10dd10d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3505ed8a93bd2e349d858d84996bf767"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a3505ed8a93bd2e349d858d84996bf767">scaleTypeChanged</a> (<a class="el" href="classQCPAxis.html#a36d8e8658dbaa179bf2aeb973db2d6f0">QCPAxis::ScaleType</a> scaleType)</td></tr>
<tr class="separator:a3505ed8a93bd2e349d858d84996bf767"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a62b598abeee7174a05f9d542cc85b1f5"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a62b598abeee7174a05f9d542cc85b1f5">selectionChanged</a> (const QCPAxis::SelectableParts &parts)</td></tr>
<tr class="separator:a62b598abeee7174a05f9d542cc85b1f5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa5ff1fd851139028a3bb4efcb31de9fc"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#aa5ff1fd851139028a3bb4efcb31de9fc">selectableChanged</a> (const QCPAxis::SelectableParts &parts)</td></tr>
<tr class="separator:aa5ff1fd851139028a3bb4efcb31de9fc"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header signals_classQCPLayerable"><td colspan="2" onclick="javascript:toggleInherit('signals_classQCPLayerable')"><img src="closed.png" alt="-"/> Signals inherited from <a class="el" href="classQCPLayerable.html">QCPLayerable</a></td></tr>
<tr class="memitem:abbf8657cedea73ac1c3499b521c90eba inherit signals_classQCPLayerable"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPLayerable.html#abbf8657cedea73ac1c3499b521c90eba">layerChanged</a> (<a class="el" href="classQCPLayer.html">QCPLayer</a> *newLayer)</td></tr>
<tr class="separator:abbf8657cedea73ac1c3499b521c90eba inherit signals_classQCPLayerable"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-static-methods"></a>
Static Public Functions</h2></td></tr>
<tr class="memitem:ac0a6b77bd52bec6c81cd62d167cfeba6"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classQCPAxis.html#ae2bcc1728b382f10f064612b368bc18a">AxisType</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#ac0a6b77bd52bec6c81cd62d167cfeba6">marginSideToAxisType</a> (<a class="el" href="namespaceQCP.html#a7e487e3e2ccb62ab7771065bab7cae54">QCP::MarginSide</a> side)</td></tr>
<tr class="separator:ac0a6b77bd52bec6c81cd62d167cfeba6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9a68b3e45f1b1e33d4d807822342516c"><td class="memItemLeft" align="right" valign="top">static Qt::Orientation </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a9a68b3e45f1b1e33d4d807822342516c">orientation</a> (<a class="el" href="classQCPAxis.html#ae2bcc1728b382f10f064612b368bc18a">AxisType</a> type)</td></tr>
<tr class="separator:a9a68b3e45f1b1e33d4d807822342516c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa85ba73dfee6483e23825461b725e363"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classQCPAxis.html#ae2bcc1728b382f10f064612b368bc18a">AxisType</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#aa85ba73dfee6483e23825461b725e363">opposite</a> (<a class="el" href="classQCPAxis.html#ae2bcc1728b382f10f064612b368bc18a">AxisType</a> type)</td></tr>
<tr class="separator:aa85ba73dfee6483e23825461b725e363"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-methods"></a>
Protected Functions</h2></td></tr>
<tr class="memitem:a57d9e961bae7d62f5b4e1f143e660c78"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a57d9e961bae7d62f5b4e1f143e660c78">setupTickVectors</a> ()</td></tr>
<tr class="separator:a57d9e961bae7d62f5b4e1f143e660c78"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a626eef437c874148df1a5ac78506d463"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a626eef437c874148df1a5ac78506d463">generateAutoTicks</a> ()</td></tr>
<tr class="separator:a626eef437c874148df1a5ac78506d463"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3c5c045019fcdc0843a3e064eda7478a"><td class="memItemLeft" align="right" valign="top">virtual int </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a3c5c045019fcdc0843a3e064eda7478a">calculateAutoSubTickCount</a> (double tickStep) const </td></tr>
<tr class="separator:a3c5c045019fcdc0843a3e064eda7478a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a47bdb0a55de6759489ee47665199aebb"><td class="memItemLeft" align="right" valign="top">virtual int </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a47bdb0a55de6759489ee47665199aebb">calculateMargin</a> ()</td></tr>
<tr class="separator:a47bdb0a55de6759489ee47665199aebb"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a13bde39eb1e0b7c14a02935689be8aba"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a13bde39eb1e0b7c14a02935689be8aba">applyDefaultAntialiasingHint</a> (<a class="el" href="classQCPPainter.html">QCPPainter</a> *painter) const </td></tr>
<tr class="separator:a13bde39eb1e0b7c14a02935689be8aba"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a258b1e783eda5cd14ec5552c696a424e"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a258b1e783eda5cd14ec5552c696a424e">draw</a> (<a class="el" href="classQCPPainter.html">QCPPainter</a> *painter)</td></tr>
<tr class="separator:a258b1e783eda5cd14ec5552c696a424e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aca53b2f365dfc1257cba9e62395aa68f"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="namespaceQCP.html#a2ad6bb6281c7c2d593d4277b44c2b037">QCP::Interaction</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#aca53b2f365dfc1257cba9e62395aa68f">selectionCategory</a> () const </td></tr>
<tr class="separator:aca53b2f365dfc1257cba9e62395aa68f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa8a5fe80e2898ec08ada26b5fbee9eca"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#aa8a5fe80e2898ec08ada26b5fbee9eca">selectEvent</a> (QMouseEvent *event, bool additive, const QVariant &details, bool *selectionStateChanged)</td></tr>
<tr class="separator:aa8a5fe80e2898ec08ada26b5fbee9eca"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a53512242cde6ec21943a3ba10dbf78c3"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a53512242cde6ec21943a3ba10dbf78c3">deselectEvent</a> (bool *selectionStateChanged)</td></tr>
<tr class="separator:a53512242cde6ec21943a3ba10dbf78c3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a06320a944d1120732cc0d72fe1306d8b"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a06320a944d1120732cc0d72fe1306d8b">visibleTickBounds</a> (int &lowIndex, int &highIndex) const </td></tr>
<tr class="separator:a06320a944d1120732cc0d72fe1306d8b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1385765db2419ee5fb5505a6cf9130fb"><td class="memItemLeft" align="right" valign="top">double </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a1385765db2419ee5fb5505a6cf9130fb">baseLog</a> (double value) const </td></tr>
<tr class="separator:a1385765db2419ee5fb5505a6cf9130fb"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a97d69f021a05126fcb978d0aefea47b8"><td class="memItemLeft" align="right" valign="top">double </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a97d69f021a05126fcb978d0aefea47b8">basePow</a> (double value) const </td></tr>
<tr class="separator:a97d69f021a05126fcb978d0aefea47b8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3eb0681d31baf579bb73b86a0153cb02"><td class="memItemLeft" align="right" valign="top">QPen </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a3eb0681d31baf579bb73b86a0153cb02">getBasePen</a> () const </td></tr>
<tr class="separator:a3eb0681d31baf579bb73b86a0153cb02"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7f503910be40fb1717e1635be3ef17e1"><td class="memItemLeft" align="right" valign="top">QPen </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a7f503910be40fb1717e1635be3ef17e1">getTickPen</a> () const </td></tr>
<tr class="separator:a7f503910be40fb1717e1635be3ef17e1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab4f7e60a40eb051c775afcaeab895c85"><td class="memItemLeft" align="right" valign="top">QPen </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#ab4f7e60a40eb051c775afcaeab895c85">getSubTickPen</a> () const </td></tr>
<tr class="separator:ab4f7e60a40eb051c775afcaeab895c85"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aef30b66668986523225089a67280ec7a"><td class="memItemLeft" align="right" valign="top">QFont </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#aef30b66668986523225089a67280ec7a">getTickLabelFont</a> () const </td></tr>
<tr class="separator:aef30b66668986523225089a67280ec7a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab0768eb2879efb202645d19ff789e63e"><td class="memItemLeft" align="right" valign="top">QFont </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#ab0768eb2879efb202645d19ff789e63e">getLabelFont</a> () const </td></tr>
<tr class="separator:ab0768eb2879efb202645d19ff789e63e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0f8583f7ac24ccc70d39fdd2389cad6e"><td class="memItemLeft" align="right" valign="top">QColor </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a0f8583f7ac24ccc70d39fdd2389cad6e">getTickLabelColor</a> () const </td></tr>
<tr class="separator:a0f8583f7ac24ccc70d39fdd2389cad6e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a42bd69b9e9c571f13624079be18ccdc1"><td class="memItemLeft" align="right" valign="top">QColor </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPAxis.html#a42bd69b9e9c571f13624079be18ccdc1">getLabelColor</a> () const </td></tr>
<tr class="separator:a42bd69b9e9c571f13624079be18ccdc1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_methods_classQCPLayerable"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classQCPLayerable')"><img src="closed.png" alt="-"/> Protected Functions inherited from <a class="el" href="classQCPLayerable.html">QCPLayerable</a></td></tr>
<tr class="memitem:ab20b7dbd8e0249ed61adb9622c427382 inherit pro_methods_classQCPLayerable"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPLayerable.html#ab20b7dbd8e0249ed61adb9622c427382">parentPlotInitialized</a> (<a class="el" href="classQCustomPlot.html">QCustomPlot</a> *parentPlot)</td></tr>
<tr class="separator:ab20b7dbd8e0249ed61adb9622c427382 inherit pro_methods_classQCPLayerable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a07a8f746640c3704b09910df297afcba inherit pro_methods_classQCPLayerable"><td class="memItemLeft" align="right" valign="top">virtual QRect </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPLayerable.html#a07a8f746640c3704b09910df297afcba">clipRect</a> () const </td></tr>
<tr class="separator:a07a8f746640c3704b09910df297afcba inherit pro_methods_classQCPLayerable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8cbe5a0c9a5674249982f5ca5f8e02bc inherit pro_methods_classQCPLayerable"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPLayerable.html#a8cbe5a0c9a5674249982f5ca5f8e02bc">initializeParentPlot</a> (<a class="el" href="classQCustomPlot.html">QCustomPlot</a> *parentPlot)</td></tr>
<tr class="separator:a8cbe5a0c9a5674249982f5ca5f8e02bc inherit pro_methods_classQCPLayerable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa23c893671f1f6744ac235cf2204cf3a inherit pro_methods_classQCPLayerable"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPLayerable.html#aa23c893671f1f6744ac235cf2204cf3a">setParentLayerable</a> (<a class="el" href="classQCPLayerable.html">QCPLayerable</a> *<a class="el" href="classQCPLayerable.html#a98d79f5b716d45eac4347befe546d0ec">parentLayerable</a>)</td></tr>
<tr class="separator:aa23c893671f1f6744ac235cf2204cf3a inherit pro_methods_classQCPLayerable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af94484cfb7cbbddb7de522e9be71d9a4 inherit pro_methods_classQCPLayerable"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPLayerable.html#af94484cfb7cbbddb7de522e9be71d9a4">moveToLayer</a> (<a class="el" href="classQCPLayer.html">QCPLayer</a> *layer, bool prepend)</td></tr>
<tr class="separator:af94484cfb7cbbddb7de522e9be71d9a4 inherit pro_methods_classQCPLayerable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a62bd552d1a45aa9accb24b310542279e inherit pro_methods_classQCPLayerable"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classQCPLayerable.html#a62bd552d1a45aa9accb24b310542279e">applyAntialiasingHint</a> (<a class="el" href="classQCPPainter.html">QCPPainter</a> *painter, bool localAntialiased, <a class="el" href="namespaceQCP.html#ae55dbe315d41fe80f29ba88100843a0c">QCP::AntialiasedElement</a> overrideElement) const </td></tr>
<tr class="separator:a62bd552d1a45aa9accb24b310542279e inherit pro_methods_classQCPLayerable"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p>Manages a single axis inside a <a class="el" href="classQCustomPlot.html" title="The central class of the library. This is the QWidget which displays the plot and interacts with the ...">QCustomPlot</a>. </p>
<p>Usually doesn't need to be instantiated externally. Access QCustomPlot's default four axes via <a class="el" href="classQCustomPlot.html#a9a79cd0158a4c7f30cbc702f0fd800e4">QCustomPlot::xAxis</a> (bottom), <a class="el" href="classQCustomPlot.html#af6fea5679725b152c14facd920b19367">QCustomPlot::yAxis</a> (left), <a class="el" href="classQCustomPlot.html#ada41599f22cad901c030f3dcbdd82fd9">QCustomPlot::xAxis2</a> (top) and <a class="el" href="classQCustomPlot.html#af13fdc5bce7d0fabd640f13ba805c0b7">QCustomPlot::yAxis2</a> (right).</p>
<p>Axes are always part of an axis rect, see <a class="el" href="classQCPAxisRect.html" title="Holds multiple axes and arranges them in a rectangular shape. ">QCPAxisRect</a>. </p>
<div class="image">
<img src="AxisNamesOverview.png" alt="AxisNamesOverview.png"/>
</div>
<center>Naming convention of axis parts</center><p> <br/>
</p>
<div class="image">
<img src="AxisRectSpacingOverview.png" alt="AxisRectSpacingOverview.png"/>
</div>
<center>Overview of the spacings and paddings that define the geometry of an axis. The dashed gray line on the left represents the <a class="el" href="classQCustomPlot.html" title="The central class of the library. This is the QWidget which displays the plot and interacts with the ...">QCustomPlot</a> widget border.</center> </div><h2 class="groupheader">Member Enumeration Documentation</h2>
<a class="anchor" id="ae2bcc1728b382f10f064612b368bc18a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">enum <a class="el" href="classQCPAxis.html#ae2bcc1728b382f10f064612b368bc18a">QCPAxis::AxisType</a></td>
</tr>
</table>
</div><div class="memdoc">
<p>Defines at which side of the axis rect the axis will appear. This also affects how the tick marks are drawn, on which side the labels are placed etc. </p>
<table class="fieldtable">
<tr><th colspan="2">Enumerator</th></tr><tr><td class="fieldname"><em><a class="anchor" id="ae2bcc1728b382f10f064612b368bc18aaf84aa6cac6fb6099f54a2cbf7546b730"></a>atLeft</em> </td><td class="fielddoc">
<p><code>0x01</code> Axis is vertical and on the left side of the axis rect </p>
</td></tr>
<tr><td class="fieldname"><em><a class="anchor" id="ae2bcc1728b382f10f064612b368bc18aadf5509f7d29199ef2f263b1dd224b345"></a>atRight</em> </td><td class="fielddoc">
<p><code>0x02</code> Axis is vertical and on the right side of the axis rect </p>
</td></tr>
<tr><td class="fieldname"><em><a class="anchor" id="ae2bcc1728b382f10f064612b368bc18aac0ece2b680d3f545e701f75af1655977"></a>atTop</em> </td><td class="fielddoc">
<p><code>0x04</code> Axis is horizontal and on the top side of the axis rect </p>
</td></tr>
<tr><td class="fieldname"><em><a class="anchor" id="ae2bcc1728b382f10f064612b368bc18aa220d68888516b6c3b493d144f1ba438f"></a>atBottom</em> </td><td class="fielddoc">
<p><code>0x08</code> Axis is horizontal and on the bottom side of the axis rect </p>
</td></tr>
</table>
</div>
</div>
<a class="anchor" id="a4a7da0166f755f5abac23b765d184cad"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">enum <a class="el" href="classQCPAxis.html#a4a7da0166f755f5abac23b765d184cad">QCPAxis::LabelType</a></td>
</tr>
</table>
</div><div class="memdoc">
<p>When automatic tick label generation is enabled (<a class="el" href="classQCPAxis.html#aaa47e3a6bac0c20d4beb9028f01bc1a1">setAutoTickLabels</a>), defines how the coordinate of the tick is interpreted, i.e. translated into a string.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#a54f24f5ce8feea25209388a863d7e448">setTickLabelType</a> </dd></dl>
<table class="fieldtable">
<tr><th colspan="2">Enumerator</th></tr><tr><td class="fieldname"><em><a class="anchor" id="a4a7da0166f755f5abac23b765d184cada7f1eacf3b73adaefd334bea04e094b7e"></a>ltNumber</em> </td><td class="fielddoc">
<p>Tick coordinate is regarded as normal number and will be displayed as such. (see <a class="el" href="classQCPAxis.html#ae585a54dc2aac662e90a2ca82f002590">setNumberFormat</a>) </p>
</td></tr>
<tr><td class="fieldname"><em><a class="anchor" id="a4a7da0166f755f5abac23b765d184cadafc70594a9d877124dd11ccc187d4ac52"></a>ltDateTime</em> </td><td class="fielddoc">
<p>Tick coordinate is regarded as a date/time (seconds since 1970-01-01T00:00:00 UTC) and will be displayed and formatted as such. (for details, see <a class="el" href="classQCPAxis.html#a2ee0191daa03524a682113e63e05f7a7">setDateTimeFormat</a>) </p>
</td></tr>
</table>
</div>
</div>
<a class="anchor" id="a24b13374b9b8f75f47eed2ea78c37db9"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">enum <a class="el" href="classQCPAxis.html#a24b13374b9b8f75f47eed2ea78c37db9">QCPAxis::LabelSide</a></td>
</tr>
</table>
</div><div class="memdoc">
<p>Defines on which side of the axis the tick labels (numbers) shall appear.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#a13ec644fc6e22715744c92c6dfa4f0fa">setTickLabelSide</a> </dd></dl>
<table class="fieldtable">
<tr><th colspan="2">Enumerator</th></tr><tr><td class="fieldname"><em><a class="anchor" id="a24b13374b9b8f75f47eed2ea78c37db9aae7b027ac2839cf4ad611df30236fc3f"></a>lsInside</em> </td><td class="fielddoc">
<p>Tick labels will be displayed inside the axis rect and clipped to the inner axis rect. </p>
</td></tr>
<tr><td class="fieldname"><em><a class="anchor" id="a24b13374b9b8f75f47eed2ea78c37db9a2eadb509fc0c9a8b35b85c86ec9f3c7a"></a>lsOutside</em> </td><td class="fielddoc">
<p>Tick labels will be displayed outside the axis rect. </p>
</td></tr>
</table>
</div>
</div>
<a class="anchor" id="a36d8e8658dbaa179bf2aeb973db2d6f0"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">enum <a class="el" href="classQCPAxis.html#a36d8e8658dbaa179bf2aeb973db2d6f0">QCPAxis::ScaleType</a></td>
</tr>
</table>
</div><div class="memdoc">
<p>Defines the scale of an axis. </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#adef29cae617af4f519f6c40d1a866ca6">setScaleType</a> </dd></dl>
<table class="fieldtable">
<tr><th colspan="2">Enumerator</th></tr><tr><td class="fieldname"><em><a class="anchor" id="a36d8e8658dbaa179bf2aeb973db2d6f0aff6e30a11a828bc850caffab0ff994f6"></a>stLinear</em> </td><td class="fielddoc">
<p>Linear scaling. </p>
</td></tr>
<tr><td class="fieldname"><em><a class="anchor" id="a36d8e8658dbaa179bf2aeb973db2d6f0abf5b785ad976618816dc6f79b73216d4"></a>stLogarithmic</em> </td><td class="fielddoc">
<p>Logarithmic scaling with correspondingly transformed plots and (major) tick marks at every base power (see <a class="el" href="classQCPAxis.html#a726186054be90487885a748aa1b42188">setScaleLogBase</a>). </p>
</td></tr>
</table>
</div>
</div>
<a class="anchor" id="abee4c7a54c468b1385dfce2c898b115f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">enum <a class="el" href="classQCPAxis.html#abee4c7a54c468b1385dfce2c898b115f">QCPAxis::SelectablePart</a></td>
</tr>
</table>
</div><div class="memdoc">
<p>Defines the selectable parts of an axis. </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#a513f9b9e326c505d9bec54880031b085">setSelectableParts</a>, <a class="el" href="classQCPAxis.html#ab9d7a69277dcbed9119b3c1f25ca19c3">setSelectedParts</a> </dd></dl>
<table class="fieldtable">
<tr><th colspan="2">Enumerator</th></tr><tr><td class="fieldname"><em><a class="anchor" id="abee4c7a54c468b1385dfce2c898b115fae0df8123a5528d5ccf87cb7794f971ea"></a>spNone</em> </td><td class="fielddoc">
<p>None of the selectable parts. </p>
</td></tr>
<tr><td class="fieldname"><em><a class="anchor" id="abee4c7a54c468b1385dfce2c898b115fa8949d2c1a31eccae9be7ed32e7a1ae38"></a>spAxis</em> </td><td class="fielddoc">
<p>The axis backbone and tick marks. </p>
</td></tr>
<tr><td class="fieldname"><em><a class="anchor" id="abee4c7a54c468b1385dfce2c898b115fa584e0a3dc4d064880647619f4bd4e771"></a>spTickLabels</em> </td><td class="fielddoc">
<p>Tick labels (numbers) of this axis (as a whole, not individually) </p>
</td></tr>
<tr><td class="fieldname"><em><a class="anchor" id="abee4c7a54c468b1385dfce2c898b115fa851e0600e0d08b4f5fee9361e3fedabd"></a>spAxisLabel</em> </td><td class="fielddoc">
<p>The axis label. </p>
</td></tr>
</table>
</div>
</div>
<h2 class="groupheader">Constructor & Destructor Documentation</h2>
<a class="anchor" id="ac62c042968bae0e6d474fcfc57c9b71f"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">QCPAxis::QCPAxis </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classQCPAxisRect.html">QCPAxisRect</a> * </td>
<td class="paramname"><em>parent</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classQCPAxis.html#ae2bcc1728b382f10f064612b368bc18a">AxisType</a> </td>
<td class="paramname"><em>type</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">explicit</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Constructs an Axis instance of Type <em>type</em> for the axis rect <em>parent</em>.</p>
<p>Usually it isn't necessary to instantiate axes directly, because you can let <a class="el" href="classQCustomPlot.html" title="The central class of the library. This is the QWidget which displays the plot and interacts with the ...">QCustomPlot</a> create them for you with <a class="el" href="classQCPAxisRect.html#a2dc336092ccc57d44a46194c8a23e4f4">QCPAxisRect::addAxis</a>. If you want to use own QCPAxis-subclasses however, create them manually and then inject them also via <a class="el" href="classQCPAxisRect.html#a2dc336092ccc57d44a46194c8a23e4f4">QCPAxisRect::addAxis</a>. </p>
</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="ac4fb913cce3072b5e75a4635e0f6cd04"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classQCPGrid.html">QCPGrid</a> * QCPAxis::grid </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the <a class="el" href="classQCPGrid.html">QCPGrid</a> instance belonging to this axis. Access it to set details about the way the grid is displayed. </p>
</div>
</div>
<a class="anchor" id="adef29cae617af4f519f6c40d1a866ca6"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setScaleType </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classQCPAxis.html#a36d8e8658dbaa179bf2aeb973db2d6f0">QCPAxis::ScaleType</a> </td>
<td class="paramname"><em>type</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets whether the axis uses a linear scale or a logarithmic scale. If <em>type</em> is set to <a class="el" href="classQCPAxis.html#a36d8e8658dbaa179bf2aeb973db2d6f0abf5b785ad976618816dc6f79b73216d4">stLogarithmic</a>, the logarithm base can be set with <a class="el" href="classQCPAxis.html#a726186054be90487885a748aa1b42188">setScaleLogBase</a>. In logarithmic axis scaling, major tick marks appear at all powers of the logarithm base. Properties like tick step (<a class="el" href="classQCPAxis.html#af727db0acc6492c4c774c0700e738205">setTickStep</a>) don't apply in logarithmic scaling. If you wish a decimal base but less major ticks, consider choosing a logarithm base of 100, 1000 or even higher.</p>
<p>If <em>type</em> is <a class="el" href="classQCPAxis.html#a36d8e8658dbaa179bf2aeb973db2d6f0abf5b785ad976618816dc6f79b73216d4">stLogarithmic</a> and the number format (<a class="el" href="classQCPAxis.html#ae585a54dc2aac662e90a2ca82f002590">setNumberFormat</a>) uses the 'b' option (beautifully typeset decimal powers), the display usually is "1 [multiplication sign] 10
[superscript] n", which looks unnatural for logarithmic scaling (the "1 [multiplication sign]" part). To only display the decimal power, set the number precision to zero with <a class="el" href="classQCPAxis.html#a21dc8023ad7500382ad9574b48137e63">setNumberPrecision</a>. </p>
</div>
</div>
<a class="anchor" id="a726186054be90487885a748aa1b42188"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setScaleLogBase </td>
<td>(</td>
<td class="paramtype">double </td>
<td class="paramname"><em>base</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>If <a class="el" href="classQCPAxis.html#adef29cae617af4f519f6c40d1a866ca6">setScaleType</a> is set to <a class="el" href="classQCPAxis.html#a36d8e8658dbaa179bf2aeb973db2d6f0abf5b785ad976618816dc6f79b73216d4">stLogarithmic</a>, <em>base</em> will be the logarithm base of the scaling. In logarithmic axis scaling, major tick marks appear at all powers of <em>base</em>.</p>
<p>Properties like tick step (<a class="el" href="classQCPAxis.html#af727db0acc6492c4c774c0700e738205">setTickStep</a>) don't apply in logarithmic scaling. If you wish a decimal base but less major ticks, consider choosing <em>base</em> 100, 1000 or even higher. </p>
</div>
</div>
<a class="anchor" id="aebdfea5d44c3a0ad2b4700cd4d25b641"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setRange </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classQCPRange.html">QCPRange</a> & </td>
<td class="paramname"><em>range</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the range of the axis.</p>
<p>This slot may be connected with the <a class="el" href="classQCPAxis.html#a0894084e4c16a1736534c4095746f910">rangeChanged</a> signal of another axis so this axis is always synchronized with the other axis range, when it changes.</p>
<p>To invert the direction of an axis, use <a class="el" href="classQCPAxis.html#a2172fdb196b1a0dc3f40992fcad8e9e1">setRangeReversed</a>. </p>
</div>
</div>
<a class="anchor" id="a57d6ee9e9009fe88cb19db476ec70bca"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setRange </td>
<td>(</td>
<td class="paramtype">double </td>
<td class="paramname"><em>lower</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">double </td>
<td class="paramname"><em>upper</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>This is an overloaded function.</p>
<p>Sets the lower and upper bound of the axis range.</p>
<p>To invert the direction of an axis, use <a class="el" href="classQCPAxis.html#a2172fdb196b1a0dc3f40992fcad8e9e1">setRangeReversed</a>.</p>
<p>There is also a slot to set a range, see <a class="el" href="classQCPAxis.html#aebdfea5d44c3a0ad2b4700cd4d25b641">setRange(const QCPRange &range)</a>. </p>
</div>
</div>
<a class="anchor" id="acf60e5b2d631fbc8c4548c3d579cb6d0"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setRange </td>
<td>(</td>
<td class="paramtype">double </td>
<td class="paramname"><em>position</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">double </td>
<td class="paramname"><em>size</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">Qt::AlignmentFlag </td>
<td class="paramname"><em>alignment</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>This is an overloaded function.</p>
<p>Sets the range of the axis.</p>
<p>The <em>position</em> coordinate indicates together with the <em>alignment</em> parameter, where the new range will be positioned. <em>size</em> defines the size of the new axis range. <em>alignment</em> may be Qt::AlignLeft, Qt::AlignRight or Qt::AlignCenter. This will cause the left border, right border, or center of the range to be aligned with <em>position</em>. Any other values of <em>alignment</em> will default to Qt::AlignCenter. </p>
</div>
</div>
<a class="anchor" id="afcf51227d337db28d1a9ce9a4d1bc91a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setRangeLower </td>
<td>(</td>
<td class="paramtype">double </td>
<td class="paramname"><em>lower</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the lower bound of the axis range. The upper bound is not changed. </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#aebdfea5d44c3a0ad2b4700cd4d25b641">setRange</a> </dd></dl>
</div>
</div>
<a class="anchor" id="acd3ca1247aa867b540cd5ec30ccd3bef"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setRangeUpper </td>
<td>(</td>
<td class="paramtype">double </td>
<td class="paramname"><em>upper</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the upper bound of the axis range. The lower bound is not changed. </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#aebdfea5d44c3a0ad2b4700cd4d25b641">setRange</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a2172fdb196b1a0dc3f40992fcad8e9e1"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setRangeReversed </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>reversed</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets whether the axis range (direction) is displayed reversed. Normally, the values on horizontal axes increase left to right, on vertical axes bottom to top. When <em>reversed</em> is set to true, the direction of increasing values is inverted.</p>
<p>Note that the range and data interface stays the same for reversed axes, e.g. the <em>lower</em> part of the <a class="el" href="classQCPAxis.html#aebdfea5d44c3a0ad2b4700cd4d25b641">setRange</a> interface will still reference the mathematically smaller number than the <em>upper</em> part. </p>
</div>
</div>
<a class="anchor" id="ae867c23d3a6a7bd4d09cc66c5d018f63"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setAutoTicks </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>on</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets whether the tick positions should be calculated automatically (either from an automatically generated tick step or a tick step provided manually via <a class="el" href="classQCPAxis.html#af727db0acc6492c4c774c0700e738205">setTickStep</a>, see <a class="el" href="classQCPAxis.html#a99fe77b034e06f5b723995beab96e741">setAutoTickStep</a>).</p>
<p>If <em>on</em> is set to false, you must provide the tick positions manually via <a class="el" href="classQCPAxis.html#a871db94c5d796c80fcbe1a9d4506e27e">setTickVector</a>. For these manual ticks you may let <a class="el" href="classQCPAxis.html" title="Manages a single axis inside a QCustomPlot. ">QCPAxis</a> generate the appropriate labels automatically by leaving <a class="el" href="classQCPAxis.html#aaa47e3a6bac0c20d4beb9028f01bc1a1">setAutoTickLabels</a> set to true. If you also wish to control the displayed labels manually, set <a class="el" href="classQCPAxis.html#aaa47e3a6bac0c20d4beb9028f01bc1a1">setAutoTickLabels</a> to false and provide the label strings with <a class="el" href="classQCPAxis.html#a921d3ba3853ca3bd2cce3459f7a243ed">setTickVectorLabels</a>.</p>
<p>If you need dynamically calculated tick vectors (and possibly tick label vectors), set the vectors in a slot connected to the <a class="el" href="classQCPAxis.html#af46d99613d29518795134ec4928e3873">ticksRequest</a> signal.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#aaa47e3a6bac0c20d4beb9028f01bc1a1">setAutoTickLabels</a>, <a class="el" href="classQCPAxis.html#adcbdec7a60054b88571e89599f4a45bf">setAutoSubTicks</a>, <a class="el" href="classQCPAxis.html#a7c7111cbeac9ec5fcb40f93a1ef51a0b">setAutoTickCount</a>, <a class="el" href="classQCPAxis.html#a99fe77b034e06f5b723995beab96e741">setAutoTickStep</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a7c7111cbeac9ec5fcb40f93a1ef51a0b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setAutoTickCount </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>approximateCount</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>When <a class="el" href="classQCPAxis.html#a99fe77b034e06f5b723995beab96e741">setAutoTickStep</a> is true, <em>approximateCount</em> determines how many ticks should be generated in the visible range, approximately.</p>
<p>It's not guaranteed that this number of ticks is met exactly, but approximately within a tolerance of about two.</p>
<p>Only values greater than zero are accepted as <em>approximateCount</em>.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#a99fe77b034e06f5b723995beab96e741">setAutoTickStep</a>, <a class="el" href="classQCPAxis.html#ae867c23d3a6a7bd4d09cc66c5d018f63">setAutoTicks</a>, <a class="el" href="classQCPAxis.html#adcbdec7a60054b88571e89599f4a45bf">setAutoSubTicks</a> </dd></dl>
</div>
</div>
<a class="anchor" id="aaa47e3a6bac0c20d4beb9028f01bc1a1"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setAutoTickLabels </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>on</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets whether the tick labels are generated automatically. Depending on the tick label type (<a class="el" href="classQCPAxis.html#a4a7da0166f755f5abac23b765d184cada7f1eacf3b73adaefd334bea04e094b7e">ltNumber</a> or <a class="el" href="classQCPAxis.html#a4a7da0166f755f5abac23b765d184cadafc70594a9d877124dd11ccc187d4ac52">ltDateTime</a>), the labels will either show the coordinate as floating point number (<a class="el" href="classQCPAxis.html#ae585a54dc2aac662e90a2ca82f002590">setNumberFormat</a>), or a date/time formatted according to <a class="el" href="classQCPAxis.html#a2ee0191daa03524a682113e63e05f7a7">setDateTimeFormat</a>.</p>
<p>If <em>on</em> is set to false, you should provide the tick labels via <a class="el" href="classQCPAxis.html#a921d3ba3853ca3bd2cce3459f7a243ed">setTickVectorLabels</a>. This is usually used in a combination with <a class="el" href="classQCPAxis.html#ae867c23d3a6a7bd4d09cc66c5d018f63">setAutoTicks</a> set to false for complete control over tick positions and labels, e.g. when the ticks should be at multiples of pi and show "2pi", "3pi" etc. as tick labels.</p>
<p>If you need dynamically calculated tick vectors (and possibly tick label vectors), set the vectors in a slot connected to the <a class="el" href="classQCPAxis.html#af46d99613d29518795134ec4928e3873">ticksRequest</a> signal.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#ae867c23d3a6a7bd4d09cc66c5d018f63">setAutoTicks</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a99fe77b034e06f5b723995beab96e741"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setAutoTickStep </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>on</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets whether the tick step, i.e. the interval between two (major) ticks, is calculated automatically. If <em>on</em> is set to true, the axis finds a tick step that is reasonable for human readable plots.</p>
<p>The number of ticks the algorithm aims for within the visible range can be specified with <a class="el" href="classQCPAxis.html#a7c7111cbeac9ec5fcb40f93a1ef51a0b">setAutoTickCount</a>.</p>
<p>If <em>on</em> is set to false, you may set the tick step manually with <a class="el" href="classQCPAxis.html#af727db0acc6492c4c774c0700e738205">setTickStep</a>.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#ae867c23d3a6a7bd4d09cc66c5d018f63">setAutoTicks</a>, <a class="el" href="classQCPAxis.html#adcbdec7a60054b88571e89599f4a45bf">setAutoSubTicks</a>, <a class="el" href="classQCPAxis.html#a7c7111cbeac9ec5fcb40f93a1ef51a0b">setAutoTickCount</a> </dd></dl>
</div>
</div>
<a class="anchor" id="adcbdec7a60054b88571e89599f4a45bf"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setAutoSubTicks </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>on</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets whether the number of sub ticks in one tick interval is determined automatically. This works, as long as the tick step mantissa is a multiple of 0.5. When <a class="el" href="classQCPAxis.html#a99fe77b034e06f5b723995beab96e741">setAutoTickStep</a> is enabled, this is always the case.</p>
<p>When <em>on</em> is set to false, you may set the sub tick count with <a class="el" href="classQCPAxis.html#a4b1554ead9d7f9799650d51383e326dd">setSubTickCount</a> manually.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#a7c7111cbeac9ec5fcb40f93a1ef51a0b">setAutoTickCount</a>, <a class="el" href="classQCPAxis.html#ae867c23d3a6a7bd4d09cc66c5d018f63">setAutoTicks</a>, <a class="el" href="classQCPAxis.html#a99fe77b034e06f5b723995beab96e741">setAutoTickStep</a> </dd></dl>
</div>
</div>
<a class="anchor" id="ac891409315bc379e3b1abdb162c1a011"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setTicks </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>show</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets whether tick marks are displayed.</p>
<p>Note that setting <em>show</em> to false does not imply that tick labels are invisible, too. To achieve that, see <a class="el" href="classQCPAxis.html#a04ba16e1f6f78d70f938519576ed32c8">setTickLabels</a>. </p>
</div>
</div>
<a class="anchor" id="a04ba16e1f6f78d70f938519576ed32c8"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setTickLabels </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>show</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets whether tick labels are displayed. Tick labels are the numbers drawn next to tick marks. </p>
</div>
</div>
<a class="anchor" id="af302c479af9dbc2e9f0e44e07c0012ee"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setTickLabelPadding </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>padding</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the distance between the axis base line (including any outward ticks) and the tick labels. </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#a4391192a766e5d20cfe5cbc17607a7a2">setLabelPadding</a>, <a class="el" href="classQCPAxis.html#a5691441cb3de9e9844855d339c0db279">setPadding</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a54f24f5ce8feea25209388a863d7e448"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setTickLabelType </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classQCPAxis.html#a4a7da0166f755f5abac23b765d184cad">LabelType</a> </td>
<td class="paramname"><em>type</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets whether the tick labels display numbers or dates/times.</p>
<p>If <em>type</em> is set to <a class="el" href="classQCPAxis.html#a4a7da0166f755f5abac23b765d184cada7f1eacf3b73adaefd334bea04e094b7e">ltNumber</a>, the format specifications of <a class="el" href="classQCPAxis.html#ae585a54dc2aac662e90a2ca82f002590">setNumberFormat</a> apply.</p>
<p>If <em>type</em> is set to <a class="el" href="classQCPAxis.html#a4a7da0166f755f5abac23b765d184cadafc70594a9d877124dd11ccc187d4ac52">ltDateTime</a>, the format specifications of <a class="el" href="classQCPAxis.html#a2ee0191daa03524a682113e63e05f7a7">setDateTimeFormat</a> apply.</p>
<p>In <a class="el" href="classQCustomPlot.html" title="The central class of the library. This is the QWidget which displays the plot and interacts with the ...">QCustomPlot</a>, date/time coordinates are <code>double</code> numbers representing the seconds since 1970-01-01T00:00:00 UTC. This format can be retrieved from QDateTime objects with the QDateTime::toTime_t() function. Since this only gives a resolution of one second, there is also the QDateTime::toMSecsSinceEpoch() function which returns the timespan described above in milliseconds. Divide its return value by 1000.0 to get a value with the format needed for date/time plotting, with a resolution of one millisecond.</p>
<p>Using the toMSecsSinceEpoch function allows dates that go back to 2nd January 4713 B.C. (represented by a negative number), unlike the toTime_t function, which works with unsigned integers and thus only goes back to 1st January 1970. So both for range and accuracy, use of toMSecsSinceEpoch()/1000.0 should be preferred as key coordinate for date/time axes.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#a04ba16e1f6f78d70f938519576ed32c8">setTickLabels</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a2b8690c4e8dbc39d9185d2b398ce7a6c"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setTickLabelFont </td>
<td>(</td>
<td class="paramtype">const QFont & </td>
<td class="paramname"><em>font</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the font of the tick labels.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#a04ba16e1f6f78d70f938519576ed32c8">setTickLabels</a>, <a class="el" href="classQCPAxis.html#a395e445c3fe496b935bee7b911ecfd1c">setTickLabelColor</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a395e445c3fe496b935bee7b911ecfd1c"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setTickLabelColor </td>
<td>(</td>
<td class="paramtype">const QColor & </td>
<td class="paramname"><em>color</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the color of the tick labels.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#a04ba16e1f6f78d70f938519576ed32c8">setTickLabels</a>, <a class="el" href="classQCPAxis.html#a2b8690c4e8dbc39d9185d2b398ce7a6c">setTickLabelFont</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a1bddd4413df8a576b7ad4b067fb33375"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setTickLabelRotation </td>
<td>(</td>
<td class="paramtype">double </td>
<td class="paramname"><em>degrees</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the rotation of the tick labels. If <em>degrees</em> is zero, the labels are drawn normally. Else, the tick labels are drawn rotated by <em>degrees</em> clockwise. The specified angle is bound to values from -90 to 90 degrees.</p>
<p>If <em>degrees</em> is exactly -90, 0 or 90, the tick labels are centered on the tick coordinate. For other angles, the label is drawn with an offset such that it seems to point toward or away from the tick mark. </p>
</div>
</div>
<a class="anchor" id="a13ec644fc6e22715744c92c6dfa4f0fa"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setTickLabelSide </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classQCPAxis.html#a24b13374b9b8f75f47eed2ea78c37db9">LabelSide</a> </td>
<td class="paramname"><em>side</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets whether the tick labels (numbers) shall appear inside or outside the axis rect.</p>
<p>The usual and default setting is <a class="el" href="classQCPAxis.html#a24b13374b9b8f75f47eed2ea78c37db9a2eadb509fc0c9a8b35b85c86ec9f3c7a">lsOutside</a>. Very compact plots sometimes require tick labels to be inside the axis rect, to save space. If <em>side</em> is set to <a class="el" href="classQCPAxis.html#a24b13374b9b8f75f47eed2ea78c37db9aae7b027ac2839cf4ad611df30236fc3f">lsInside</a>, the tick labels appear on the inside are additionally clipped to the axis rect. </p>
</div>
</div>
<a class="anchor" id="a2ee0191daa03524a682113e63e05f7a7"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setDateTimeFormat </td>
<td>(</td>
<td class="paramtype">const QString & </td>
<td class="paramname"><em>format</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the format in which dates and times are displayed as tick labels, if <a class="el" href="classQCPAxis.html#a54f24f5ce8feea25209388a863d7e448">setTickLabelType</a> is <a class="el" href="classQCPAxis.html#a4a7da0166f755f5abac23b765d184cadafc70594a9d877124dd11ccc187d4ac52">ltDateTime</a>. for details about the <em>format</em> string, see the documentation of QDateTime::toString().</p>
<p>Newlines can be inserted with "\n".</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#a262e06731debed7eee11fa6a81d67eaf">setDateTimeSpec</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a262e06731debed7eee11fa6a81d67eaf"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setDateTimeSpec </td>
<td>(</td>
<td class="paramtype">const Qt::TimeSpec & </td>
<td class="paramname"><em>timeSpec</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the time spec that is used for the date time values when <a class="el" href="classQCPAxis.html#a54f24f5ce8feea25209388a863d7e448">setTickLabelType</a> is <a class="el" href="classQCPAxis.html#a4a7da0166f755f5abac23b765d184cadafc70594a9d877124dd11ccc187d4ac52">ltDateTime</a>.</p>
<p>The default value of QDateTime objects (and also <a class="el" href="classQCustomPlot.html" title="The central class of the library. This is the QWidget which displays the plot and interacts with the ...">QCustomPlot</a>) is <code>Qt::LocalTime</code>. However, if the date time values passed to <a class="el" href="classQCustomPlot.html" title="The central class of the library. This is the QWidget which displays the plot and interacts with the ...">QCustomPlot</a> are given in the UTC spec, set <em>timeSpec</em> to <code>Qt::UTC</code> to get the correct axis labels.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#a2ee0191daa03524a682113e63e05f7a7">setDateTimeFormat</a> </dd></dl>
</div>
</div>
<a class="anchor" id="ae585a54dc2aac662e90a2ca82f002590"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setNumberFormat </td>
<td>(</td>
<td class="paramtype">const QString & </td>
<td class="paramname"><em>formatCode</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the number format for the numbers drawn as tick labels (if tick label type is <a class="el" href="classQCPAxis.html#a4a7da0166f755f5abac23b765d184cada7f1eacf3b73adaefd334bea04e094b7e">ltNumber</a>). This <em>formatCode</em> is an extended version of the format code used e.g. by QString::number() and QLocale::toString(). For reference about that, see the "Argument Formats" section in the detailed description of the QString class. <em>formatCode</em> is a string of one, two or three characters. The first character is identical to the normal format code used by Qt. In short, this means: 'e'/'E' scientific format, 'f' fixed format, 'g'/'G' scientific or fixed, whichever is shorter.</p>
<p>The second and third characters are optional and specific to <a class="el" href="classQCustomPlot.html" title="The central class of the library. This is the QWidget which displays the plot and interacts with the ...">QCustomPlot</a>:<br/>
If the first char was 'e' or 'g', numbers are/might be displayed in the scientific format, e.g. "5.5e9", which is ugly in a plot. So when the second char of <em>formatCode</em> is set to 'b' (for "beautiful"), those exponential numbers are formatted in a more natural way, i.e. "5.5
[multiplication sign] 10 [superscript] 9". By default, the multiplication sign is a centered dot. If instead a cross should be shown (as is usual in the USA), the third char of <em>formatCode</em> can be set to 'c'. The inserted multiplication signs are the UTF-8 characters 215 (0xD7) for the cross and 183 (0xB7) for the dot.</p>
<p>If the scale type (<a class="el" href="classQCPAxis.html#adef29cae617af4f519f6c40d1a866ca6">setScaleType</a>) is <a class="el" href="classQCPAxis.html#a36d8e8658dbaa179bf2aeb973db2d6f0abf5b785ad976618816dc6f79b73216d4">stLogarithmic</a> and the <em>formatCode</em> uses the 'b' option (beautifully typeset decimal powers), the display usually is "1 [multiplication sign] 10
[superscript] n", which looks unnatural for logarithmic scaling (the "1 [multiplication sign]" part). To only display the decimal power, set the number precision to zero with <a class="el" href="classQCPAxis.html#a21dc8023ad7500382ad9574b48137e63">setNumberPrecision</a>.</p>
<p>Examples for <em>formatCode:</em> </p>
<ul>
<li><code>g</code> normal format code behaviour. If number is small, fixed format is used, if number is large, normal scientific format is used </li>
<li><code>gb</code> If number is small, fixed format is used, if number is large, scientific format is used with beautifully typeset decimal powers and a dot as multiplication sign </li>
<li><code>ebc</code> All numbers are in scientific format with beautifully typeset decimal power and a cross as multiplication sign </li>
<li><code>fb</code> illegal format code, since fixed format doesn't support (or need) beautifully typeset decimal powers. Format code will be reduced to 'f'. </li>
<li><code>hello</code> illegal format code, since first char is not 'e', 'E', 'f', 'g' or 'G'. Current format code will not be changed. </li>
</ul>
</div>
</div>
<a class="anchor" id="a21dc8023ad7500382ad9574b48137e63"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setNumberPrecision </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>precision</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the precision of the tick label numbers. See QLocale::toString(double i, char f, int prec) for details. The effect of precisions are most notably for number Formats starting with 'e', see <a class="el" href="classQCPAxis.html#ae585a54dc2aac662e90a2ca82f002590">setNumberFormat</a></p>
<p>If the scale type (<a class="el" href="classQCPAxis.html#adef29cae617af4f519f6c40d1a866ca6">setScaleType</a>) is <a class="el" href="classQCPAxis.html#a36d8e8658dbaa179bf2aeb973db2d6f0abf5b785ad976618816dc6f79b73216d4">stLogarithmic</a> and the number format (<a class="el" href="classQCPAxis.html#ae585a54dc2aac662e90a2ca82f002590">setNumberFormat</a>) uses the 'b' format code (beautifully typeset decimal powers), the display usually is "1 [multiplication sign] 10 [superscript] n", which looks unnatural for logarithmic scaling (the redundant "1 [multiplication sign]" part). To only display the decimal power "10
[superscript] n", set <em>precision</em> to zero. </p>
</div>
</div>
<a class="anchor" id="af727db0acc6492c4c774c0700e738205"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setTickStep </td>
<td>(</td>
<td class="paramtype">double </td>
<td class="paramname"><em>step</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>If <a class="el" href="classQCPAxis.html#a99fe77b034e06f5b723995beab96e741">setAutoTickStep</a> is set to false, use this function to set the tick step manually. The tick step is the interval between (major) ticks, in plot coordinates. </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#a4b1554ead9d7f9799650d51383e326dd">setSubTickCount</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a871db94c5d796c80fcbe1a9d4506e27e"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setTickVector </td>
<td>(</td>
<td class="paramtype">const QVector< double > & </td>
<td class="paramname"><em>vec</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>If you want full control over what ticks (and possibly labels) the axes show, this function is used to set the coordinates at which ticks will appear.<a class="el" href="classQCPAxis.html#ae867c23d3a6a7bd4d09cc66c5d018f63">setAutoTicks</a> must be disabled, else the provided tick vector will be overwritten with automatically generated tick coordinates upon replot. The labels of the ticks can be generated automatically when <a class="el" href="classQCPAxis.html#aaa47e3a6bac0c20d4beb9028f01bc1a1">setAutoTickLabels</a> is left enabled. If it is disabled, you can set the labels manually with <a class="el" href="classQCPAxis.html#a921d3ba3853ca3bd2cce3459f7a243ed">setTickVectorLabels</a>.</p>
<p><em>vec</em> is a vector containing the positions of the ticks, in plot coordinates.</p>
<dl class="section warning"><dt>Warning</dt><dd><em>vec</em> must be sorted in ascending order, no additional checks are made to ensure this.</dd></dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#a921d3ba3853ca3bd2cce3459f7a243ed">setTickVectorLabels</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a921d3ba3853ca3bd2cce3459f7a243ed"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setTickVectorLabels </td>
<td>(</td>
<td class="paramtype">const QVector< QString > & </td>
<td class="paramname"><em>vec</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>If you want full control over what ticks and labels the axes show, this function is used to set a number of QStrings that will be displayed at the tick positions which you need to provide with <a class="el" href="classQCPAxis.html#a871db94c5d796c80fcbe1a9d4506e27e">setTickVector</a>. These two vectors should have the same size. (Note that you need to disable <a class="el" href="classQCPAxis.html#ae867c23d3a6a7bd4d09cc66c5d018f63">setAutoTicks</a> and <a class="el" href="classQCPAxis.html#aaa47e3a6bac0c20d4beb9028f01bc1a1">setAutoTickLabels</a> first.)</p>
<p><em>vec</em> is a vector containing the labels of the ticks. The entries correspond to the respective indices in the tick vector, passed via <a class="el" href="classQCPAxis.html#a871db94c5d796c80fcbe1a9d4506e27e">setTickVector</a>.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#a871db94c5d796c80fcbe1a9d4506e27e">setTickVector</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a62ec40bebe3540e9c1479a8fd2be3b0d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setTickLength </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>inside</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>outside</em> = <code>0</code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the length of the ticks in pixels. <em>inside</em> is the length the ticks will reach inside the plot and <em>outside</em> is the length they will reach outside the plot. If <em>outside</em> is greater than zero, the tick labels and axis label will increase their distance to the axis accordingly, so they won't collide with the ticks.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#ab702d6fd42fc620607435339a1c2a2e1">setSubTickLength</a>, <a class="el" href="classQCPAxis.html#afae1a37a99611366275a51204d991739">setTickLengthIn</a>, <a class="el" href="classQCPAxis.html#a3b8a0debd1ffedd2c22d0592dfbb4e62">setTickLengthOut</a> </dd></dl>
</div>
</div>
<a class="anchor" id="afae1a37a99611366275a51204d991739"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setTickLengthIn </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>inside</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the length of the inward ticks in pixels. <em>inside</em> is the length the ticks will reach inside the plot.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#a3b8a0debd1ffedd2c22d0592dfbb4e62">setTickLengthOut</a>, <a class="el" href="classQCPAxis.html#a62ec40bebe3540e9c1479a8fd2be3b0d">setTickLength</a>, <a class="el" href="classQCPAxis.html#ab702d6fd42fc620607435339a1c2a2e1">setSubTickLength</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a3b8a0debd1ffedd2c22d0592dfbb4e62"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setTickLengthOut </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>outside</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the length of the outward ticks in pixels. <em>outside</em> is the length the ticks will reach outside the plot. If <em>outside</em> is greater than zero, the tick labels and axis label will increase their distance to the axis accordingly, so they won't collide with the ticks.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#afae1a37a99611366275a51204d991739">setTickLengthIn</a>, <a class="el" href="classQCPAxis.html#a62ec40bebe3540e9c1479a8fd2be3b0d">setTickLength</a>, <a class="el" href="classQCPAxis.html#ab702d6fd42fc620607435339a1c2a2e1">setSubTickLength</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a4b1554ead9d7f9799650d51383e326dd"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setSubTickCount </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>count</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the number of sub ticks in one (major) tick step. A sub tick count of three for example, divides the tick intervals in four sub intervals.</p>
<p>By default, the number of sub ticks is chosen automatically in a reasonable manner as long as the mantissa of the tick step is a multiple of 0.5. When <a class="el" href="classQCPAxis.html#a99fe77b034e06f5b723995beab96e741">setAutoTickStep</a> is enabled, this is always the case.</p>
<p>If you want to disable automatic sub tick count and use this function to set the count manually, see <a class="el" href="classQCPAxis.html#adcbdec7a60054b88571e89599f4a45bf">setAutoSubTicks</a>. </p>
</div>
</div>
<a class="anchor" id="ab702d6fd42fc620607435339a1c2a2e1"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setSubTickLength </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>inside</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>outside</em> = <code>0</code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the length of the subticks in pixels. <em>inside</em> is the length the subticks will reach inside the plot and <em>outside</em> is the length they will reach outside the plot. If <em>outside</em> is greater than zero, the tick labels and axis label will increase their distance to the axis accordingly, so they won't collide with the ticks.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#a62ec40bebe3540e9c1479a8fd2be3b0d">setTickLength</a>, <a class="el" href="classQCPAxis.html#ac46fa2a993a9f5789540977610acf1de">setSubTickLengthIn</a>, <a class="el" href="classQCPAxis.html#a4c6dfc3963492ed72a77724012df5f23">setSubTickLengthOut</a> </dd></dl>
</div>
</div>
<a class="anchor" id="ac46fa2a993a9f5789540977610acf1de"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setSubTickLengthIn </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>inside</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the length of the inward subticks in pixels. <em>inside</em> is the length the subticks will reach inside the plot.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#a4c6dfc3963492ed72a77724012df5f23">setSubTickLengthOut</a>, <a class="el" href="classQCPAxis.html#ab702d6fd42fc620607435339a1c2a2e1">setSubTickLength</a>, <a class="el" href="classQCPAxis.html#a62ec40bebe3540e9c1479a8fd2be3b0d">setTickLength</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a4c6dfc3963492ed72a77724012df5f23"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setSubTickLengthOut </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>outside</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the length of the outward subticks in pixels. <em>outside</em> is the length the subticks will reach outside the plot. If <em>outside</em> is greater than zero, the tick labels will increase their distance to the axis accordingly, so they won't collide with the ticks.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#ac46fa2a993a9f5789540977610acf1de">setSubTickLengthIn</a>, <a class="el" href="classQCPAxis.html#ab702d6fd42fc620607435339a1c2a2e1">setSubTickLength</a>, <a class="el" href="classQCPAxis.html#a62ec40bebe3540e9c1479a8fd2be3b0d">setTickLength</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a778d45fb71b3c7ab3bb7079e18b058e4"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setBasePen </td>
<td>(</td>
<td class="paramtype">const QPen & </td>
<td class="paramname"><em>pen</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the pen, the axis base line is drawn with.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#ad80923bcc1c5da4c4db602c5325e797e">setTickPen</a>, <a class="el" href="classQCPAxis.html#aede4028ae7516bd51a60618a8233f9cf">setSubTickPen</a> </dd></dl>
</div>
</div>
<a class="anchor" id="ad80923bcc1c5da4c4db602c5325e797e"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setTickPen </td>
<td>(</td>
<td class="paramtype">const QPen & </td>
<td class="paramname"><em>pen</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the pen, tick marks will be drawn with.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#a62ec40bebe3540e9c1479a8fd2be3b0d">setTickLength</a>, <a class="el" href="classQCPAxis.html#a778d45fb71b3c7ab3bb7079e18b058e4">setBasePen</a> </dd></dl>
</div>
</div>
<a class="anchor" id="aede4028ae7516bd51a60618a8233f9cf"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setSubTickPen </td>
<td>(</td>
<td class="paramtype">const QPen & </td>
<td class="paramname"><em>pen</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the pen, subtick marks will be drawn with.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#a4b1554ead9d7f9799650d51383e326dd">setSubTickCount</a>, <a class="el" href="classQCPAxis.html#ab702d6fd42fc620607435339a1c2a2e1">setSubTickLength</a>, <a class="el" href="classQCPAxis.html#a778d45fb71b3c7ab3bb7079e18b058e4">setBasePen</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a71ac1a47f7547e490a8c4311d1433cf3"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setLabelFont </td>
<td>(</td>
<td class="paramtype">const QFont & </td>
<td class="paramname"><em>font</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the font of the axis label.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#a6c906fe56d75f0122335b9f79b999608">setLabelColor</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a6c906fe56d75f0122335b9f79b999608"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setLabelColor </td>
<td>(</td>
<td class="paramtype">const QColor & </td>
<td class="paramname"><em>color</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the color of the axis label.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#a71ac1a47f7547e490a8c4311d1433cf3">setLabelFont</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a33bcc382c111c9f31bb0687352a2dea4"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setLabel </td>
<td>(</td>
<td class="paramtype">const QString & </td>
<td class="paramname"><em>str</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the text of the axis label that will be shown below/above or next to the axis, depending on its orientation. To disable axis labels, pass an empty string as <em>str</em>. </p>
</div>
</div>
<a class="anchor" id="a4391192a766e5d20cfe5cbc17607a7a2"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setLabelPadding </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>padding</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the distance between the tick labels and the axis label.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#af302c479af9dbc2e9f0e44e07c0012ee">setTickLabelPadding</a>, <a class="el" href="classQCPAxis.html#a5691441cb3de9e9844855d339c0db279">setPadding</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a5691441cb3de9e9844855d339c0db279"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setPadding </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>padding</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the padding of the axis.</p>
<p>When <a class="el" href="classQCPLayoutElement.html#accfda49994e3e6d51ed14504abf9d27d">QCPAxisRect::setAutoMargins</a> is enabled, the padding is the additional outer most space, that is left blank.</p>
<p>The axis padding has no meaning if <a class="el" href="classQCPLayoutElement.html#accfda49994e3e6d51ed14504abf9d27d">QCPAxisRect::setAutoMargins</a> is disabled.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#a4391192a766e5d20cfe5cbc17607a7a2">setLabelPadding</a>, <a class="el" href="classQCPAxis.html#af302c479af9dbc2e9f0e44e07c0012ee">setTickLabelPadding</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a04a652603cbe50eba9969ee6d68873c3"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setOffset </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>offset</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the offset the axis has to its axis rect side.</p>
<p>If an axis rect side has multiple axes and automatic margin calculation is enabled for that side, only the offset of the inner most axis has meaning (even if it is set to be invisible). The offset of the other, outer axes is controlled automatically, to place them at appropriate positions. </p>
</div>
</div>
<a class="anchor" id="a845ccb560b7bc5281098a5be494145f6"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setSelectedTickLabelFont </td>
<td>(</td>
<td class="paramtype">const QFont & </td>
<td class="paramname"><em>font</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the font that is used for tick labels when they are selected.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#a2b8690c4e8dbc39d9185d2b398ce7a6c">setTickLabelFont</a>, <a class="el" href="classQCPAxis.html#a513f9b9e326c505d9bec54880031b085">setSelectableParts</a>, <a class="el" href="classQCPAxis.html#ab9d7a69277dcbed9119b3c1f25ca19c3">setSelectedParts</a>, <a class="el" href="classQCustomPlot.html#a5ee1e2f6ae27419deca53e75907c27e5">QCustomPlot::setInteractions</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a02ec2a75d4d8401eaab834fbc6803d30"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setSelectedLabelFont </td>
<td>(</td>
<td class="paramtype">const QFont & </td>
<td class="paramname"><em>font</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the font that is used for the axis label when it is selected.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#a71ac1a47f7547e490a8c4311d1433cf3">setLabelFont</a>, <a class="el" href="classQCPAxis.html#a513f9b9e326c505d9bec54880031b085">setSelectableParts</a>, <a class="el" href="classQCPAxis.html#ab9d7a69277dcbed9119b3c1f25ca19c3">setSelectedParts</a>, <a class="el" href="classQCustomPlot.html#a5ee1e2f6ae27419deca53e75907c27e5">QCustomPlot::setInteractions</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a9bdbf5e63ab15187f3a1de9440129227"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setSelectedTickLabelColor </td>
<td>(</td>
<td class="paramtype">const QColor & </td>
<td class="paramname"><em>color</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the color that is used for tick labels when they are selected.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#a395e445c3fe496b935bee7b911ecfd1c">setTickLabelColor</a>, <a class="el" href="classQCPAxis.html#a513f9b9e326c505d9bec54880031b085">setSelectableParts</a>, <a class="el" href="classQCPAxis.html#ab9d7a69277dcbed9119b3c1f25ca19c3">setSelectedParts</a>, <a class="el" href="classQCustomPlot.html#a5ee1e2f6ae27419deca53e75907c27e5">QCustomPlot::setInteractions</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a5d502dec597c634f491fdd73d151c72d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setSelectedLabelColor </td>
<td>(</td>
<td class="paramtype">const QColor & </td>
<td class="paramname"><em>color</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the color that is used for the axis label when it is selected.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#a6c906fe56d75f0122335b9f79b999608">setLabelColor</a>, <a class="el" href="classQCPAxis.html#a513f9b9e326c505d9bec54880031b085">setSelectableParts</a>, <a class="el" href="classQCPAxis.html#ab9d7a69277dcbed9119b3c1f25ca19c3">setSelectedParts</a>, <a class="el" href="classQCustomPlot.html#a5ee1e2f6ae27419deca53e75907c27e5">QCustomPlot::setInteractions</a> </dd></dl>
</div>
</div>
<a class="anchor" id="aeb917a909215605b95ef2be843de1ee8"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setSelectedBasePen </td>
<td>(</td>
<td class="paramtype">const QPen & </td>
<td class="paramname"><em>pen</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the pen that is used to draw the axis base line when selected.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#a778d45fb71b3c7ab3bb7079e18b058e4">setBasePen</a>, <a class="el" href="classQCPAxis.html#a513f9b9e326c505d9bec54880031b085">setSelectableParts</a>, <a class="el" href="classQCPAxis.html#ab9d7a69277dcbed9119b3c1f25ca19c3">setSelectedParts</a>, <a class="el" href="classQCustomPlot.html#a5ee1e2f6ae27419deca53e75907c27e5">QCustomPlot::setInteractions</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a8360502685eb782edbf04019c9345cdc"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setSelectedTickPen </td>
<td>(</td>
<td class="paramtype">const QPen & </td>
<td class="paramname"><em>pen</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the pen that is used to draw the (major) ticks when selected.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#ad80923bcc1c5da4c4db602c5325e797e">setTickPen</a>, <a class="el" href="classQCPAxis.html#a513f9b9e326c505d9bec54880031b085">setSelectableParts</a>, <a class="el" href="classQCPAxis.html#ab9d7a69277dcbed9119b3c1f25ca19c3">setSelectedParts</a>, <a class="el" href="classQCustomPlot.html#a5ee1e2f6ae27419deca53e75907c27e5">QCustomPlot::setInteractions</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a2a00a7166600155eac26843132eb9576"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setSelectedSubTickPen </td>
<td>(</td>
<td class="paramtype">const QPen & </td>
<td class="paramname"><em>pen</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the pen that is used to draw the subticks when selected.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#aede4028ae7516bd51a60618a8233f9cf">setSubTickPen</a>, <a class="el" href="classQCPAxis.html#a513f9b9e326c505d9bec54880031b085">setSelectableParts</a>, <a class="el" href="classQCPAxis.html#ab9d7a69277dcbed9119b3c1f25ca19c3">setSelectedParts</a>, <a class="el" href="classQCustomPlot.html#a5ee1e2f6ae27419deca53e75907c27e5">QCustomPlot::setInteractions</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a513f9b9e326c505d9bec54880031b085"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setSelectableParts </td>
<td>(</td>
<td class="paramtype">const QCPAxis::SelectableParts & </td>
<td class="paramname"><em>selectableParts</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets whether the user can (de-)select the parts in <em>selectable</em> by clicking on the <a class="el" href="classQCustomPlot.html" title="The central class of the library. This is the QWidget which displays the plot and interacts with the ...">QCustomPlot</a> surface. (When <a class="el" href="classQCustomPlot.html#a5ee1e2f6ae27419deca53e75907c27e5">QCustomPlot::setInteractions</a> contains iSelectAxes.)</p>
<p>However, even when <em>selectable</em> is set to a value not allowing the selection of a specific part, it is still possible to set the selection of this part manually, by calling <a class="el" href="classQCPAxis.html#ab9d7a69277dcbed9119b3c1f25ca19c3">setSelectedParts</a> directly.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#abee4c7a54c468b1385dfce2c898b115f">SelectablePart</a>, <a class="el" href="classQCPAxis.html#ab9d7a69277dcbed9119b3c1f25ca19c3">setSelectedParts</a> </dd></dl>
</div>
</div>
<a class="anchor" id="ab9d7a69277dcbed9119b3c1f25ca19c3"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setSelectedParts </td>
<td>(</td>
<td class="paramtype">const QCPAxis::SelectableParts & </td>
<td class="paramname"><em>selectedParts</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the selected state of the respective axis parts described by <a class="el" href="classQCPAxis.html#abee4c7a54c468b1385dfce2c898b115f">SelectablePart</a>. When a part is selected, it uses a different pen/font.</p>
<p>The entire selection mechanism for axes is handled automatically when <a class="el" href="classQCustomPlot.html#a5ee1e2f6ae27419deca53e75907c27e5">QCustomPlot::setInteractions</a> contains iSelectAxes. You only need to call this function when you wish to change the selection state manually.</p>
<p>This function can change the selection state of a part, independent of the <a class="el" href="classQCPAxis.html#a513f9b9e326c505d9bec54880031b085">setSelectableParts</a> setting.</p>
<p>emits the <a class="el" href="classQCPAxis.html#a62b598abeee7174a05f9d542cc85b1f5">selectionChanged</a> signal when <em>selected</em> is different from the previous selection state.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#abee4c7a54c468b1385dfce2c898b115f">SelectablePart</a>, <a class="el" href="classQCPAxis.html#a513f9b9e326c505d9bec54880031b085">setSelectableParts</a>, <a class="el" href="classQCPAxis.html#a2877a6230920c118be65c6113089f467">selectTest</a>, <a class="el" href="classQCPAxis.html#aeb917a909215605b95ef2be843de1ee8">setSelectedBasePen</a>, <a class="el" href="classQCPAxis.html#a8360502685eb782edbf04019c9345cdc">setSelectedTickPen</a>, <a class="el" href="classQCPAxis.html#a2a00a7166600155eac26843132eb9576">setSelectedSubTickPen</a>, <a class="el" href="classQCPAxis.html#a845ccb560b7bc5281098a5be494145f6">setSelectedTickLabelFont</a>, <a class="el" href="classQCPAxis.html#a02ec2a75d4d8401eaab834fbc6803d30">setSelectedLabelFont</a>, <a class="el" href="classQCPAxis.html#a9bdbf5e63ab15187f3a1de9440129227">setSelectedTickLabelColor</a>, <a class="el" href="classQCPAxis.html#a5d502dec597c634f491fdd73d151c72d">setSelectedLabelColor</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a08af1c72db9ae4dc8cb8a973d44405ab"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setLowerEnding </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classQCPLineEnding.html">QCPLineEnding</a> & </td>
<td class="paramname"><em>ending</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the style for the lower axis ending. See the documentation of <a class="el" href="classQCPLineEnding.html" title="Handles the different ending decorations for line-like items. ">QCPLineEnding</a> for available styles.</p>
<p>For horizontal axes, this method refers to the left ending, for vertical axes the bottom ending. Note that this meaning does not change when the axis range is reversed with <a class="el" href="classQCPAxis.html#a2172fdb196b1a0dc3f40992fcad8e9e1">setRangeReversed</a>.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#a69119b892fc306f651763596685aa377">setUpperEnding</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a69119b892fc306f651763596685aa377"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setUpperEnding </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classQCPLineEnding.html">QCPLineEnding</a> & </td>
<td class="paramname"><em>ending</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the style for the upper axis ending. See the documentation of <a class="el" href="classQCPLineEnding.html" title="Handles the different ending decorations for line-like items. ">QCPLineEnding</a> for available styles.</p>
<p>For horizontal axes, this method refers to the right ending, for vertical axes the top ending. Note that this meaning does not change when the axis range is reversed with <a class="el" href="classQCPAxis.html#a2172fdb196b1a0dc3f40992fcad8e9e1">setRangeReversed</a>.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#a08af1c72db9ae4dc8cb8a973d44405ab">setLowerEnding</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a2877a6230920c118be65c6113089f467"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">double QCPAxis::selectTest </td>
<td>(</td>
<td class="paramtype">const QPointF & </td>
<td class="paramname"><em>pos</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"><em>onlySelectable</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">QVariant * </td>
<td class="paramname"><em>details</em> = <code>0</code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>This function is used to decide whether a click hits a layerable object or not.</p>
<p><em>pos</em> is a point in pixel coordinates on the <a class="el" href="classQCustomPlot.html" title="The central class of the library. This is the QWidget which displays the plot and interacts with the ...">QCustomPlot</a> surface. This function returns the shortest pixel distance of this point to the object. If the object is either invisible or the distance couldn't be determined, -1.0 is returned. Further, if <em>onlySelectable</em> is true and the object is not selectable, -1.0 is returned, too.</p>
<p>If the object is represented not by single lines but by an area like a <a class="el" href="classQCPItemText.html">QCPItemText</a> or the bars of a <a class="el" href="classQCPBars.html">QCPBars</a> plottable, a click inside the area should also be considered a hit. In these cases this function thus returns a constant value greater zero but still below the parent plot's selection tolerance. (typically the selectionTolerance multiplied by 0.99).</p>
<p>Providing a constant value for area objects allows selecting line objects even when they are obscured by such area objects, by clicking close to the lines (i.e. closer than 0.99*selectionTolerance).</p>
<p>The actual setting of the selection state is not done by this function. This is handled by the parent <a class="el" href="classQCustomPlot.html" title="The central class of the library. This is the QWidget which displays the plot and interacts with the ...">QCustomPlot</a> when the mouseReleaseEvent occurs, and the finally selected object is notified via the selectEvent/deselectEvent methods.</p>
<p><em>details</em> is an optional output parameter. Every layerable subclass may place any information in <em>details</em>. This information will be passed to <a class="el" href="classQCPAxis.html#aa8a5fe80e2898ec08ada26b5fbee9eca">selectEvent</a> when the parent <a class="el" href="classQCustomPlot.html" title="The central class of the library. This is the QWidget which displays the plot and interacts with the ...">QCustomPlot</a> decides on the basis of this selectTest call, that the object was successfully selected. The subsequent call to <a class="el" href="classQCPAxis.html#aa8a5fe80e2898ec08ada26b5fbee9eca">selectEvent</a> will carry the <em>details</em>. This is useful for multi-part objects (like <a class="el" href="classQCPAxis.html" title="Manages a single axis inside a QCustomPlot. ">QCPAxis</a>). This way, a possibly complex calculation to decide which part was clicked is only done once in <a class="el" href="classQCPAxis.html#a2877a6230920c118be65c6113089f467">selectTest</a>. The result (i.e. the actually clicked part) can then be placed in <em>details</em>. So in the subsequent <a class="el" href="classQCPAxis.html#aa8a5fe80e2898ec08ada26b5fbee9eca">selectEvent</a>, the decision which part was selected doesn't have to be done a second time for a single selection operation.</p>
<p>You may pass 0 as <em>details</em> to indicate that you are not interested in those selection details.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#aa8a5fe80e2898ec08ada26b5fbee9eca">selectEvent</a>, <a class="el" href="classQCPAxis.html#a53512242cde6ec21943a3ba10dbf78c3">deselectEvent</a>, <a class="el" href="classQCustomPlot.html#a5ee1e2f6ae27419deca53e75907c27e5">QCustomPlot::setInteractions</a> </dd></dl>
<p>Reimplemented from <a class="el" href="classQCPLayerable.html#a4001c4d0dfec55598efa4d531f2179a9">QCPLayerable</a>.</p>
</div>
</div>
<a class="anchor" id="a57483f2f60145ddc9e63f3af53959265"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">Qt::Orientation QCPAxis::orientation </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the orientation of this axis. The axis orientation (horizontal or vertical) is deduced from the axis type (left, top, right or bottom).</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#a9a68b3e45f1b1e33d4d807822342516c">orientation(AxisType type)</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a18f3a68f2b691af1fd34b6593c886630"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::moveRange </td>
<td>(</td>
<td class="paramtype">double </td>
<td class="paramname"><em>diff</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>If the scale type (<a class="el" href="classQCPAxis.html#adef29cae617af4f519f6c40d1a866ca6">setScaleType</a>) is <a class="el" href="classQCPAxis.html#a36d8e8658dbaa179bf2aeb973db2d6f0aff6e30a11a828bc850caffab0ff994f6">stLinear</a>, <em>diff</em> is added to the lower and upper bounds of the range. The range is simply moved by <em>diff</em>.</p>
<p>If the scale type is <a class="el" href="classQCPAxis.html#a36d8e8658dbaa179bf2aeb973db2d6f0abf5b785ad976618816dc6f79b73216d4">stLogarithmic</a>, the range bounds are multiplied by <em>diff</em>. This corresponds to an apparent "linear" move in logarithmic scaling by a distance of log(diff). </p>
</div>
</div>
<a class="anchor" id="a7072ff96fe690148f1bbcdb4f773ea1c"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::scaleRange </td>
<td>(</td>
<td class="paramtype">double </td>
<td class="paramname"><em>factor</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">double </td>
<td class="paramname"><em>center</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Scales the range of this axis by <em>factor</em> around the coordinate <em>center</em>. For example, if <em>factor</em> is 2.0, <em>center</em> is 1.0, then the axis range will double its size, and the point at coordinate 1.0 won't have changed its position in the <a class="el" href="classQCustomPlot.html" title="The central class of the library. This is the QWidget which displays the plot and interacts with the ...">QCustomPlot</a> widget (i.e. coordinates around 1.0 will have moved symmetrically closer to 1.0). </p>
</div>
</div>
<a class="anchor" id="af4bbd446dcaee5a83ac30ce9bcd6e125"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setScaleRatio </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classQCPAxis.html">QCPAxis</a> * </td>
<td class="paramname"><em>otherAxis</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">double </td>
<td class="paramname"><em>ratio</em> = <code>1.0</code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Scales the range of this axis to have a certain scale <em>ratio</em> to <em>otherAxis</em>. The scaling will be done around the center of the current axis range.</p>
<p>For example, if <em>ratio</em> is 1, this axis is the <em>yAxis</em> and <em>otherAxis</em> is <em>xAxis</em>, graphs plotted with those axes will appear in a 1:1 aspect ratio, independent of the aspect ratio the axis rect has.</p>
<p>This is an operation that changes the range of this axis once, it doesn't fix the scale ratio indefinitely. Note that calling this function in the constructor of the <a class="el" href="classQCustomPlot.html" title="The central class of the library. This is the QWidget which displays the plot and interacts with the ...">QCustomPlot</a>'s parent won't have the desired effect, since the widget dimensions aren't defined yet, and a resizeEvent will follow. </p>
</div>
</div>
<a class="anchor" id="a499345f02ebce4b23d8ccec96e58daa9"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::rescale </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>onlyVisiblePlottables</em> = <code>false</code></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Changes the axis range such that all plottables associated with this axis are fully visible in that dimension.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAbstractPlottable.html#a7e8fc3be43c27ccacd70a7bf9d74a5cd">QCPAbstractPlottable::rescaleAxes</a>, <a class="el" href="classQCustomPlot.html#ad86528f2cee6c7e446dea4a6e8839935">QCustomPlot::rescaleAxes</a> </dd></dl>
</div>
</div>
<a class="anchor" id="ae9289ef7043b9d966af88eaa95b037d1"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">double QCPAxis::pixelToCoord </td>
<td>(</td>
<td class="paramtype">double </td>
<td class="paramname"><em>value</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Transforms <em>value</em>, in pixel coordinates of the <a class="el" href="classQCustomPlot.html" title="The central class of the library. This is the QWidget which displays the plot and interacts with the ...">QCustomPlot</a> widget, to axis coordinates. </p>
</div>
</div>
<a class="anchor" id="a985ae693b842fb0422b4390fe36d299a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">double QCPAxis::coordToPixel </td>
<td>(</td>
<td class="paramtype">double </td>
<td class="paramname"><em>value</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Transforms <em>value</em>, in coordinates of the axis, to pixel coordinates of the <a class="el" href="classQCustomPlot.html" title="The central class of the library. This is the QWidget which displays the plot and interacts with the ...">QCustomPlot</a> widget. </p>
</div>
</div>
<a class="anchor" id="ab2965a8ab1da948b897f1c006080760b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classQCPAxis.html#abee4c7a54c468b1385dfce2c898b115f">QCPAxis::SelectablePart</a> QCPAxis::getPartAt </td>
<td>(</td>
<td class="paramtype">const QPointF & </td>
<td class="paramname"><em>pos</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the part of the axis that is hit by <em>pos</em> (in pixels). The return value of this function is independent of the user-selectable parts defined with <a class="el" href="classQCPAxis.html#a513f9b9e326c505d9bec54880031b085">setSelectableParts</a>. Further, this function does not change the current selection state of the axis.</p>
<p>If the axis is not visible (<a class="el" href="classQCPLayerable.html#a3bed99ddc396b48ce3ebfdc0418744f8">setVisible</a>), this function always returns <a class="el" href="classQCPAxis.html#abee4c7a54c468b1385dfce2c898b115fae0df8123a5528d5ccf87cb7794f971ea">spNone</a>.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#ab9d7a69277dcbed9119b3c1f25ca19c3">setSelectedParts</a>, <a class="el" href="classQCPAxis.html#a513f9b9e326c505d9bec54880031b085">setSelectableParts</a>, <a class="el" href="classQCustomPlot.html#a5ee1e2f6ae27419deca53e75907c27e5">QCustomPlot::setInteractions</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a4f7404494cccdbfc00e1e865b7ed16a4"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">QList< <a class="el" href="classQCPAbstractPlottable.html">QCPAbstractPlottable</a> * > QCPAxis::plottables </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns a list of all the plottables that have this axis as key or value axis.</p>
<p>If you are only interested in plottables of type <a class="el" href="classQCPGraph.html" title="A plottable representing a graph in a plot. ">QCPGraph</a>, see <a class="el" href="classQCPAxis.html#ad3919e7d7400f55446ea82018fe5e3a8">graphs</a>.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#ad3919e7d7400f55446ea82018fe5e3a8">graphs</a>, <a class="el" href="classQCPAxis.html#ae437656a5fd1a03721a8f2d7aab460fe">items</a> </dd></dl>
</div>
</div>
<a class="anchor" id="ad3919e7d7400f55446ea82018fe5e3a8"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">QList< <a class="el" href="classQCPGraph.html">QCPGraph</a> * > QCPAxis::graphs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns a list of all the graphs that have this axis as key or value axis.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#a4f7404494cccdbfc00e1e865b7ed16a4">plottables</a>, <a class="el" href="classQCPAxis.html#ae437656a5fd1a03721a8f2d7aab460fe">items</a> </dd></dl>
</div>
</div>
<a class="anchor" id="ae437656a5fd1a03721a8f2d7aab460fe"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">QList< <a class="el" href="classQCPAbstractItem.html">QCPAbstractItem</a> * > QCPAxis::items </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns a list of all the items that are associated with this axis. An item is considered associated with an axis if at least one of its positions uses the axis as key or value axis.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#a4f7404494cccdbfc00e1e865b7ed16a4">plottables</a>, <a class="el" href="classQCPAxis.html#ad3919e7d7400f55446ea82018fe5e3a8">graphs</a> </dd></dl>
</div>
</div>
<a class="anchor" id="ac0a6b77bd52bec6c81cd62d167cfeba6"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classQCPAxis.html#ae2bcc1728b382f10f064612b368bc18a">QCPAxis::AxisType</a> QCPAxis::marginSideToAxisType </td>
<td>(</td>
<td class="paramtype"><a class="el" href="namespaceQCP.html#a7e487e3e2ccb62ab7771065bab7cae54">QCP::MarginSide</a> </td>
<td class="paramname"><em>side</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Transforms a margin side to the logically corresponding axis type. (<a class="el" href="namespaceQCP.html#a7e487e3e2ccb62ab7771065bab7cae54a9500c8bfcc9e80b9dff0a8e00e867f07" title="0x01 left margin ">QCP::msLeft</a> to <a class="el" href="classQCPAxis.html#ae2bcc1728b382f10f064612b368bc18aaf84aa6cac6fb6099f54a2cbf7546b730" title="0x01 Axis is vertical and on the left side of the axis rect ">QCPAxis::atLeft</a>, <a class="el" href="namespaceQCP.html#a7e487e3e2ccb62ab7771065bab7cae54a93c719593bb2b94ed244d52c86d83b65" title="0x02 right margin ">QCP::msRight</a> to <a class="el" href="classQCPAxis.html#ae2bcc1728b382f10f064612b368bc18aadf5509f7d29199ef2f263b1dd224b345" title="0x02 Axis is vertical and on the right side of the axis rect ">QCPAxis::atRight</a>, etc.) </p>
</div>
</div>
<a class="anchor" id="a9a68b3e45f1b1e33d4d807822342516c"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static Qt::Orientation QCPAxis::orientation </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classQCPAxis.html#ae2bcc1728b382f10f064612b368bc18a">AxisType</a> </td>
<td class="paramname"><em>type</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the orientation of the specified axis type</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#a57483f2f60145ddc9e63f3af53959265">orientation()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="aa85ba73dfee6483e23825461b725e363"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classQCPAxis.html#ae2bcc1728b382f10f064612b368bc18a">QCPAxis::AxisType</a> QCPAxis::opposite </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classQCPAxis.html#ae2bcc1728b382f10f064612b368bc18a">QCPAxis::AxisType</a> </td>
<td class="paramname"><em>type</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the axis type that describes the opposite axis of an axis with the specified <em>type</em>. </p>
</div>
</div>
<a class="anchor" id="af46d99613d29518795134ec4928e3873"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::ticksRequest </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">signal</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>This signal is emitted when <a class="el" href="classQCPAxis.html#ae867c23d3a6a7bd4d09cc66c5d018f63">setAutoTicks</a> is false and the axis is about to generate tick labels for a replot.</p>
<p>Modifying the tick positions can be done with <a class="el" href="classQCPAxis.html#a871db94c5d796c80fcbe1a9d4506e27e">setTickVector</a>. If you also want to control the tick labels, set <a class="el" href="classQCPAxis.html#aaa47e3a6bac0c20d4beb9028f01bc1a1">setAutoTickLabels</a> to false and also provide the labels with <a class="el" href="classQCPAxis.html#a921d3ba3853ca3bd2cce3459f7a243ed">setTickVectorLabels</a>.</p>
<p>If you only want static ticks you probably don't need this signal, since you can just set the tick vector (and possibly tick label vector) once. However, if you want to provide ticks (and maybe labels) dynamically, e.g. depending on the current axis range, connect a slot to this signal and set the vector/vectors there. </p>
</div>
</div>
<a class="anchor" id="a0894084e4c16a1736534c4095746f910"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::rangeChanged </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classQCPRange.html">QCPRange</a> & </td>
<td class="paramname"><em>newRange</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">signal</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>This signal is emitted when the range of this axis has changed. You can connect it to the <a class="el" href="classQCPAxis.html#aebdfea5d44c3a0ad2b4700cd4d25b641">setRange</a> slot of another axis to communicate the new range to the other axis, in order for it to be synchronized.</p>
<p>You may also manipulate/correct the range with <a class="el" href="classQCPAxis.html#aebdfea5d44c3a0ad2b4700cd4d25b641">setRange</a> in a slot connected to this signal. This is useful if for example a maximum range span shall not be exceeded, or if the lower/upper range shouldn't go beyond certain values. For example, the following slot would limit the x axis to only positive ranges: </p>
<div class="fragment"><div class="line"><span class="keywordflow">if</span> (newRange.lower < 0)</div>
<div class="line"> plot->xAxis->setRange(0, newRange.size());</div>
</div><!-- fragment -->
</div>
</div>
<a class="anchor" id="aac8576288e8e31f16186124bc10dd10d"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::rangeChanged </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classQCPRange.html">QCPRange</a> & </td>
<td class="paramname"><em>newRange</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classQCPRange.html">QCPRange</a> & </td>
<td class="paramname"><em>oldRange</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">signal</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>This is an overloaded function.</p>
<p>Additionally to the new range, this signal also provides the previous range held by the axis as <em>oldRange</em>. </p>
</div>
</div>
<a class="anchor" id="a3505ed8a93bd2e349d858d84996bf767"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::scaleTypeChanged </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classQCPAxis.html#a36d8e8658dbaa179bf2aeb973db2d6f0">QCPAxis::ScaleType</a> </td>
<td class="paramname"><em>scaleType</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">signal</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>This signal is emitted when the scale type changes, by calls to <a class="el" href="classQCPAxis.html#adef29cae617af4f519f6c40d1a866ca6">setScaleType</a> </p>
</div>
</div>
<a class="anchor" id="a62b598abeee7174a05f9d542cc85b1f5"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::selectionChanged </td>
<td>(</td>
<td class="paramtype">const QCPAxis::SelectableParts & </td>
<td class="paramname"><em>parts</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">signal</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>This signal is emitted when the selection state of this axis has changed, either by user interaction or by a direct call to <a class="el" href="classQCPAxis.html#ab9d7a69277dcbed9119b3c1f25ca19c3">setSelectedParts</a>. </p>
</div>
</div>
<a class="anchor" id="aa5ff1fd851139028a3bb4efcb31de9fc"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::selectableChanged </td>
<td>(</td>
<td class="paramtype">const QCPAxis::SelectableParts & </td>
<td class="paramname"><em>parts</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">signal</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>This signal is emitted when the selectability changes, by calls to <a class="el" href="classQCPAxis.html#a513f9b9e326c505d9bec54880031b085">setSelectableParts</a> </p>
</div>
</div>
<a class="anchor" id="a57d9e961bae7d62f5b4e1f143e660c78"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::setupTickVectors </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>This function is called to prepare the tick vector, sub tick vector and tick label vector. If <a class="el" href="classQCPAxis.html#ae867c23d3a6a7bd4d09cc66c5d018f63">setAutoTicks</a> is set to true, appropriate tick values are determined automatically via <a class="el" href="classQCPAxis.html#a626eef437c874148df1a5ac78506d463">generateAutoTicks</a>. If it's set to false, the signal ticksRequest is emitted, which can be used to provide external tick positions. Then the sub tick vectors and tick label vectors are created. </p>
</div>
</div>
<a class="anchor" id="a626eef437c874148df1a5ac78506d463"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::generateAutoTicks </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>If <a class="el" href="classQCPAxis.html#ae867c23d3a6a7bd4d09cc66c5d018f63">setAutoTicks</a> is set to true, this function is called by <a class="el" href="classQCPAxis.html#a57d9e961bae7d62f5b4e1f143e660c78">setupTickVectors</a> to generate reasonable tick positions (and subtick count). The algorithm tries to create approximately <code>mAutoTickCount</code> ticks (set via <a class="el" href="classQCPAxis.html#a7c7111cbeac9ec5fcb40f93a1ef51a0b">setAutoTickCount</a>).</p>
<p>If the scale is logarithmic, <a class="el" href="classQCPAxis.html#a7c7111cbeac9ec5fcb40f93a1ef51a0b">setAutoTickCount</a> is ignored, and one tick is generated at every power of the current logarithm base, set via <a class="el" href="classQCPAxis.html#a726186054be90487885a748aa1b42188">setScaleLogBase</a>. </p>
</div>
</div>
<a class="anchor" id="a3c5c045019fcdc0843a3e064eda7478a"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">int QCPAxis::calculateAutoSubTickCount </td>
<td>(</td>
<td class="paramtype">double </td>
<td class="paramname"><em>tickStep</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Called by generateAutoTicks when <a class="el" href="classQCPAxis.html#adcbdec7a60054b88571e89599f4a45bf">setAutoSubTicks</a> is set to true. Depending on the <em>tickStep</em> between two major ticks on the axis, a different number of sub ticks is appropriate. For Example taking 4 sub ticks for a <em>tickStep</em> of 1 makes more sense than taking 5 sub ticks, because this corresponds to a sub tick step of 0.2, instead of the less intuitive 0.16667. Note that a subtick count of 4 means dividing the major tick step into 5 sections.</p>
<p>This is implemented by a hand made lookup for integer tick steps as well as fractional tick steps with a fractional part of (approximately) 0.5. If a tick step is different (i.e. has no fractional part close to 0.5), the currently set sub tick count (<a class="el" href="classQCPAxis.html#a4b1554ead9d7f9799650d51383e326dd">setSubTickCount</a>) is returned. </p>
</div>
</div>
<a class="anchor" id="a47bdb0a55de6759489ee47665199aebb"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">int QCPAxis::calculateMargin </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the appropriate outward margin for this axis. It is needed if <a class="el" href="classQCPLayoutElement.html#accfda49994e3e6d51ed14504abf9d27d">QCPAxisRect::setAutoMargins</a> is set to true on the parent axis rect. An axis with axis type <a class="el" href="classQCPAxis.html#ae2bcc1728b382f10f064612b368bc18aaf84aa6cac6fb6099f54a2cbf7546b730">atLeft</a> will return an appropriate left margin, <a class="el" href="classQCPAxis.html#ae2bcc1728b382f10f064612b368bc18aa220d68888516b6c3b493d144f1ba438f">atBottom</a> will return an appropriate bottom margin and so forth. For the calculation, this function goes through similar steps as <a class="el" href="classQCPAxis.html#a258b1e783eda5cd14ec5552c696a424e">draw</a>, so changing one function likely requires the modification of the other one as well.</p>
<p>The margin consists of the outward tick length, tick label padding, tick label size, label padding, label size, and padding.</p>
<p>The margin is cached internally, so repeated calls while leaving the axis range, fonts, etc. unchanged are very fast. </p>
</div>
</div>
<a class="anchor" id="a13bde39eb1e0b7c14a02935689be8aba"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::applyDefaultAntialiasingHint </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classQCPPainter.html">QCPPainter</a> * </td>
<td class="paramname"><em>painter</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>A convenience function to easily set the QPainter::Antialiased hint on the provided <em>painter</em> before drawing axis lines.</p>
<p>This is the antialiasing state the painter passed to the <a class="el" href="classQCPAxis.html#a258b1e783eda5cd14ec5552c696a424e">draw</a> method is in by default.</p>
<p>This function takes into account the local setting of the antialiasing flag as well as the overrides set with <a class="el" href="classQCustomPlot.html#af6f91e5eab1be85f67c556e98c3745e8">QCustomPlot::setAntialiasedElements</a> and <a class="el" href="classQCustomPlot.html#ae10d685b5eabea2999fb8775ca173c24">QCustomPlot::setNotAntialiasedElements</a>.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPLayerable.html#a4fd43e89be4a553ead41652565ff0581">setAntialiased</a> </dd></dl>
<p>Implements <a class="el" href="classQCPLayerable.html#afdf83ddc6a265cbf4c89fe99d3d93473">QCPLayerable</a>.</p>
</div>
</div>
<a class="anchor" id="a258b1e783eda5cd14ec5552c696a424e"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::draw </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classQCPPainter.html">QCPPainter</a> * </td>
<td class="paramname"><em>painter</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Draws the axis with the specified <em>painter</em>, using the internal QCPAxisPainterPrivate instance. </p>
<p>Implements <a class="el" href="classQCPLayerable.html#aecf2f7087482d4b6a78cb2770e5ed12d">QCPLayerable</a>.</p>
</div>
</div>
<a class="anchor" id="aca53b2f365dfc1257cba9e62395aa68f"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="namespaceQCP.html#a2ad6bb6281c7c2d593d4277b44c2b037">QCP::Interaction</a> QCPAxis::selectionCategory </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the selection category this layerable shall belong to. The selection category is used in conjunction with <a class="el" href="classQCustomPlot.html#a5ee1e2f6ae27419deca53e75907c27e5">QCustomPlot::setInteractions</a> to control which objects are selectable and which aren't.</p>
<p>Subclasses that don't fit any of the normal <a class="el" href="namespaceQCP.html#a2ad6bb6281c7c2d593d4277b44c2b037">QCP::Interaction</a> values can use <a class="el" href="namespaceQCP.html#a2ad6bb6281c7c2d593d4277b44c2b037af67a50bc26147a13b551b3a625374949">QCP::iSelectOther</a>. This is what the default implementation returns.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCustomPlot.html#a5ee1e2f6ae27419deca53e75907c27e5">QCustomPlot::setInteractions</a> </dd></dl>
<p>Reimplemented from <a class="el" href="classQCPLayerable.html#aa4035e586b7f317a06ba7e74e242a5ea">QCPLayerable</a>.</p>
</div>
</div>
<a class="anchor" id="aa8a5fe80e2898ec08ada26b5fbee9eca"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::selectEvent </td>
<td>(</td>
<td class="paramtype">QMouseEvent * </td>
<td class="paramname"><em>event</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"><em>additive</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const QVariant & </td>
<td class="paramname"><em>details</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool * </td>
<td class="paramname"><em>selectionStateChanged</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>This event is called when the layerable shall be selected, as a consequence of a click by the user. Subclasses should react to it by setting their selection state appropriately. The default implementation does nothing.</p>
<p><em>event</em> is the mouse event that caused the selection. <em>additive</em> indicates, whether the user was holding the multi-select-modifier while performing the selection (see <a class="el" href="classQCustomPlot.html#a8fc96e3b5138a06759a2a90c166df516">QCustomPlot::setMultiSelectModifier</a>). if <em>additive</em> is true, the selection state must be toggled (i.e. become selected when unselected and unselected when selected).</p>
<p>Every selectEvent is preceded by a call to <a class="el" href="classQCPAxis.html#a2877a6230920c118be65c6113089f467">selectTest</a>, which has returned positively (i.e. returned a value greater than 0 and less than the selection tolerance of the parent <a class="el" href="classQCustomPlot.html" title="The central class of the library. This is the QWidget which displays the plot and interacts with the ...">QCustomPlot</a>). The <em>details</em> data you output from <a class="el" href="classQCPAxis.html#a2877a6230920c118be65c6113089f467">selectTest</a> is fed back via <em>details</em> here. You may use it to transport any kind of information from the selectTest to the possibly subsequent selectEvent. Usually <em>details</em> is used to transfer which part was clicked, if it is a layerable that has multiple individually selectable parts (like <a class="el" href="classQCPAxis.html" title="Manages a single axis inside a QCustomPlot. ">QCPAxis</a>). This way selectEvent doesn't need to do the calculation again to find out which part was actually clicked.</p>
<p><em>selectionStateChanged</em> is an output parameter. If the pointer is non-null, this function must set the value either to true or false, depending on whether the selection state of this layerable was actually changed. For layerables that only are selectable as a whole and not in parts, this is simple: if <em>additive</em> is true, <em>selectionStateChanged</em> must also be set to true, because the selection toggles. If <em>additive</em> is false, <em>selectionStateChanged</em> is only set to true, if the layerable was previously unselected and now is switched to the selected state.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#a2877a6230920c118be65c6113089f467">selectTest</a>, <a class="el" href="classQCPAxis.html#a53512242cde6ec21943a3ba10dbf78c3">deselectEvent</a> </dd></dl>
<p>Reimplemented from <a class="el" href="classQCPLayerable.html#a7498c2d0d081cf7cad0fb3bb93aa0e91">QCPLayerable</a>.</p>
</div>
</div>
<a class="anchor" id="a53512242cde6ec21943a3ba10dbf78c3"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::deselectEvent </td>
<td>(</td>
<td class="paramtype">bool * </td>
<td class="paramname"><em>selectionStateChanged</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>This event is called when the layerable shall be deselected, either as consequence of a user interaction or a call to <a class="el" href="classQCustomPlot.html#a9d4808ab925b003054085246c92a257c">QCustomPlot::deselectAll</a>. Subclasses should react to it by unsetting their selection appropriately.</p>
<p>just as in <a class="el" href="classQCPAxis.html#aa8a5fe80e2898ec08ada26b5fbee9eca">selectEvent</a>, the output parameter <em>selectionStateChanged</em> (if non-null), must return true or false when the selection state of this layerable has changed or not changed, respectively.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#a2877a6230920c118be65c6113089f467">selectTest</a>, <a class="el" href="classQCPAxis.html#aa8a5fe80e2898ec08ada26b5fbee9eca">selectEvent</a> </dd></dl>
<p>Reimplemented from <a class="el" href="classQCPLayerable.html#ae546370644a5551c76af739afc008bee">QCPLayerable</a>.</p>
</div>
</div>
<a class="anchor" id="a06320a944d1120732cc0d72fe1306d8b"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void QCPAxis::visibleTickBounds </td>
<td>(</td>
<td class="paramtype">int & </td>
<td class="paramname"><em>lowIndex</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"><em>highIndex</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns via <em>lowIndex</em> and <em>highIndex</em>, which ticks in the current tick vector are visible in the current range. The return values are indices of the tick vector, not the positions of the ticks themselves.</p>
<p>The actual use of this function is when an external tick vector is provided, since it might exceed far beyond the currently displayed range, and would cause unnecessary calculations e.g. of subticks.</p>
<p>If all ticks are outside the axis range, an inverted range is returned, i.e. highIndex will be smaller than lowIndex. There is one case, where this function returns indices that are not really visible in the current axis range: When the tick spacing is larger than the axis range size and one tick is below the axis range and the next tick is already above the axis range. Because in such cases it is usually desirable to know the tick pair, to draw proper subticks. </p>
</div>
</div>
<a class="anchor" id="a1385765db2419ee5fb5505a6cf9130fb"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">double QCPAxis::baseLog </td>
<td>(</td>
<td class="paramtype">double </td>
<td class="paramname"><em>value</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>A log function with the base mScaleLogBase, used mostly for coordinate transforms in logarithmic scales with arbitrary log base. Uses the buffered mScaleLogBaseLogInv for faster calculation. This is set to <code>1.0/qLn(mScaleLogBase)</code> in <a class="el" href="classQCPAxis.html#a726186054be90487885a748aa1b42188">setScaleLogBase</a>.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#a97d69f021a05126fcb978d0aefea47b8">basePow</a>, <a class="el" href="classQCPAxis.html#a726186054be90487885a748aa1b42188">setScaleLogBase</a>, <a class="el" href="classQCPAxis.html#adef29cae617af4f519f6c40d1a866ca6">setScaleType</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a97d69f021a05126fcb978d0aefea47b8"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">double QCPAxis::basePow </td>
<td>(</td>
<td class="paramtype">double </td>
<td class="paramname"><em>value</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>A power function with the base mScaleLogBase, used mostly for coordinate transforms in logarithmic scales with arbitrary log base.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classQCPAxis.html#a1385765db2419ee5fb5505a6cf9130fb">baseLog</a>, <a class="el" href="classQCPAxis.html#a726186054be90487885a748aa1b42188">setScaleLogBase</a>, <a class="el" href="classQCPAxis.html#adef29cae617af4f519f6c40d1a866ca6">setScaleType</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a3eb0681d31baf579bb73b86a0153cb02"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">QPen QCPAxis::getBasePen </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the pen that is used to draw the axis base line. Depending on the selection state, this is either mSelectedBasePen or mBasePen. </p>
</div>
</div>
<a class="anchor" id="a7f503910be40fb1717e1635be3ef17e1"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">QPen QCPAxis::getTickPen </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the pen that is used to draw the (major) ticks. Depending on the selection state, this is either mSelectedTickPen or mTickPen. </p>
</div>
</div>
<a class="anchor" id="ab4f7e60a40eb051c775afcaeab895c85"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">QPen QCPAxis::getSubTickPen </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the pen that is used to draw the subticks. Depending on the selection state, this is either mSelectedSubTickPen or mSubTickPen. </p>
</div>
</div>
<a class="anchor" id="aef30b66668986523225089a67280ec7a"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">QFont QCPAxis::getTickLabelFont </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the font that is used to draw the tick labels. Depending on the selection state, this is either mSelectedTickLabelFont or mTickLabelFont. </p>
</div>
</div>
<a class="anchor" id="ab0768eb2879efb202645d19ff789e63e"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">QFont QCPAxis::getLabelFont </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the font that is used to draw the axis label. Depending on the selection state, this is either mSelectedLabelFont or mLabelFont. </p>
</div>
</div>
<a class="anchor" id="a0f8583f7ac24ccc70d39fdd2389cad6e"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">QColor QCPAxis::getTickLabelColor </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the color that is used to draw the tick labels. Depending on the selection state, this is either mSelectedTickLabelColor or mTickLabelColor. </p>
</div>
</div>
<a class="anchor" id="a42bd69b9e9c571f13624079be18ccdc1"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">QColor QCPAxis::getLabelColor </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the color that is used to draw the axis label. Depending on the selection state, this is either mSelectedLabelColor or mLabelColor. </p>
</div>
</div>
<hr/>The documentation for this class was generated from the following files:<ul>
<li>src/axis.h</li>
<li>src/axis.cpp</li>
</ul>
</div><!-- contents -->
</body>
</html>
|