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
|
<!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) 2011-2016 Emanuel Eichhammer" />
<title>Data Fields - Functions</title>
<link href="qcp.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.12 -->
</div><!-- top -->
<div class="contents">
 
<h3><a id="index_s"></a>- s -</h3><ul>
<li>sanitizedForLinScale()
: <a class="el" href="classQCPRange.html#a808751fdd9b17ef52327ba011df2e5f1">QCPRange</a>
</li>
<li>sanitizedForLogScale()
: <a class="el" href="classQCPRange.html#a3d66288d66e1d6df3636075eb42502ee">QCPRange</a>
</li>
<li>save()
: <a class="el" href="classQCPPainter.html#a8fd6821ee6fecbfa04444c9062912abd">QCPPainter</a>
</li>
<li>saveBmp()
: <a class="el" href="classQCustomPlot.html#ae3a86ed0795670e50afa21759d4fa13d">QCustomPlot</a>
</li>
<li>saveJpg()
: <a class="el" href="classQCustomPlot.html#a76f0d278e630a711fa6f48048cfd83e4">QCustomPlot</a>
</li>
<li>savePdf()
: <a class="el" href="classQCustomPlot.html#ad5acd34f6b39c3516887d7e54fec2412">QCustomPlot</a>
</li>
<li>savePng()
: <a class="el" href="classQCustomPlot.html#ac92cc9256d12f354b40a4be4600b5fb9">QCustomPlot</a>
</li>
<li>saveRastered()
: <a class="el" href="classQCustomPlot.html#ad7723ce2edfa270632ef42b03a444352">QCustomPlot</a>
</li>
<li>scaleRange()
: <a class="el" href="classQCPAxis.html#a31d18ddf3a4f21ceb077db8ae5b69856">QCPAxis</a>
</li>
<li>scaleTypeChanged()
: <a class="el" href="classQCPAxis.html#a3505ed8a93bd2e349d858d84996bf767">QCPAxis</a>
</li>
<li>segmentsIntersect()
: <a class="el" href="classQCPGraph.html#abb9c674b207a1f6df5e083aa9f3e071a">QCPGraph</a>
</li>
<li>selectableChanged()
: <a class="el" href="classQCPAbstractPlottable.html#a663b1a44123c8340ac041a29d1e2c973">QCPAbstractPlottable</a>
, <a class="el" href="classQCPAxis.html#aa5ff1fd851139028a3bb4efcb31de9fc">QCPAxis</a>
</li>
<li>selected()
: <a class="el" href="classQCPAbstractPlottable.html#a0b3b514474fe93354fc74cfc144184b4">QCPAbstractPlottable</a>
</li>
<li>selectedAxes()
: <a class="el" href="classQCustomPlot.html#a7e6b07792b1cb2c31681596582d14dbe">QCustomPlot</a>
</li>
<li>selectedGraphs()
: <a class="el" href="classQCustomPlot.html#ad3547aded026d8a9ae6ef13a69080d06">QCustomPlot</a>
</li>
<li>selectedItems()
: <a class="el" href="classQCPLegend.html#ac7d9e567d5c551e09cd9bcc4306c5532">QCPLegend</a>
, <a class="el" href="classQCustomPlot.html#afda487bcf2d6cf1a57173d82495e29ba">QCustomPlot</a>
</li>
<li>selectedLegends()
: <a class="el" href="classQCustomPlot.html#ac87624ddff1cbf4064781a8e8ae321c4">QCustomPlot</a>
</li>
<li>selectedPlottables()
: <a class="el" href="classQCustomPlot.html#a747faaab57c56891e901a1e97fa4359a">QCustomPlot</a>
</li>
<li>selectEvent()
: <a class="el" href="classQCPAbstractItem.html#aaf92af7b9893712959a6c073d334d88d">QCPAbstractItem</a>
, <a class="el" href="classQCPAbstractLegendItem.html#abcfe9e335d99c7fac74e03d26723c1b7">QCPAbstractLegendItem</a>
, <a class="el" href="classQCPAbstractPlottable.html#a16aaad02456aa23a759efd1ac90c79bf">QCPAbstractPlottable</a>
, <a class="el" href="classQCPAxis.html#aa8a5fe80e2898ec08ada26b5fbee9eca">QCPAxis</a>
, <a class="el" href="classQCPLayerable.html#a7498c2d0d081cf7cad0fb3bb93aa0e91">QCPLayerable</a>
, <a class="el" href="classQCPLegend.html#af93bf87dc5c383a9d2ada80b35f3a1a5">QCPLegend</a>
, <a class="el" href="classQCPTextElement.html#abdb1b00e629600aafc3cd7f961336361">QCPTextElement</a>
</li>
<li>selection()
: <a class="el" href="classQCPAbstractPlottable.html#a040bf09f41d456284cfd39cc37aa068f">QCPAbstractPlottable</a>
</li>
<li>selectionCategory()
: <a class="el" href="classQCPAbstractItem.html#a59279d8123663b3b2fffbe54ca075244">QCPAbstractItem</a>
, <a class="el" href="classQCPAbstractLegendItem.html#aa8b996ea6b01ee04fff267afffa58135">QCPAbstractLegendItem</a>
, <a class="el" href="classQCPAbstractPlottable.html#afb5e4718c232a16d0fb06b00e172be9e">QCPAbstractPlottable</a>
, <a class="el" href="classQCPAxis.html#a04b897f3e24724b8f021639b220fd71c">QCPAxis</a>
, <a class="el" href="classQCPLayerable.html#a908c9edda761886f33893be326dab77d">QCPLayerable</a>
, <a class="el" href="classQCPLegend.html#a8e11032dd41db9e53fd3ab0c3c813202">QCPLegend</a>
</li>
<li>selectionChanged()
: <a class="el" href="classQCPAbstractItem.html#aa5cffb034fc65dbb91c77e02c1c14251">QCPAbstractItem</a>
, <a class="el" href="classQCPAbstractLegendItem.html#a7cb61fdfbaf69c590bacb8f9e7099d9e">QCPAbstractLegendItem</a>
, <a class="el" href="classQCPAbstractPlottable.html#a3af66432b1dca93b28e00e78a8c7c1d9">QCPAbstractPlottable</a>
, <a class="el" href="classQCPAxis.html#a62b598abeee7174a05f9d542cc85b1f5">QCPAxis</a>
, <a class="el" href="classQCPLegend.html#a82c88464edac07a9eefaf3906268df3b">QCPLegend</a>
, <a class="el" href="classQCPTextElement.html#a49f45b87ee9c1fe866c2cdd12af17a9a">QCPTextElement</a>
</li>
<li>selectionChangedByUser()
: <a class="el" href="classQCustomPlot.html#a500c64a109bc773c973ad274f2fa4190">QCustomPlot</a>
</li>
<li>selectionDecorator()
: <a class="el" href="classQCPAbstractPlottable.html#a7861518e47ca0c6a0c386032c2db075e">QCPAbstractPlottable</a>
</li>
<li>selectionHitBox()
: <a class="el" href="classQCPFinancial.html#afbe9e8cb0de3e9e789a9668b29cad098">QCPFinancial</a>
</li>
<li>selectionRect()
: <a class="el" href="classQCustomPlot.html#ad7df2bcbba307e644db383b449e31efd">QCustomPlot</a>
</li>
<li>selectTest()
: <a class="el" href="classQCPAbstractItem.html#a96d522d10ffc0413b9a366c6f7f0476b">QCPAbstractItem</a>
, <a class="el" href="classQCPAbstractLegendItem.html#ac834bf9003c491e5064a31e2a7de418d">QCPAbstractLegendItem</a>
, <a class="el" href="classQCPAbstractPlottable1D.html#a071e2df66ba1746067dfcb5e27947b43">QCPAbstractPlottable1D< DataType ></a>
, <a class="el" href="classQCPAbstractPlottable.html#a38efe9641d972992a3d44204bc80ec1d">QCPAbstractPlottable</a>
, <a class="el" href="classQCPAxis.html#a48e4f1bafd1826ba2ad46b691205bb90">QCPAxis</a>
, <a class="el" href="classQCPBars.html#a62d66cc8eedca6bedfc1f6513164d418">QCPBars</a>
, <a class="el" href="classQCPColorMap.html#aba91ea58b489031157ecb777fe79e309">QCPColorMap</a>
, <a class="el" href="classQCPCurve.html#a87a9fb34a2a48dcae4c1245ada235e7d">QCPCurve</a>
, <a class="el" href="classQCPErrorBars.html#ab0d8a4695a96b6b75cc4911cfc59f519">QCPErrorBars</a>
, <a class="el" href="classQCPFinancial.html#a77bffad8f3fcbcccbef03ead1c538e3a">QCPFinancial</a>
, <a class="el" href="classQCPGraph.html#a36011c34aca4f7a477de25961e2f6c13">QCPGraph</a>
, <a class="el" href="classQCPItemBracket.html#a971299aa6fef75730d6f10efdaf48616">QCPItemBracket</a>
, <a class="el" href="classQCPItemCurve.html#a8018b8b3fc552a44ba87ca4b64c1523f">QCPItemCurve</a>
, <a class="el" href="classQCPItemEllipse.html#aa41be2180b2ace2e303b88d005c14243">QCPItemEllipse</a>
, <a class="el" href="classQCPItemLine.html#ae6cc5183f568e5fa9d7827abe4d405b5">QCPItemLine</a>
, <a class="el" href="classQCPItemPixmap.html#a7583a98ebd3f35d2ac5d6c05fad25a6c">QCPItemPixmap</a>
, <a class="el" href="classQCPItemRect.html#abe1a6091591d3bad5e4efab2331f99ec">QCPItemRect</a>
, <a class="el" href="classQCPItemStraightLine.html#a1e5d99d79efb5871600c72bcd2891a0f">QCPItemStraightLine</a>
, <a class="el" href="classQCPItemText.html#aca74494fd5e769f331a6eb3e29f32916">QCPItemText</a>
, <a class="el" href="classQCPItemTracer.html#ae1dc728384936184e7552a6d0d67fd75">QCPItemTracer</a>
, <a class="el" href="classQCPLayerable.html#a04db8351fefd44cfdb77958e75c6288e">QCPLayerable</a>
, <a class="el" href="classQCPLayoutElement.html#a0b96ae0d7bcfa6e38188fcb1e73e143f">QCPLayoutElement</a>
, <a class="el" href="classQCPLayoutInset.html#afcd56d5d1b8853838cdc535f1904f68a">QCPLayoutInset</a>
, <a class="el" href="classQCPLegend.html#acd7be544c81324e391cfa6be9c413c01">QCPLegend</a>
, <a class="el" href="classQCPStatisticalBox.html#a0153ac16326b94450afbca208e3f9961">QCPStatisticalBox</a>
, <a class="el" href="classQCPTextElement.html#a3c182fb08344c07e6cefd10e84a067a4">QCPTextElement</a>
</li>
<li>selectTestRect()
: <a class="el" href="classQCPAbstractPlottable1D.html#ac385c38a79e419ed3600c2ee398fd216">QCPAbstractPlottable1D< DataType ></a>
, <a class="el" href="classQCPBars.html#abecc6fda984974bb97c74d6858444d1a">QCPBars</a>
, <a class="el" href="classQCPErrorBars.html#ac32f9e729cb205ca56821f9b663472c0">QCPErrorBars</a>
, <a class="el" href="classQCPFinancial.html#a1ab1bff011a0da688fb2fc788c2f88e1">QCPFinancial</a>
, <a class="el" href="classQCPPlottableInterface1D.html#a67093e4ccf490ff5f7750640941ff34c">QCPPlottableInterface1D</a>
, <a class="el" href="classQCPStatisticalBox.html#af033682d9c04dab6672bfcfa484e6324">QCPStatisticalBox</a>
</li>
<li>set()
: <a class="el" href="classQCPDataContainer.html#ae7042bd534fc3ce7befa2ce3f790b5bf">QCPDataContainer< DataType ></a>
</li>
<li>setAdaptiveSampling()
: <a class="el" href="classQCPGraph.html#ab468cd600160f327836aa0644291e64c">QCPGraph</a>
</li>
<li>setAlpha()
: <a class="el" href="classQCPColorMapData.html#aaf7de5b34c58f38d8f4c1ceb064a876c">QCPColorMapData</a>
</li>
<li>setAntialiased()
: <a class="el" href="classQCPLayerable.html#a4fd43e89be4a553ead41652565ff0581">QCPLayerable</a>
</li>
<li>setAntialiasedElement()
: <a class="el" href="classQCustomPlot.html#aeef813bcf7efab8e765f9f87ec454691">QCustomPlot</a>
</li>
<li>setAntialiasedElements()
: <a class="el" href="classQCustomPlot.html#af6f91e5eab1be85f67c556e98c3745e8">QCustomPlot</a>
</li>
<li>setAntialiasedFill()
: <a class="el" href="classQCPAbstractPlottable.html#a089d6b5577120239b55c39ed27c39536">QCPAbstractPlottable</a>
</li>
<li>setAntialiasedScatters()
: <a class="el" href="classQCPAbstractPlottable.html#a2f03f067ede2ed4da6f7d0e4777a3f02">QCPAbstractPlottable</a>
</li>
<li>setAntialiasedSubGrid()
: <a class="el" href="classQCPGrid.html#a5692310ba183721a413d60951407d114">QCPGrid</a>
</li>
<li>setAntialiasedZeroLine()
: <a class="el" href="classQCPGrid.html#a3cc6d54647393ee71afb6da56af07aa4">QCPGrid</a>
</li>
<li>setAntialiasing()
: <a class="el" href="classQCPPainter.html#aaba1deb9188244d9ea65b035112b4d05">QCPPainter</a>
</li>
<li>setAutoAddPlottableToLegend()
: <a class="el" href="classQCustomPlot.html#ad8858410c2db47b7104040a3aa61c3fc">QCustomPlot</a>
</li>
<li>setAutoMargins()
: <a class="el" href="classQCPLayoutElement.html#accfda49994e3e6d51ed14504abf9d27d">QCPLayoutElement</a>
</li>
<li>setAutoSqueeze()
: <a class="el" href="classQCPDataContainer.html#a233f866760a78950d2a393c1a4bc54b5">QCPDataContainer< DataType ></a>
</li>
<li>setAxes()
: <a class="el" href="classQCPItemPosition.html#a2185f45c75ac8cb9be89daeaaad50e37">QCPItemPosition</a>
</li>
<li>setAxisRect()
: <a class="el" href="classQCPItemPosition.html#a0cd9b326fb324710169e92e8ca0041c2">QCPItemPosition</a>
</li>
<li>setBackground()
: <a class="el" href="classQCPAxisRect.html#af615ab5e52b8e0a9a0eff415b6559db5">QCPAxisRect</a>
, <a class="el" href="classQCustomPlot.html#a130358592cfca353ff3cf5571b49fb00">QCustomPlot</a>
</li>
<li>setBackgroundScaled()
: <a class="el" href="classQCPAxisRect.html#ae6d36c3e0e968ffb991170a018e7b503">QCPAxisRect</a>
, <a class="el" href="classQCustomPlot.html#a36f0fa1317325dc7b7efea615ee2de1f">QCustomPlot</a>
</li>
<li>setBackgroundScaledMode()
: <a class="el" href="classQCPAxisRect.html#a5ef77ea829c9de7ba248e473f48f7305">QCPAxisRect</a>
, <a class="el" href="classQCustomPlot.html#a4c0eb4865b7949f62e1cb97db04a3de0">QCustomPlot</a>
</li>
<li>setBarsGroup()
: <a class="el" href="classQCPBars.html#aedd1709061f0b307c47ddb45e172ef9a">QCPBars</a>
</li>
<li>setBarWidth()
: <a class="el" href="classQCPColorScale.html#ab9dcc0c1cd583477496209b1413bcb99">QCPColorScale</a>
</li>
<li>setBasePen()
: <a class="el" href="classQCPAxis.html#a778d45fb71b3c7ab3bb7079e18b058e4">QCPAxis</a>
</li>
<li>setBaseValue()
: <a class="el" href="classQCPBars.html#a574ec7eb7537566df1a28ff085d75623">QCPBars</a>
</li>
<li>setBegin()
: <a class="el" href="classQCPDataRange.html#a54ff59048e01e46ac4aefafc844626c6">QCPDataRange</a>
</li>
<li>setBorderPen()
: <a class="el" href="classQCPLegend.html#a866a9e3f5267de7430a6c7f26a61db9f">QCPLegend</a>
</li>
<li>setBracketBrush()
: <a class="el" href="classQCPSelectionDecoratorBracket.html#a2f4ea0bfb0ea980252b76dd349dd53aa">QCPSelectionDecoratorBracket</a>
</li>
<li>setBracketHeight()
: <a class="el" href="classQCPSelectionDecoratorBracket.html#aed773ad737201cca40efc6fe451acad8">QCPSelectionDecoratorBracket</a>
</li>
<li>setBracketPen()
: <a class="el" href="classQCPSelectionDecoratorBracket.html#ac0e392a6097990f8aa978932a8fa05d6">QCPSelectionDecoratorBracket</a>
</li>
<li>setBracketStyle()
: <a class="el" href="classQCPSelectionDecoratorBracket.html#a04507697438f6ad8cc2aeea5422dcbe5">QCPSelectionDecoratorBracket</a>
</li>
<li>setBracketWidth()
: <a class="el" href="classQCPSelectionDecoratorBracket.html#a291b59cab98ce93a0a3c85963fe10f5e">QCPSelectionDecoratorBracket</a>
</li>
<li>setBrush()
: <a class="el" href="classQCPAbstractPlottable.html#a7a4b92144dca6453a1f0f210e27edc74">QCPAbstractPlottable</a>
, <a class="el" href="classQCPItemEllipse.html#a49fc74e6965834e873d027d026def798">QCPItemEllipse</a>
, <a class="el" href="classQCPItemRect.html#abbd4e346a03513ee466afc25d9c75446">QCPItemRect</a>
, <a class="el" href="classQCPItemText.html#a1c7e131516df2ed8d941ef31240ded8e">QCPItemText</a>
, <a class="el" href="classQCPItemTracer.html#a2c303f7470a30084daa201ed556b3c36">QCPItemTracer</a>
, <a class="el" href="classQCPLegend.html#a497bbcd38baa3598c08e2b3f48103f23">QCPLegend</a>
, <a class="el" href="classQCPScatterStyle.html#a74d692aaeb8d4b36d6f7d510e44264b1">QCPScatterStyle</a>
, <a class="el" href="classQCPSelectionDecorator.html#aa74b626be518ea17055f918d423c8c2d">QCPSelectionDecorator</a>
, <a class="el" href="classQCPSelectionRect.html#ab0c66f1484418782efa01f4153611080">QCPSelectionRect</a>
</li>
<li>setBrushNegative()
: <a class="el" href="classQCPFinancial.html#a8bbdd87629f9144b3ef51af660c0961a">QCPFinancial</a>
</li>
<li>setBrushPositive()
: <a class="el" href="classQCPFinancial.html#a5ebff2b1764efd07cc44942e67821829">QCPFinancial</a>
</li>
<li>setBufferDevicePixelRatio()
: <a class="el" href="classQCustomPlot.html#a159162653ad6f8b8bf21263ba5787215">QCustomPlot</a>
</li>
<li>setCell()
: <a class="el" href="classQCPColorMapData.html#a8e75eaf8746596319032a93f3d2d0683">QCPColorMapData</a>
</li>
<li>setChannelFillGraph()
: <a class="el" href="classQCPGraph.html#a2d03156df1b64037a2e36cfa50351ca3">QCPGraph</a>
</li>
<li>setChartStyle()
: <a class="el" href="classQCPFinancial.html#a5a59175d36279d71596e64d7bb65596f">QCPFinancial</a>
</li>
<li>setClipAxisRect()
: <a class="el" href="classQCPAbstractItem.html#a7dc75fcbcd10206fe0b75d757ea7a347">QCPAbstractItem</a>
</li>
<li>setClipToAxisRect()
: <a class="el" href="classQCPAbstractItem.html#a39e05b9d4176b9accafc746d16ca6a06">QCPAbstractItem</a>
</li>
<li>setColor()
: <a class="el" href="classQCPItemText.html#aa51efc0841fe52da9eaf8aff6fc8a8b2">QCPItemText</a>
</li>
<li>setColorInterpolation()
: <a class="el" href="classQCPColorGradient.html#aa13fda86406e1d896a465a409ae63b38">QCPColorGradient</a>
</li>
<li>setColorScale()
: <a class="el" href="classQCPColorMap.html#aa828921db364fe3c6af4619580ab85fd">QCPColorMap</a>
</li>
<li>setColorStopAt()
: <a class="el" href="classQCPColorGradient.html#a3b48be5e78079db1bb2a1188a4c3390e">QCPColorGradient</a>
</li>
<li>setColorStops()
: <a class="el" href="classQCPColorGradient.html#a724e828aa6f0ba5011a9392477c35d3a">QCPColorGradient</a>
</li>
<li>setColumnSpacing()
: <a class="el" href="classQCPLayoutGrid.html#a3a49272aba32bb0fddc3bb2a45a3dba0">QCPLayoutGrid</a>
</li>
<li>setColumnStretchFactor()
: <a class="el" href="classQCPLayoutGrid.html#ae38f31a71687b9d7ee3104852528fb50">QCPLayoutGrid</a>
</li>
<li>setColumnStretchFactors()
: <a class="el" href="classQCPLayoutGrid.html#a6c2591d1a7e2534ce036989543b49e57">QCPLayoutGrid</a>
</li>
<li>setCoords()
: <a class="el" href="classQCPItemPosition.html#aa988ba4e87ab684c9021017dcaba945f">QCPItemPosition</a>
</li>
<li>setCurrentLayer()
: <a class="el" href="classQCustomPlot.html#a73a6dc47c653bb6f8f030abca5a11852">QCustomPlot</a>
</li>
<li>setCustomPath()
: <a class="el" href="classQCPScatterStyle.html#a96a3e949f90b2afe5677ca9412a12a1e">QCPScatterStyle</a>
</li>
<li>setData()
: <a class="el" href="classQCPBars.html#a6dc562ec7120a8521e1061f2134367e4">QCPBars</a>
, <a class="el" href="classQCPColorMap.html#a5a23e133a20c4ccad35fd32e6c0f9809">QCPColorMap</a>
, <a class="el" href="classQCPColorMapData.html#afd2083ccfd6987ec94aa7ef8e91ca39a">QCPColorMapData</a>
, <a class="el" href="classQCPCurve.html#a41246850d2e080bc57183ca19cd4135e">QCPCurve</a>
, <a class="el" href="classQCPErrorBars.html#a92b1980003255f5f7c05407a4d92aabc">QCPErrorBars</a>
, <a class="el" href="classQCPFinancial.html#a72089e75b8a50d18097526c3c79fdb85">QCPFinancial</a>
, <a class="el" href="classQCPGraph.html#a1eae9429a316b008e2d99b2d65a54395">QCPGraph</a>
, <a class="el" href="classQCPStatisticalBox.html#a08a6da55822bad825ee25a8069b9b52f">QCPStatisticalBox</a>
</li>
<li>setDataPlottable()
: <a class="el" href="classQCPErrorBars.html#aabb42a964cfbf780cd1c79850c7cd989">QCPErrorBars</a>
</li>
<li>setDataRange()
: <a class="el" href="classQCPColorMap.html#a980b42837821159786a85b4b7dcb8774">QCPColorMap</a>
, <a class="el" href="classQCPColorScale.html#abe88633003a26d1e756aa74984587fef">QCPColorScale</a>
</li>
<li>setDataScaleType()
: <a class="el" href="classQCPColorMap.html#a9d20aa08e3c1f20f22908c45b9c06511">QCPColorMap</a>
, <a class="el" href="classQCPColorScale.html#aeb6107d67dd7325145b2498abae67fc3">QCPColorScale</a>
</li>
<li>setDateTimeFormat()
: <a class="el" href="classQCPAxisTickerDateTime.html#ad52660a82f688395468674d555f6a86b">QCPAxisTickerDateTime</a>
</li>
<li>setDateTimeSpec()
: <a class="el" href="classQCPAxisTickerDateTime.html#afbd987c7197e42ab61e67fb1c38abebc">QCPAxisTickerDateTime</a>
</li>
<li>setDevicePixelRatio()
: <a class="el" href="classQCPAbstractPaintBuffer.html#a555eaad5d5c806420ff35602a1bb68fa">QCPAbstractPaintBuffer</a>
</li>
<li>setEnd()
: <a class="el" href="classQCPDataRange.html#a277f1a9eafe70b9184d9c00b641ae5de">QCPDataRange</a>
</li>
<li>setErrorType()
: <a class="el" href="classQCPErrorBars.html#af0af493d454a8f3a0908830160680d2b">QCPErrorBars</a>
</li>
<li>setFieldWidth()
: <a class="el" href="classQCPAxisTickerTime.html#adc13e54fc969be98a5c0e3fa0dbaa293">QCPAxisTickerTime</a>
</li>
<li>setFillOrder()
: <a class="el" href="classQCPLayoutGrid.html#affc2f3cfd22f28698c5b29b960d2a391">QCPLayoutGrid</a>
</li>
<li>setFont()
: <a class="el" href="classQCPAbstractLegendItem.html#a409c53455d8112f71d70c0c43eb10265">QCPAbstractLegendItem</a>
, <a class="el" href="classQCPItemText.html#a94ad60ebe04f5c07c35e7c2029e96b1f">QCPItemText</a>
, <a class="el" href="classQCPLegend.html#aa4cda8499e3cb0f3be415edc02984c73">QCPLegend</a>
, <a class="el" href="classQCPTextElement.html#a09b3241769528fa87cb4bf35c97defad">QCPTextElement</a>
</li>
<li>setFractionStyle()
: <a class="el" href="classQCPAxisTickerPi.html#a760c8af6ca68178e607556c4e5049d71">QCPAxisTickerPi</a>
</li>
<li>setFromOther()
: <a class="el" href="classQCPScatterStyle.html#a7d59ba8864914f765817841089e436f1">QCPScatterStyle</a>
</li>
<li>setGradient()
: <a class="el" href="classQCPColorMap.html#a7313c78360471cead3576341a2c50377">QCPColorMap</a>
, <a class="el" href="classQCPColorScale.html#a1f29583bb6f1e7f473b62fb712be3940">QCPColorScale</a>
</li>
<li>setGraph()
: <a class="el" href="classQCPItemTracer.html#af5886f4ded8dd68cb4f3388f390790c0">QCPItemTracer</a>
</li>
<li>setGraphKey()
: <a class="el" href="classQCPItemTracer.html#a6840143b42f3b685cedf7c6d83a704c8">QCPItemTracer</a>
</li>
<li>setHead()
: <a class="el" href="classQCPItemCurve.html#a08a30d9cdd63995deea3d9e20430676f">QCPItemCurve</a>
, <a class="el" href="classQCPItemLine.html#aebf3d687114d584e0459db6759e2c3c3">QCPItemLine</a>
</li>
<li>setIconBorderPen()
: <a class="el" href="classQCPLegend.html#a2f2c93d18a651f4ff294bb3f026f49b8">QCPLegend</a>
</li>
<li>setIconSize()
: <a class="el" href="classQCPLegend.html#a8b0740cce488bf7010da6beda6898984">QCPLegend</a>
</li>
<li>setIconTextPadding()
: <a class="el" href="classQCPLegend.html#a62973bd69d5155e8ea3141366e8968f6">QCPLegend</a>
</li>
<li>setInsetAlignment()
: <a class="el" href="classQCPLayoutInset.html#a62882a4f9ad58bb0f53da12fde022abe">QCPLayoutInset</a>
</li>
<li>setInsetPlacement()
: <a class="el" href="classQCPLayoutInset.html#a63298830744d5d8c5345511c00fd2144">QCPLayoutInset</a>
</li>
<li>setInsetRect()
: <a class="el" href="classQCPLayoutInset.html#aa487c8378a6f9533567a2e6430099dc3">QCPLayoutInset</a>
</li>
<li>setInteraction()
: <a class="el" href="classQCustomPlot.html#a422bf1bc6d56dac75a3d805d9a65902c">QCustomPlot</a>
</li>
<li>setInteractions()
: <a class="el" href="classQCustomPlot.html#a5ee1e2f6ae27419deca53e75907c27e5">QCustomPlot</a>
</li>
<li>setInterpolate()
: <a class="el" href="classQCPColorMap.html#a484eaa8a5065cfc386b15375bf98b964">QCPColorMap</a>
</li>
<li>setInterpolating()
: <a class="el" href="classQCPItemTracer.html#a6c244a9d1175bef12b50afafd4f5fcd2">QCPItemTracer</a>
</li>
<li>setInvalidated()
: <a class="el" href="classQCPAbstractPaintBuffer.html#ae4c7dc70dfc66be2879ce297b2b3d67f">QCPAbstractPaintBuffer</a>
</li>
<li>setInverted()
: <a class="el" href="classQCPLineEnding.html#a580e4e2360b35ebb8d68f3494aa2335d">QCPLineEnding</a>
</li>
<li>setKeyAxis()
: <a class="el" href="classQCPAbstractPlottable.html#a8524fa2994c63c0913ebd9bb2ffa3920">QCPAbstractPlottable</a>
</li>
<li>setKeyRange()
: <a class="el" href="classQCPColorMapData.html#a0738c485f3c9df9ea1241b7a8bb6a86e">QCPColorMapData</a>
</li>
<li>setKeySize()
: <a class="el" href="classQCPColorMapData.html#ac7ef70e383aface34b44dbde49234b6b">QCPColorMapData</a>
</li>
<li>setLabel()
: <a class="el" href="classQCPAxis.html#a33bcc382c111c9f31bb0687352a2dea4">QCPAxis</a>
, <a class="el" href="classQCPColorScale.html#aee124ae8396320cacf8276e9a0fbb8ce">QCPColorScale</a>
</li>
<li>setLabelColor()
: <a class="el" href="classQCPAxis.html#a6c906fe56d75f0122335b9f79b999608">QCPAxis</a>
</li>
<li>setLabelFont()
: <a class="el" href="classQCPAxis.html#a71ac1a47f7547e490a8c4311d1433cf3">QCPAxis</a>
</li>
<li>setLabelPadding()
: <a class="el" href="classQCPAxis.html#a4391192a766e5d20cfe5cbc17607a7a2">QCPAxis</a>
</li>
<li>setLayer()
: <a class="el" href="classQCPLayerable.html#ab0d0da6d2de45a118886d2c8e16d5a54">QCPLayerable</a>
</li>
<li>setLength()
: <a class="el" href="classQCPItemBracket.html#ac7cfc3da7da9b5c5ac5dfbe4f0351b2a">QCPItemBracket</a>
, <a class="el" href="classQCPLineEnding.html#ae36fa01763751cd64b7f56c3507e935a">QCPLineEnding</a>
</li>
<li>setLevelCount()
: <a class="el" href="classQCPColorGradient.html#a18da587eb4f7fc788ea28ba15b6a12de">QCPColorGradient</a>
</li>
<li>setLineStyle()
: <a class="el" href="classQCPCurve.html#a4a377ec863ff81a1875c3094a6177c19">QCPCurve</a>
, <a class="el" href="classQCPGraph.html#a513fecccff5b2a50ce53f665338c60ff">QCPGraph</a>
</li>
<li>setLogBase()
: <a class="el" href="classQCPAxisTickerLog.html#ac6e3b4e03baea3816f898869ab9751ef">QCPAxisTickerLog</a>
</li>
<li>setLowerEnding()
: <a class="el" href="classQCPAxis.html#a08af1c72db9ae4dc8cb8a973d44405ab">QCPAxis</a>
</li>
<li>setMarginGroup()
: <a class="el" href="classQCPLayoutElement.html#a516e56f76b6bc100e8e71d329866847d">QCPLayoutElement</a>
</li>
<li>setMargins()
: <a class="el" href="classQCPLayoutElement.html#a8f450b1f3f992ad576fce2c63d8b79cf">QCPLayoutElement</a>
</li>
<li>setMaximumSize()
: <a class="el" href="classQCPLayoutElement.html#a74eb5280a737ab44833d506db65efd95">QCPLayoutElement</a>
</li>
<li>setMedianPen()
: <a class="el" href="classQCPStatisticalBox.html#a7260ac55b669f5d0a74f16d5ca84c52c">QCPStatisticalBox</a>
</li>
<li>setMinimumMargins()
: <a class="el" href="classQCPLayoutElement.html#a0a8a17abc16b7923159fcc7608f94673">QCPLayoutElement</a>
</li>
<li>setMinimumSize()
: <a class="el" href="classQCPLayoutElement.html#a5dd29a3c8bc88440c97c06b67be7886b">QCPLayoutElement</a>
</li>
<li>setMode()
: <a class="el" href="classQCPLayer.html#a938d57b04f4e4c23cedf1711f983919b">QCPLayer</a>
, <a class="el" href="classQCPPainter.html#af6b1f7d2bbc548b10aa55d8b6ad49577">QCPPainter</a>
</li>
<li>setModes()
: <a class="el" href="classQCPPainter.html#a5fac93adc29c7c4dea9f3e171e9e635e">QCPPainter</a>
</li>
<li>setMultiSelectModifier()
: <a class="el" href="classQCustomPlot.html#a8fc96e3b5138a06759a2a90c166df516">QCustomPlot</a>
</li>
<li>setName()
: <a class="el" href="classQCPAbstractPlottable.html#ab79c7ba76bc7fa89a4b3580e12149f1f">QCPAbstractPlottable</a>
</li>
<li>setNoAntialiasingOnDrag()
: <a class="el" href="classQCustomPlot.html#a775bdcb6329d44701aeaa6135b0e5265">QCustomPlot</a>
</li>
<li>setNotAntialiasedElement()
: <a class="el" href="classQCustomPlot.html#afc657938a707c890e449ae89203a076d">QCustomPlot</a>
</li>
<li>setNotAntialiasedElements()
: <a class="el" href="classQCustomPlot.html#ae10d685b5eabea2999fb8775ca173c24">QCustomPlot</a>
</li>
<li>setNumberFormat()
: <a class="el" href="classQCPAxis.html#ae585a54dc2aac662e90a2ca82f002590">QCPAxis</a>
</li>
<li>setNumberPrecision()
: <a class="el" href="classQCPAxis.html#a21dc8023ad7500382ad9574b48137e63">QCPAxis</a>
</li>
<li>setOffset()
: <a class="el" href="classQCPAxis.html#a04a652603cbe50eba9969ee6d68873c3">QCPAxis</a>
</li>
<li>setOpenGl()
: <a class="el" href="classQCustomPlot.html#a7db1adc09016329f3aef7c60da935789">QCustomPlot</a>
</li>
<li>setOuterRect()
: <a class="el" href="classQCPLayoutElement.html#a38975ea13e36de8e53391ce41d94bc0f">QCPLayoutElement</a>
</li>
<li>setOutlierStyle()
: <a class="el" href="classQCPStatisticalBox.html#ad5241943422eb8e58360a97e99ad6aa7">QCPStatisticalBox</a>
</li>
<li>setPadding()
: <a class="el" href="classQCPAxis.html#a5691441cb3de9e9844855d339c0db279">QCPAxis</a>
, <a class="el" href="classQCPItemText.html#aeea8a3e01f135f9dd0bb08f51db66310">QCPItemText</a>
</li>
<li>setParentAnchor()
: <a class="el" href="classQCPItemPosition.html#ac094d67a95d2dceafa0d50b9db3a7e51">QCPItemPosition</a>
</li>
<li>setParentAnchorX()
: <a class="el" href="classQCPItemPosition.html#add71461a973927c74e42179480916d9c">QCPItemPosition</a>
</li>
<li>setParentAnchorY()
: <a class="el" href="classQCPItemPosition.html#add5ec1db9d19cec58a3b5c9e0a0c3f9d">QCPItemPosition</a>
</li>
<li>setParentLayerable()
: <a class="el" href="classQCPLayerable.html#aa23c893671f1f6744ac235cf2204cf3a">QCPLayerable</a>
</li>
<li>setPen()
: <a class="el" href="classQCPAbstractPlottable.html#ab74b09ae4c0e7e13142fe4b5bf46cac7">QCPAbstractPlottable</a>
, <a class="el" href="classQCPGrid.html#aa05ab9816ffb440908171e45e833b593">QCPGrid</a>
, <a class="el" href="classQCPItemBracket.html#ab13001d9cc5d8f9e56ea15bdda682acb">QCPItemBracket</a>
, <a class="el" href="classQCPItemCurve.html#a034be908440aec785c34b92843461221">QCPItemCurve</a>
, <a class="el" href="classQCPItemEllipse.html#adb81a663ed2420fcfa011e49f678d1a6">QCPItemEllipse</a>
, <a class="el" href="classQCPItemLine.html#a572528dab61c1abe205822fbd5db4b27">QCPItemLine</a>
, <a class="el" href="classQCPItemPixmap.html#acdade1305edb4b5cae14f97fd132065f">QCPItemPixmap</a>
, <a class="el" href="classQCPItemRect.html#a483c0da5a17e1646cd17ddea2c124e7d">QCPItemRect</a>
, <a class="el" href="classQCPItemStraightLine.html#a9f36c9c9e60d7d9ac084c80380ac8601">QCPItemStraightLine</a>
, <a class="el" href="classQCPItemText.html#a9b9ec6eea0eb0603977ff84d4c78d0a3">QCPItemText</a>
, <a class="el" href="classQCPItemTracer.html#af8048636fc1ef0152e51809b008df2ca">QCPItemTracer</a>
, <a class="el" href="classQCPPainter.html#a5c4d88f21564e156e88ef807f7cf0003">QCPPainter</a>
, <a class="el" href="classQCPScatterStyle.html#a761f1f229cc0ca4703e1e2b89f6dd1ba">QCPScatterStyle</a>
, <a class="el" href="classQCPSelectionDecorator.html#ac2c8192e1e294aa3a4a7f32a859e3d76">QCPSelectionDecorator</a>
, <a class="el" href="classQCPSelectionRect.html#ada20b7fb1b2dcbe50523262636b06963">QCPSelectionRect</a>
</li>
<li>setPenNegative()
: <a class="el" href="classQCPFinancial.html#afe5c07e94ccea01a75b3a2476993c346">QCPFinancial</a>
</li>
<li>setPenPositive()
: <a class="el" href="classQCPFinancial.html#ac58aa3adc7a35aab0088764b840683e5">QCPFinancial</a>
</li>
<li>setPeriodic()
: <a class="el" href="classQCPColorGradient.html#a39d6448155fc00a219f239220d14bb39">QCPColorGradient</a>
</li>
<li>setPeriodicity()
: <a class="el" href="classQCPAxisTickerPi.html#a58f538dc01860fb56e46970e28a87f03">QCPAxisTickerPi</a>
</li>
<li>setPiSymbol()
: <a class="el" href="classQCPAxisTickerPi.html#acfdcd4758a393bde4be12a50fb2017b5">QCPAxisTickerPi</a>
</li>
<li>setPiValue()
: <a class="el" href="classQCPAxisTickerPi.html#a36ce0651d2ec92edd36feac1619c2468">QCPAxisTickerPi</a>
</li>
<li>setPixelPosition()
: <a class="el" href="classQCPItemPosition.html#a8d4f858f2089973967cf9cb81970ef0a">QCPItemPosition</a>
</li>
<li>setPixmap()
: <a class="el" href="classQCPItemPixmap.html#a726b69ea4025edf48f9b29b6450548a7">QCPItemPixmap</a>
, <a class="el" href="classQCPScatterStyle.html#a5fb611d46acfac520d7b89a1c71d9246">QCPScatterStyle</a>
</li>
<li>setPlottingHint()
: <a class="el" href="classQCustomPlot.html#a3b7c97bb6c16464e9e15190c07abe9a9">QCustomPlot</a>
</li>
<li>setPlottingHints()
: <a class="el" href="classQCustomPlot.html#a94a33cbdadbbac5934843508bcfc210d">QCustomPlot</a>
</li>
<li>setPositionAlignment()
: <a class="el" href="classQCPItemText.html#a781cdf8c640fc6a055dcff1e675c8c7a">QCPItemText</a>
</li>
<li>setRange()
: <a class="el" href="classQCPAxis.html#aebdfea5d44c3a0ad2b4700cd4d25b641">QCPAxis</a>
, <a class="el" href="classQCPColorMapData.html#aad9c1c7c703c1339489fc730517c83d4">QCPColorMapData</a>
</li>
<li>setRangeDrag()
: <a class="el" href="classQCPAxisRect.html#ae6aef2f7211ba6097c925dcd26008418">QCPAxisRect</a>
, <a class="el" href="classQCPColorScale.html#a21c51a55e4fd581b6feadca9ee5b38d5">QCPColorScale</a>
</li>
<li>setRangeDragAxes()
: <a class="el" href="classQCPAxisRect.html#a648cce336bd99daac4a5ca3e5743775d">QCPAxisRect</a>
</li>
<li>setRangeLower()
: <a class="el" href="classQCPAxis.html#afcf51227d337db28d1a9ce9a4d1bc91a">QCPAxis</a>
</li>
<li>setRangeReversed()
: <a class="el" href="classQCPAxis.html#a2172fdb196b1a0dc3f40992fcad8e9e1">QCPAxis</a>
</li>
<li>setRangeUpper()
: <a class="el" href="classQCPAxis.html#acd3ca1247aa867b540cd5ec30ccd3bef">QCPAxis</a>
</li>
<li>setRangeZoom()
: <a class="el" href="classQCPAxisRect.html#a7960a9d222f1c31d558b064b60f86a31">QCPAxisRect</a>
, <a class="el" href="classQCPColorScale.html#a96bd60fb6317ad6821841b539c93eeeb">QCPColorScale</a>
</li>
<li>setRangeZoomAxes()
: <a class="el" href="classQCPAxisRect.html#a9442cca2aa358405f39a64d51eca13d2">QCPAxisRect</a>
</li>
<li>setRangeZoomFactor()
: <a class="el" href="classQCPAxisRect.html#a895d7ac745ea614e04056244b3c138ac">QCPAxisRect</a>
</li>
<li>setRotation()
: <a class="el" href="classQCPItemText.html#a4bcc10cd97952c3f749d75824b5077f0">QCPItemText</a>
</li>
<li>setRowSpacing()
: <a class="el" href="classQCPLayoutGrid.html#aaef2cd2d456197ee06a208793678e436">QCPLayoutGrid</a>
</li>
<li>setRowStretchFactor()
: <a class="el" href="classQCPLayoutGrid.html#a7b0273de5369bd93d942edbaf5b166ec">QCPLayoutGrid</a>
</li>
<li>setRowStretchFactors()
: <a class="el" href="classQCPLayoutGrid.html#a200b45f9c908f96ebadaa3c8d87a2782">QCPLayoutGrid</a>
</li>
<li>setScaled()
: <a class="el" href="classQCPItemPixmap.html#ab4d44529a1c6c8d37d0ea7560e042777">QCPItemPixmap</a>
</li>
<li>setScaleRatio()
: <a class="el" href="classQCPAxis.html#af4bbd446dcaee5a83ac30ce9bcd6e125">QCPAxis</a>
</li>
<li>setScaleStrategy()
: <a class="el" href="classQCPAxisTickerFixed.html#acbc7c9bcd80b3dc3edee5f0519d301f6">QCPAxisTickerFixed</a>
</li>
<li>setScaleType()
: <a class="el" href="classQCPAxis.html#adef29cae617af4f519f6c40d1a866ca6">QCPAxis</a>
</li>
<li>setScatterSkip()
: <a class="el" href="classQCPCurve.html#a97dbfecd497e972d5f2162615e6da5be">QCPCurve</a>
, <a class="el" href="classQCPGraph.html#a17cebd3196f434258abb82ba6dc443f2">QCPGraph</a>
</li>
<li>setScatterStyle()
: <a class="el" href="classQCPCurve.html#a55e43b44709bf50a35500644988aa706">QCPCurve</a>
, <a class="el" href="classQCPGraph.html#a12bd17a8ba21983163ec5d8f42a9fea5">QCPGraph</a>
, <a class="el" href="classQCPSelectionDecorator.html#ab403a613289714ff4fd4a0c0371ab116">QCPSelectionDecorator</a>
</li>
<li>setSelectable()
: <a class="el" href="classQCPAbstractItem.html#a8a8e32a55bc478b849756a78c2d87fd2">QCPAbstractItem</a>
, <a class="el" href="classQCPAbstractLegendItem.html#a9913ef48730551b696e7f98a2391c599">QCPAbstractLegendItem</a>
, <a class="el" href="classQCPAbstractPlottable.html#ac238d6e910f976f1f30d41c2bca44ac3">QCPAbstractPlottable</a>
, <a class="el" href="classQCPTextElement.html#a3c5f9b1897a036b16495ed3fb8371c55">QCPTextElement</a>
</li>
<li>setSelectableParts()
: <a class="el" href="classQCPAxis.html#a513f9b9e326c505d9bec54880031b085">QCPAxis</a>
, <a class="el" href="classQCPLegend.html#a9ce60aa8bbd89f62ae4fa83ac6c60110">QCPLegend</a>
</li>
<li>setSelected()
: <a class="el" href="classQCPAbstractItem.html#a203de94ad586cc44d16c9565f49d3378">QCPAbstractItem</a>
, <a class="el" href="classQCPAbstractLegendItem.html#a6eed93b0ab99cb3eabb043fb08179c2b">QCPAbstractLegendItem</a>
, <a class="el" href="classQCPTextElement.html#aba5521f9fb22a5f3d2f09ab37d4a1751">QCPTextElement</a>
</li>
<li>setSelectedBasePen()
: <a class="el" href="classQCPAxis.html#aeb917a909215605b95ef2be843de1ee8">QCPAxis</a>
</li>
<li>setSelectedBorderPen()
: <a class="el" href="classQCPLegend.html#a2c35d262953a25d96b6112653fbefc88">QCPLegend</a>
</li>
<li>setSelectedBrush()
: <a class="el" href="classQCPItemEllipse.html#a9693501cfaa43a099655c75bed0dab3f">QCPItemEllipse</a>
, <a class="el" href="classQCPItemRect.html#abd1792859844118dedee86223cede7af">QCPItemRect</a>
, <a class="el" href="classQCPItemText.html#a6b8377eeb2af75eb9528422671ac16cb">QCPItemText</a>
, <a class="el" href="classQCPItemTracer.html#a0f55c084980a7a312af859d3e7b558ef">QCPItemTracer</a>
, <a class="el" href="classQCPLegend.html#a875227f3219c9799464631dec5e8f1bd">QCPLegend</a>
</li>
<li>setSelectedColor()
: <a class="el" href="classQCPItemText.html#ae7ba0bdb75c897b028388e45bfd435fa">QCPItemText</a>
</li>
<li>setSelectedFont()
: <a class="el" href="classQCPAbstractLegendItem.html#a91db5aee48617a9d3206e61376807365">QCPAbstractLegendItem</a>
, <a class="el" href="classQCPItemText.html#a0be2841772f83663c4db307928b82816">QCPItemText</a>
, <a class="el" href="classQCPLegend.html#ab580a01c3c0a239374ed66c29edf5ad2">QCPLegend</a>
, <a class="el" href="classQCPTextElement.html#a0a2397a3c4ede519e16ab3e991904065">QCPTextElement</a>
</li>
<li>setSelectedIconBorderPen()
: <a class="el" href="classQCPLegend.html#ade93aabe9bcccaf9cf46cec22c658027">QCPLegend</a>
</li>
<li>setSelectedLabelColor()
: <a class="el" href="classQCPAxis.html#a5d502dec597c634f491fdd73d151c72d">QCPAxis</a>
</li>
<li>setSelectedLabelFont()
: <a class="el" href="classQCPAxis.html#a02ec2a75d4d8401eaab834fbc6803d30">QCPAxis</a>
</li>
<li>setSelectedParts()
: <a class="el" href="classQCPAxis.html#ab9d7a69277dcbed9119b3c1f25ca19c3">QCPAxis</a>
, <a class="el" href="classQCPLegend.html#a2aee309bb5c2a794b1987f3fc97f8ad8">QCPLegend</a>
</li>
<li>setSelectedPen()
: <a class="el" href="classQCPItemBracket.html#a349785c31122778a520c64891fa204c5">QCPItemBracket</a>
, <a class="el" href="classQCPItemCurve.html#a375b917669f868c5a106bf2f1ab7c26d">QCPItemCurve</a>
, <a class="el" href="classQCPItemEllipse.html#a6c542fba1dc918041c583f58a50dde99">QCPItemEllipse</a>
, <a class="el" href="classQCPItemLine.html#a3e2fec44503277e77717e9c24f87f1ea">QCPItemLine</a>
, <a class="el" href="classQCPItemPixmap.html#afc5e479e88e53740176ce77cb70dd67a">QCPItemPixmap</a>
, <a class="el" href="classQCPItemRect.html#a52a1bcb2dc753a538e406a2ba3cf21ce">QCPItemRect</a>
, <a class="el" href="classQCPItemStraightLine.html#a5c33559498d33543fa95cf0a36e851ff">QCPItemStraightLine</a>
, <a class="el" href="classQCPItemText.html#a291febe586f0da3f1c392e77bef4aa20">QCPItemText</a>
, <a class="el" href="classQCPItemTracer.html#ae1bf70db7f13f928660168cd3e5069f3">QCPItemTracer</a>
</li>
<li>setSelectedSubTickPen()
: <a class="el" href="classQCPAxis.html#a2a00a7166600155eac26843132eb9576">QCPAxis</a>
</li>
<li>setSelectedTextColor()
: <a class="el" href="classQCPAbstractLegendItem.html#a4d01d008ee1a5bfe9905b0397a421936">QCPAbstractLegendItem</a>
, <a class="el" href="classQCPLegend.html#a7674dfc7a1f30e1abd1018c0ed45e0bc">QCPLegend</a>
, <a class="el" href="classQCPTextElement.html#abaec200cae70a0eade53583defc0476d">QCPTextElement</a>
</li>
<li>setSelectedTickLabelColor()
: <a class="el" href="classQCPAxis.html#a9bdbf5e63ab15187f3a1de9440129227">QCPAxis</a>
</li>
<li>setSelectedTickLabelFont()
: <a class="el" href="classQCPAxis.html#a845ccb560b7bc5281098a5be494145f6">QCPAxis</a>
</li>
<li>setSelectedTickPen()
: <a class="el" href="classQCPAxis.html#a8360502685eb782edbf04019c9345cdc">QCPAxis</a>
</li>
<li>setSelection()
: <a class="el" href="classQCPAbstractPlottable.html#a219bc5403a9d85d3129165ec3f5ae436">QCPAbstractPlottable</a>
</li>
<li>setSelectionDecorator()
: <a class="el" href="classQCPAbstractPlottable.html#a20e266ad646f8c4a7e4631040510e5d9">QCPAbstractPlottable</a>
</li>
<li>setSelectionRect()
: <a class="el" href="classQCustomPlot.html#a0c09f96df15faa4799ad7051bb16cf33">QCustomPlot</a>
</li>
<li>setSelectionRectMode()
: <a class="el" href="classQCustomPlot.html#a810ef958ebe84db661c7288b526c0deb">QCustomPlot</a>
</li>
<li>setSelectionTolerance()
: <a class="el" href="classQCustomPlot.html#a4dc31241d7b09680950e19e5f971ed93">QCustomPlot</a>
</li>
<li>setShape()
: <a class="el" href="classQCPScatterStyle.html#a7c641c4d4c6d29cb705d3887cfce91c1">QCPScatterStyle</a>
</li>
<li>setSize()
: <a class="el" href="classQCPAbstractPaintBuffer.html#a8b68c3cd36533f1a4a23b5ce8cd66f01">QCPAbstractPaintBuffer</a>
, <a class="el" href="classQCPColorMapData.html#a0d9ff35c299d0478b682bfbcdd9c097e">QCPColorMapData</a>
, <a class="el" href="classQCPItemTracer.html#ae47fe0617f5fef5fdb766999569be10a">QCPItemTracer</a>
, <a class="el" href="classQCPScatterStyle.html#aaefdd031052892c4136129db68596e0f">QCPScatterStyle</a>
</li>
<li>setSizeConstraintRect()
: <a class="el" href="classQCPLayoutElement.html#a361666cdcc6fbfd37344cc44be746b0f">QCPLayoutElement</a>
</li>
<li>setSpacing()
: <a class="el" href="classQCPBarsGroup.html#aa553d327479d72a0c3dafcc724a190e2">QCPBarsGroup</a>
</li>
<li>setSpacingType()
: <a class="el" href="classQCPBarsGroup.html#a2c7e2d61b10594a4555b615e1fcaf49e">QCPBarsGroup</a>
</li>
<li>setStackingGap()
: <a class="el" href="classQCPBars.html#aeacf7561afb1c70284b22822b57c7bb5">QCPBars</a>
</li>
<li>setStyle()
: <a class="el" href="classQCPItemBracket.html#a612dffa2373422eef8754d690add3703">QCPItemBracket</a>
, <a class="el" href="classQCPItemTracer.html#a41a2ac4f1acd7897b4e2a2579c03204e">QCPItemTracer</a>
, <a class="el" href="classQCPLineEnding.html#a56953b9cb8ed1bed0f025c3935f16910">QCPLineEnding</a>
</li>
<li>setSubGridPen()
: <a class="el" href="classQCPGrid.html#a9edd3593f384d1f0b0202a39cef4453d">QCPGrid</a>
</li>
<li>setSubGridVisible()
: <a class="el" href="classQCPGrid.html#ad4ad6bf714ec45e08845456355a1b700">QCPGrid</a>
</li>
<li>setSubTickCount()
: <a class="el" href="classQCPAxisTickerLog.html#ad51989c798c0cfd50936d77aac57c56a">QCPAxisTickerLog</a>
, <a class="el" href="classQCPAxisTickerText.html#a8cfa50c51183c90186892eeef978d571">QCPAxisTickerText</a>
</li>
<li>setSubTickLength()
: <a class="el" href="classQCPAxis.html#ab702d6fd42fc620607435339a1c2a2e1">QCPAxis</a>
</li>
<li>setSubTickLengthIn()
: <a class="el" href="classQCPAxis.html#ac46fa2a993a9f5789540977610acf1de">QCPAxis</a>
</li>
<li>setSubTickLengthOut()
: <a class="el" href="classQCPAxis.html#a4c6dfc3963492ed72a77724012df5f23">QCPAxis</a>
</li>
<li>setSubTickPen()
: <a class="el" href="classQCPAxis.html#aede4028ae7516bd51a60618a8233f9cf">QCPAxis</a>
</li>
<li>setSubTicks()
: <a class="el" href="classQCPAxis.html#afa0ce8d4d0015ed23dcde01f8bc30106">QCPAxis</a>
</li>
<li>setSymbolGap()
: <a class="el" href="classQCPErrorBars.html#a280ee8d863d8a2630c309701d019b3de">QCPErrorBars</a>
</li>
<li>setTail()
: <a class="el" href="classQCPItemCurve.html#ac3488d8b1a6489c845dc5bff3ef71124">QCPItemCurve</a>
, <a class="el" href="classQCPItemLine.html#ac264222c3297a7efe33df9345c811a5f">QCPItemLine</a>
</li>
<li>setTangentAverage()
: <a class="el" href="classQCPSelectionDecoratorBracket.html#adb2d0876f25a77c88042b70818f1d6e4">QCPSelectionDecoratorBracket</a>
</li>
<li>setTangentToData()
: <a class="el" href="classQCPSelectionDecoratorBracket.html#a93bc6086e53a5e40a08641a7b2e2cdd5">QCPSelectionDecoratorBracket</a>
</li>
<li>setText()
: <a class="el" href="classQCPItemText.html#a3dacdda0ac88f99a05b333b977c48747">QCPItemText</a>
, <a class="el" href="classQCPTextElement.html#ac44b81e69e719b879eb2feecb33557e2">QCPTextElement</a>
</li>
<li>setTextAlignment()
: <a class="el" href="classQCPItemText.html#ab5bc0684c4d1bed81949a11b34dba478">QCPItemText</a>
</li>
<li>setTextColor()
: <a class="el" href="classQCPAbstractLegendItem.html#a6ebace6aaffaedcdab2d74e88acc2d1e">QCPAbstractLegendItem</a>
, <a class="el" href="classQCPLegend.html#ae1eb239ff4a4632fe1b6c3e668d845c6">QCPLegend</a>
, <a class="el" href="classQCPTextElement.html#a4f3b8361c3ffb3f84346954929ce93ba">QCPTextElement</a>
</li>
<li>setTextFlags()
: <a class="el" href="classQCPTextElement.html#ab908f437f552020888a3ad8cf8242605">QCPTextElement</a>
</li>
<li>setTickCount()
: <a class="el" href="classQCPAxisTicker.html#a47752abba8293e6dc18491501ae34008">QCPAxisTicker</a>
</li>
<li>setTicker()
: <a class="el" href="classQCPAxis.html#a4ee03fcd2c74d05cd1a419b9af5cfbdc">QCPAxis</a>
</li>
<li>setTickLabelColor()
: <a class="el" href="classQCPAxis.html#a395e445c3fe496b935bee7b911ecfd1c">QCPAxis</a>
</li>
<li>setTickLabelFont()
: <a class="el" href="classQCPAxis.html#a2b8690c4e8dbc39d9185d2b398ce7a6c">QCPAxis</a>
</li>
<li>setTickLabelPadding()
: <a class="el" href="classQCPAxis.html#af302c479af9dbc2e9f0e44e07c0012ee">QCPAxis</a>
</li>
<li>setTickLabelRotation()
: <a class="el" href="classQCPAxis.html#a1bddd4413df8a576b7ad4b067fb33375">QCPAxis</a>
</li>
<li>setTickLabels()
: <a class="el" href="classQCPAxis.html#a04ba16e1f6f78d70f938519576ed32c8">QCPAxis</a>
</li>
<li>setTickLabelSide()
: <a class="el" href="classQCPAxis.html#a13ec644fc6e22715744c92c6dfa4f0fa">QCPAxis</a>
</li>
<li>setTickLength()
: <a class="el" href="classQCPAxis.html#a62ec40bebe3540e9c1479a8fd2be3b0d">QCPAxis</a>
</li>
<li>setTickLengthIn()
: <a class="el" href="classQCPAxis.html#afae1a37a99611366275a51204d991739">QCPAxis</a>
</li>
<li>setTickLengthOut()
: <a class="el" href="classQCPAxis.html#a3b8a0debd1ffedd2c22d0592dfbb4e62">QCPAxis</a>
</li>
<li>setTickOrigin()
: <a class="el" href="classQCPAxisTicker.html#ab509c7e500293bf66a8409f0d7c23943">QCPAxisTicker</a>
, <a class="el" href="classQCPAxisTickerDateTime.html#a2ea905872b8171847a49a5e093fb0c48">QCPAxisTickerDateTime</a>
</li>
<li>setTickPen()
: <a class="el" href="classQCPAxis.html#ad80923bcc1c5da4c4db602c5325e797e">QCPAxis</a>
</li>
<li>setTicks()
: <a class="el" href="classQCPAxis.html#ac891409315bc379e3b1abdb162c1a011">QCPAxis</a>
, <a class="el" href="classQCPAxisTickerText.html#a686f38f358a0cf2d9309c84c22581d9b">QCPAxisTickerText</a>
</li>
<li>setTickStep()
: <a class="el" href="classQCPAxisTickerFixed.html#a4bc83d85a4f81d4abdd3fa5042d7b833">QCPAxisTickerFixed</a>
</li>
<li>setTickStepStrategy()
: <a class="el" href="classQCPAxisTicker.html#a73b1d847c1a12159af6bfda4ebebe7d5">QCPAxisTicker</a>
</li>
<li>setTightBoundary()
: <a class="el" href="classQCPColorMap.html#ad03221cc285e5f562a0b13d684b5576d">QCPColorMap</a>
</li>
<li>setTimeFormat()
: <a class="el" href="classQCPAxisTickerTime.html#a2f30b6e5125bce4256be9ce3177088ea">QCPAxisTickerTime</a>
</li>
<li>setTwoColored()
: <a class="el" href="classQCPFinancial.html#a138e44aac160a17a9676652e240c5f08">QCPFinancial</a>
</li>
<li>setType()
: <a class="el" href="classQCPColorScale.html#a1bf9bdb291927c422dd66b404b206f1f">QCPColorScale</a>
, <a class="el" href="classQCPItemPosition.html#aa476abf71ed8fa4c537457ebb1a754ad">QCPItemPosition</a>
</li>
<li>setTypeX()
: <a class="el" href="classQCPItemPosition.html#a2113b2351d6d00457fb3559a4e20c3ea">QCPItemPosition</a>
</li>
<li>setTypeY()
: <a class="el" href="classQCPItemPosition.html#ac2a454aa5a54c1615c50686601ec4510">QCPItemPosition</a>
</li>
<li>setupFullAxesBox()
: <a class="el" href="classQCPAxisRect.html#a5fa906175447b14206954f77fc7f1ef4">QCPAxisRect</a>
</li>
<li>setupOpenGl()
: <a class="el" href="classQCustomPlot.html#a8954c4667c51070ff4e9b02d858fd190">QCustomPlot</a>
</li>
<li>setupPaintBuffers()
: <a class="el" href="classQCustomPlot.html#a2685341f7242c3882f4cc5e379308d71">QCustomPlot</a>
</li>
<li>setUpperEnding()
: <a class="el" href="classQCPAxis.html#a69119b892fc306f651763596685aa377">QCPAxis</a>
</li>
<li>setupTickVectors()
: <a class="el" href="classQCPAxis.html#a57d9e961bae7d62f5b4e1f143e660c78">QCPAxis</a>
</li>
<li>setUsedScatterProperties()
: <a class="el" href="classQCPSelectionDecorator.html#a808c1607cd4e83869c04986e332455c0">QCPSelectionDecorator</a>
</li>
<li>setValueAxis()
: <a class="el" href="classQCPAbstractPlottable.html#a71626a07367e241ec62ad2c34baf21cb">QCPAbstractPlottable</a>
</li>
<li>setValueRange()
: <a class="el" href="classQCPColorMapData.html#ada1b2680ba96a5f4175b6d341cf75d23">QCPColorMapData</a>
</li>
<li>setValueSize()
: <a class="el" href="classQCPColorMapData.html#a0893c9e3914513048b45e3429ffd16f2">QCPColorMapData</a>
</li>
<li>setViewport()
: <a class="el" href="classQCustomPlot.html#a3f9bc4b939dd8aaba9339fd09f273fc4">QCustomPlot</a>
</li>
<li>setVisible()
: <a class="el" href="classQCPLayer.html#ac07671f74edf6884b51a82afb2c19516">QCPLayer</a>
, <a class="el" href="classQCPLayerable.html#a3bed99ddc396b48ce3ebfdc0418744f8">QCPLayerable</a>
</li>
<li>setWhiskerAntialiased()
: <a class="el" href="classQCPStatisticalBox.html#a61bcd458fba002f72304d11319051843">QCPStatisticalBox</a>
</li>
<li>setWhiskerBarPen()
: <a class="el" href="classQCPStatisticalBox.html#aa8d3e503897788e1abf68dc74b5f147f">QCPStatisticalBox</a>
</li>
<li>setWhiskerPen()
: <a class="el" href="classQCPStatisticalBox.html#a4a5034cb3b9b040444df05ab1684620b">QCPStatisticalBox</a>
</li>
<li>setWhiskerWidth()
: <a class="el" href="classQCPErrorBars.html#ad05f6ff9e46c6047f1cd2459744b7b59">QCPErrorBars</a>
, <a class="el" href="classQCPStatisticalBox.html#adf378812446bd66f34d1f7f293d991cd">QCPStatisticalBox</a>
</li>
<li>setWidth()
: <a class="el" href="classQCPBars.html#afec6116579d44d5b706e0fa5e5332507">QCPBars</a>
, <a class="el" href="classQCPFinancial.html#a99633f8bac86a61d534ae5eeb1a3068f">QCPFinancial</a>
, <a class="el" href="classQCPLineEnding.html#a26dc020ea985a72cc25881ce2115e34e">QCPLineEnding</a>
, <a class="el" href="classQCPStatisticalBox.html#a0b62775bd67301b1eba5c785f2b26f14">QCPStatisticalBox</a>
</li>
<li>setWidthType()
: <a class="el" href="classQCPBars.html#adcaa3b41281bb2c0f7949b341592fcc0">QCPBars</a>
, <a class="el" href="classQCPFinancial.html#a204b7b710352796593a432b723e34089">QCPFinancial</a>
</li>
<li>setWrap()
: <a class="el" href="classQCPLayoutGrid.html#ab36af18d77e4428386d02970382ee598">QCPLayoutGrid</a>
</li>
<li>setX()
: <a class="el" href="classQCPVector2D.html#ab4249e6ce7bfc37be56f014c54b761ae">QCPVector2D</a>
</li>
<li>setY()
: <a class="el" href="classQCPVector2D.html#ada288019aa8cd51e3b30acfc07b461dc">QCPVector2D</a>
</li>
<li>setZeroLinePen()
: <a class="el" href="classQCPGrid.html#a209f40fdb252397b418b82d3494d8ea0">QCPGrid</a>
</li>
<li>simplify()
: <a class="el" href="classQCPDataSelection.html#a4a2fbad1a6e4d1dd26fdfdf88956f2a4">QCPDataSelection</a>
, <a class="el" href="classQCPLayout.html#a41e6ac049143866e8f8b4964efab01b2">QCPLayout</a>
, <a class="el" href="classQCPLayoutGrid.html#a08bba60e4acd20165526a8fd7f986b58">QCPLayoutGrid</a>
, <a class="el" href="classQCPLayoutInset.html#abb9eb23bf2d7c587a8abe02d065eae0a">QCPLayoutInset</a>
</li>
<li>simplifyFraction()
: <a class="el" href="classQCPAxisTickerPi.html#a0e30609aed5025d331cb61671f0115d0">QCPAxisTickerPi</a>
</li>
<li>size()
: <a class="el" href="classQCPAxisRect.html#a7a8289346eb612f422c704f8b75cf479">QCPAxisRect</a>
, <a class="el" href="classQCPBarsGroup.html#a3780ec77919cb00840207ec7a0f00dd5">QCPBarsGroup</a>
, <a class="el" href="classQCPDataContainer.html#a8e9b262c739672e13472d0d45b720258">QCPDataContainer< DataType ></a>
, <a class="el" href="classQCPDataRange.html#ac6af055e509d1b691c244954ff1c5887">QCPDataRange</a>
, <a class="el" href="classQCPRange.html#a62326e7cc4316b96df6a60813230e63f">QCPRange</a>
</li>
<li>sizeConstraintsChanged()
: <a class="el" href="classQCPLayout.html#aeac66a292f65cf7f8adf94eb92345b3e">QCPLayout</a>
</li>
<li>sizeHint()
: <a class="el" href="classQCustomPlot.html#a51601831bc7d5403d5e729347a10ba33">QCustomPlot</a>
</li>
<li>sort()
: <a class="el" href="classQCPDataContainer.html#a75da92e33063b63d6da5014683591d45">QCPDataContainer< DataType ></a>
</li>
<li>sortKey()
: <a class="el" href="classQCPBarsData.html#a107d22d84f336bf6e3c3ad0133a5d2f6">QCPBarsData</a>
, <a class="el" href="classQCPCurveData.html#a583174f2b68e01b4d545f04571f58bd0">QCPCurveData</a>
, <a class="el" href="classQCPFinancialData.html#ab378e8ef6aef482735aba69115cb442e">QCPFinancialData</a>
, <a class="el" href="classQCPGraphData.html#a5e0f37ea101eeec245d8c32a2206b204">QCPGraphData</a>
, <a class="el" href="classQCPStatisticalBoxData.html#a168100275e85935207deec86216abc88">QCPStatisticalBoxData</a>
</li>
<li>sortKeyIsMainKey()
: <a class="el" href="classQCPAbstractPlottable1D.html#a022e8905f5a667d8379493d6a037e79f">QCPAbstractPlottable1D< DataType ></a>
, <a class="el" href="classQCPBarsData.html#aebaabda335bd4c9f81bd585d16b63aa8">QCPBarsData</a>
, <a class="el" href="classQCPCurveData.html#a1b78f228e31ca40a1e69add44537918c">QCPCurveData</a>
, <a class="el" href="classQCPErrorBars.html#aa00fcef7b0cb5c54bafe32ab4b16e674">QCPErrorBars</a>
, <a class="el" href="classQCPFinancialData.html#a1121db9420a7694144f6a99b09257a5f">QCPFinancialData</a>
, <a class="el" href="classQCPGraphData.html#a1c98dfd21b82321a173db4ff860dfd21">QCPGraphData</a>
, <a class="el" href="classQCPPlottableInterface1D.html#a229e65e7ab968dd6cd0e259fa504b79d">QCPPlottableInterface1D</a>
, <a class="el" href="classQCPStatisticalBoxData.html#a4710ae44b85d4b34b13c3f9301f28c01">QCPStatisticalBoxData</a>
</li>
<li>span()
: <a class="el" href="classQCPDataSelection.html#a890f9291e0b7f065747040de5d68ff7d">QCPDataSelection</a>
</li>
<li>squeeze()
: <a class="el" href="classQCPDataContainer.html#a82fcc511def22287fc62579d0706387c">QCPDataContainer< DataType ></a>
</li>
<li>started()
: <a class="el" href="classQCPSelectionRect.html#a7b7162d19f4f2174d3644ff1a5d335aa">QCPSelectionRect</a>
</li>
<li>startPainting()
: <a class="el" href="classQCPAbstractPaintBuffer.html#a9e9f29b19c033cf02fb96f1a148463f3">QCPAbstractPaintBuffer</a>
, <a class="el" href="classQCPPaintBufferGlFbo.html#a26a67e7d30770513626e1fa56ce7e92a">QCPPaintBufferGlFbo</a>
, <a class="el" href="classQCPPaintBufferGlPbuffer.html#aa8c776394ca3de788de7485137668a60">QCPPaintBufferGlPbuffer</a>
, <a class="el" href="classQCPPaintBufferPixmap.html#a48e72ff42a22d1330ad1530658c5ce5c">QCPPaintBufferPixmap</a>
</li>
<li>startSelection()
: <a class="el" href="classQCPSelectionRect.html#a271f24cfca8bc50a0e2b4310ff90e227">QCPSelectionRect</a>
</li>
<li>stopsUseAlpha()
: <a class="el" href="classQCPColorGradient.html#a137b368ea8829a871974add6e4883c71">QCPColorGradient</a>
</li>
</ul>
</div><!-- contents -->
</body>
</html>
|