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
|
<!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 http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.14"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Qwt User's Guide: QwtPlotItem Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
$(document).ready(initResizable);
/* @license-end */</script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">Qwt User's Guide
 <span id="projectnumber">6.1.4</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.14 -->
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
var searchBox = new SearchBox("searchBox", "search",false,'Search');
/* @license-end */
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
/* @license-end */</script>
<div id="main-nav"></div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
$(document).ready(function(){initNavTree('class_qwt_plot_item.html','');});
/* @license-end */
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="header">
<div class="summary">
<a href="#pub-types">Public Types</a> |
<a href="#pub-methods">Public Member Functions</a> |
<a href="#pro-methods">Protected Member Functions</a> |
<a href="class_qwt_plot_item-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">QwtPlotItem Class Reference<span class="mlabels"><span class="mlabel">abstract</span></span></div> </div>
</div><!--header-->
<div class="contents">
<p>Base class for items on the plot canvas.
<a href="class_qwt_plot_item.html#details">More...</a></p>
<p><code>#include <<a class="el" href="qwt__plot__item_8h_source.html">qwt_plot_item.h</a>></code></p>
<div class="dynheader">
Inheritance diagram for QwtPlotItem:</div>
<div class="dyncontent">
<div class="center"><img src="class_qwt_plot_item__inherit__graph.png" border="0" usemap="#_qwt_plot_item_inherit__map" alt="Inheritance graph"/></div>
<map name="_qwt_plot_item_inherit__map" id="_qwt_plot_item_inherit__map">
<area shape="rect" id="node2" href="class_qwt_plot_grid.html" title="A class which draws a coordinate grid. " alt="" coords="169,5,263,32"/>
<area shape="rect" id="node3" href="class_qwt_plot_legend_item.html" title="A class which draws a legend inside the plot canvas. " alt="" coords="147,56,285,83"/>
<area shape="rect" id="node4" href="class_qwt_plot_marker.html" title="A class for drawing markers. " alt="" coords="161,107,271,133"/>
<area shape="rect" id="node5" href="class_qwt_plot_raster_item.html" title="A class, which displays raster data. " alt="" coords="150,157,282,184"/>
<area shape="rect" id="node7" href="class_qwt_plot_scale_item.html" title="A class which draws a scale inside the plot canvas. " alt="" coords="152,208,280,235"/>
<area shape="rect" id="node8" href="class_qwt_plot_series_item.html" title="Base class for plot items representing a series of samples. " alt="" coords="150,259,282,285"/>
<area shape="rect" id="node17" href="class_qwt_plot_shape_item.html" title="A plot item, which displays any graphical shape, that can be defined by a QPainterPath. " alt="" coords="150,309,282,336"/>
<area shape="rect" id="node18" href="class_qwt_plot_svg_item.html" title="A plot item, which displays data in Scalable Vector Graphics (SVG) format. " alt="" coords="157,360,275,387"/>
<area shape="rect" id="node19" href="class_qwt_plot_text_label.html" title="A plot item, which displays a text label. " alt="" coords="151,411,281,437"/>
<area shape="rect" id="node20" href="class_qwt_plot_zone_item.html" title="A plot item, which displays a zone. " alt="" coords="153,461,279,488"/>
<area shape="rect" id="node6" href="class_qwt_plot_spectrogram.html" title="A plot item, which displays a spectrogram. " alt="" coords="345,107,491,133"/>
<area shape="rect" id="node9" href="class_qwt_plot_abstract_bar_chart.html" title="Abstract base class for bar chart items. " alt="" coords="333,157,503,184"/>
<area shape="rect" id="node12" href="class_qwt_plot_curve.html" title="A plot item, that represents a series of points. " alt="" coords="366,208,470,235"/>
<area shape="rect" id="node13" href="class_qwt_plot_histogram.html" title="QwtPlotHistogram represents a series of samples, where an interval is associated with a value (  )..." alt="" coords="353,259,483,285"/>
<area shape="rect" id="node14" href="class_qwt_plot_interval_curve.html" title="QwtPlotIntervalCurve represents a series of samples, where each value is associated with an interval ..." alt="" coords="345,309,491,336"/>
<area shape="rect" id="node15" href="class_qwt_plot_spectro_curve.html" title="Curve that displays 3D points as dots, where the z coordinate is mapped to a color. " alt="" coords="343,360,493,387"/>
<area shape="rect" id="node16" href="class_qwt_plot_trading_curve.html" title="QwtPlotTradingCurve illustrates movements in the price of a financial instrument over time..." alt="" coords="342,411,494,437"/>
<area shape="rect" id="node10" href="class_qwt_plot_bar_chart.html" title="QwtPlotBarChart displays a series of a values as bars. " alt="" coords="564,132,685,159"/>
<area shape="rect" id="node11" href="class_qwt_plot_multi_bar_chart.html" title="QwtPlotMultiBarChart displays a series of a samples that consist each of a set of values..." alt="" coords="551,183,699,209"/>
</map>
<center><span class="legend">[<a target="top" href="graph_legend.html">legend</a>]</span></center></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:ab149ac85e233ce9cedf2f2f2af871bf3"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#ab149ac85e233ce9cedf2f2f2af871bf3">RttiValues</a> { <br />
  <a class="el" href="class_qwt_plot_item.html#ab149ac85e233ce9cedf2f2f2af871bf3af1fb53ddb320ecbf2bba00a323cf08ff">Rtti_PlotItem</a> = 0,
<a class="el" href="class_qwt_plot_item.html#ab149ac85e233ce9cedf2f2f2af871bf3af3125faa8333135a5724cc1d6c276683">Rtti_PlotGrid</a>,
<a class="el" href="class_qwt_plot_item.html#ab149ac85e233ce9cedf2f2f2af871bf3a386936d7e0186eabeb833a51cc4fb1cc">Rtti_PlotScale</a>,
<a class="el" href="class_qwt_plot_item.html#ab149ac85e233ce9cedf2f2f2af871bf3a06cd77e370cf62597501e692965e1f9c">Rtti_PlotLegend</a>,
<br />
  <a class="el" href="class_qwt_plot_item.html#ab149ac85e233ce9cedf2f2f2af871bf3a15b3819a193f24b76c78e39cb80c7789">Rtti_PlotMarker</a>,
<a class="el" href="class_qwt_plot_item.html#ab149ac85e233ce9cedf2f2f2af871bf3af51a35012ed097a762b8918cf20caa69">Rtti_PlotCurve</a>,
<a class="el" href="class_qwt_plot_item.html#ab149ac85e233ce9cedf2f2f2af871bf3a27c1741ae71fad58da835b747246015d">Rtti_PlotSpectroCurve</a>,
<a class="el" href="class_qwt_plot_item.html#ab149ac85e233ce9cedf2f2f2af871bf3a5698aa120baa6e3d3d2a6bda8a82b226">Rtti_PlotIntervalCurve</a>,
<br />
  <a class="el" href="class_qwt_plot_item.html#ab149ac85e233ce9cedf2f2f2af871bf3a4538dd66ec78ffd7ce6763f9000edcee">Rtti_PlotHistogram</a>,
<a class="el" href="class_qwt_plot_item.html#ab149ac85e233ce9cedf2f2f2af871bf3ad67d72195856e6fd8112e1b310f3acb7">Rtti_PlotSpectrogram</a>,
<a class="el" href="class_qwt_plot_item.html#ab149ac85e233ce9cedf2f2f2af871bf3a3aabc62d4c006ab40dd3e01db692ab4a">Rtti_PlotSVG</a>,
<a class="el" href="class_qwt_plot_item.html#ab149ac85e233ce9cedf2f2f2af871bf3abcd9cebf717e528cb67458abfbf622dd">Rtti_PlotTradingCurve</a>,
<br />
  <a class="el" href="class_qwt_plot_item.html#ab149ac85e233ce9cedf2f2f2af871bf3ab89eb3547903640b6cc9d0aac02ef6c3">Rtti_PlotBarChart</a>,
<a class="el" href="class_qwt_plot_item.html#ab149ac85e233ce9cedf2f2f2af871bf3a73007ac5158d0ac857af2c6dcecf2712">Rtti_PlotMultiBarChart</a>,
<a class="el" href="class_qwt_plot_item.html#ab149ac85e233ce9cedf2f2f2af871bf3af18fa4c34b44eaf43e13608c6bd7c7b7">Rtti_PlotShape</a>,
<a class="el" href="class_qwt_plot_item.html#ab149ac85e233ce9cedf2f2f2af871bf3ae6f046fd43f578ad8a59243e6e665167">Rtti_PlotTextLabel</a>,
<br />
  <a class="el" href="class_qwt_plot_item.html#ab149ac85e233ce9cedf2f2f2af871bf3a52b2ec5c64c77a36a103b329a530b606">Rtti_PlotZone</a>,
<a class="el" href="class_qwt_plot_item.html#ab149ac85e233ce9cedf2f2f2af871bf3aa60198228f57f46d4c64e4779107d0dc">Rtti_PlotUserItem</a> = 1000
<br />
}</td></tr>
<tr class="memdesc:ab149ac85e233ce9cedf2f2f2af871bf3"><td class="mdescLeft"> </td><td class="mdescRight">Runtime type information. <a href="class_qwt_plot_item.html#ab149ac85e233ce9cedf2f2f2af871bf3">More...</a><br /></td></tr>
<tr class="separator:ab149ac85e233ce9cedf2f2f2af871bf3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae0fabcdd35f4818ce5bbe019b0eed062"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#ae0fabcdd35f4818ce5bbe019b0eed062">ItemAttribute</a> { <a class="el" href="class_qwt_plot_item.html#ae0fabcdd35f4818ce5bbe019b0eed062a4e377b54bd879c60a95162b6a9e9e176">Legend</a> = 0x01,
<a class="el" href="class_qwt_plot_item.html#ae0fabcdd35f4818ce5bbe019b0eed062a9de83e2ad8a88796a36a11ef8b033a48">AutoScale</a> = 0x02,
<a class="el" href="class_qwt_plot_item.html#ae0fabcdd35f4818ce5bbe019b0eed062a56ea00cf43b862667dec2ac727307d4d">Margins</a> = 0x04
}</td></tr>
<tr class="memdesc:ae0fabcdd35f4818ce5bbe019b0eed062"><td class="mdescLeft"> </td><td class="mdescRight">Plot Item Attributes. <a href="class_qwt_plot_item.html#ae0fabcdd35f4818ce5bbe019b0eed062">More...</a><br /></td></tr>
<tr class="separator:ae0fabcdd35f4818ce5bbe019b0eed062"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:affbc42460ace9ac725fa825a3f8bfb66"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#affbc42460ace9ac725fa825a3f8bfb66">ItemInterest</a> { <a class="el" href="class_qwt_plot_item.html#affbc42460ace9ac725fa825a3f8bfb66a0d1c46890f22ef973d897ab0a9d38971">ScaleInterest</a> = 0x01,
<a class="el" href="class_qwt_plot_item.html#affbc42460ace9ac725fa825a3f8bfb66afcc4ef45e6613104ccc2b9f7988e4d22">LegendInterest</a> = 0x02
}</td></tr>
<tr class="memdesc:affbc42460ace9ac725fa825a3f8bfb66"><td class="mdescLeft"> </td><td class="mdescRight">Plot Item Interests. <a href="class_qwt_plot_item.html#affbc42460ace9ac725fa825a3f8bfb66">More...</a><br /></td></tr>
<tr class="separator:affbc42460ace9ac725fa825a3f8bfb66"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abe0e8a39aceef9a600b73e02550a9704"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#abe0e8a39aceef9a600b73e02550a9704">RenderHint</a> { <a class="el" href="class_qwt_plot_item.html#abe0e8a39aceef9a600b73e02550a9704ae0c9811915d496eaacbd749724647f13">RenderAntialiased</a> = 0x1
}</td></tr>
<tr class="memdesc:abe0e8a39aceef9a600b73e02550a9704"><td class="mdescLeft"> </td><td class="mdescRight">Render hints. <a href="class_qwt_plot_item.html#abe0e8a39aceef9a600b73e02550a9704">More...</a><br /></td></tr>
<tr class="separator:abe0e8a39aceef9a600b73e02550a9704"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af356dc13c7838c7437334e199a356764"><td class="memItemLeft" align="right" valign="top"><a id="af356dc13c7838c7437334e199a356764"></a>
typedef QFlags< <a class="el" href="class_qwt_plot_item.html#ae0fabcdd35f4818ce5bbe019b0eed062">ItemAttribute</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#af356dc13c7838c7437334e199a356764">ItemAttributes</a></td></tr>
<tr class="memdesc:af356dc13c7838c7437334e199a356764"><td class="mdescLeft"> </td><td class="mdescRight">Plot Item Attributes. <br /></td></tr>
<tr class="separator:af356dc13c7838c7437334e199a356764"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6a0c870664f074f342422859638c1228"><td class="memItemLeft" align="right" valign="top"><a id="a6a0c870664f074f342422859638c1228"></a>
typedef QFlags< <a class="el" href="class_qwt_plot_item.html#affbc42460ace9ac725fa825a3f8bfb66">ItemInterest</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#a6a0c870664f074f342422859638c1228">ItemInterests</a></td></tr>
<tr class="memdesc:a6a0c870664f074f342422859638c1228"><td class="mdescLeft"> </td><td class="mdescRight">Plot Item Interests. <br /></td></tr>
<tr class="separator:a6a0c870664f074f342422859638c1228"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a40cf900701d3a68948b00316689616d1"><td class="memItemLeft" align="right" valign="top"><a id="a40cf900701d3a68948b00316689616d1"></a>
typedef QFlags< <a class="el" href="class_qwt_plot_item.html#abe0e8a39aceef9a600b73e02550a9704">RenderHint</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#a40cf900701d3a68948b00316689616d1">RenderHints</a></td></tr>
<tr class="memdesc:a40cf900701d3a68948b00316689616d1"><td class="mdescLeft"> </td><td class="mdescRight">Render hints. <br /></td></tr>
<tr class="separator:a40cf900701d3a68948b00316689616d1"><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 Member Functions</h2></td></tr>
<tr class="memitem:a5d892ac856fb9176515c5f2d806161dc"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#a5d892ac856fb9176515c5f2d806161dc">QwtPlotItem</a> (const <a class="el" href="class_qwt_text.html">QwtText</a> &<a class="el" href="class_qwt_plot_item.html#a3abdb947d71e457de120851922de3197">title</a>=<a class="el" href="class_qwt_text.html">QwtText</a>())</td></tr>
<tr class="separator:a5d892ac856fb9176515c5f2d806161dc"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a282a1d0424a06737f80e1fe83ccf7a0c"><td class="memItemLeft" align="right" valign="top"><a id="a282a1d0424a06737f80e1fe83ccf7a0c"></a>
virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#a282a1d0424a06737f80e1fe83ccf7a0c">~QwtPlotItem</a> ()</td></tr>
<tr class="memdesc:a282a1d0424a06737f80e1fe83ccf7a0c"><td class="mdescLeft"> </td><td class="mdescRight">Destroy the <a class="el" href="class_qwt_plot_item.html" title="Base class for items on the plot canvas. ">QwtPlotItem</a>. <br /></td></tr>
<tr class="separator:a282a1d0424a06737f80e1fe83ccf7a0c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aeb2f676533ccae3436bf578824e2165e"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#aeb2f676533ccae3436bf578824e2165e">attach</a> (<a class="el" href="class_qwt_plot.html">QwtPlot</a> *<a class="el" href="class_qwt_plot_item.html#a68dc5c562bdec6ee764ddedae6acd3bf">plot</a>)</td></tr>
<tr class="memdesc:aeb2f676533ccae3436bf578824e2165e"><td class="mdescLeft"> </td><td class="mdescRight">Attach the item to a plot. <a href="#aeb2f676533ccae3436bf578824e2165e">More...</a><br /></td></tr>
<tr class="separator:aeb2f676533ccae3436bf578824e2165e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab2bbee6dbe36a5f1d0ce853ac66716a6"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#ab2bbee6dbe36a5f1d0ce853ac66716a6">detach</a> ()</td></tr>
<tr class="memdesc:ab2bbee6dbe36a5f1d0ce853ac66716a6"><td class="mdescLeft"> </td><td class="mdescRight">This method detaches a <a class="el" href="class_qwt_plot_item.html" title="Base class for items on the plot canvas. ">QwtPlotItem</a> from any <a class="el" href="class_qwt_plot.html" title="A 2-D plotting widget. ">QwtPlot</a> it has been associated with. <a href="#ab2bbee6dbe36a5f1d0ce853ac66716a6">More...</a><br /></td></tr>
<tr class="separator:ab2bbee6dbe36a5f1d0ce853ac66716a6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a68dc5c562bdec6ee764ddedae6acd3bf"><td class="memItemLeft" align="right" valign="top"><a id="a68dc5c562bdec6ee764ddedae6acd3bf"></a>
<a class="el" href="class_qwt_plot.html">QwtPlot</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#a68dc5c562bdec6ee764ddedae6acd3bf">plot</a> () const</td></tr>
<tr class="memdesc:a68dc5c562bdec6ee764ddedae6acd3bf"><td class="mdescLeft"> </td><td class="mdescRight">Return attached plot. <br /></td></tr>
<tr class="separator:a68dc5c562bdec6ee764ddedae6acd3bf"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1b74686181ab6dd5033917123c7db30f"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#a1b74686181ab6dd5033917123c7db30f">setTitle</a> (const QString &<a class="el" href="class_qwt_plot_item.html#a3abdb947d71e457de120851922de3197">title</a>)</td></tr>
<tr class="separator:a1b74686181ab6dd5033917123c7db30f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2db3214b23b78274fa6f8c0321a76839"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#a2db3214b23b78274fa6f8c0321a76839">setTitle</a> (const <a class="el" href="class_qwt_text.html">QwtText</a> &<a class="el" href="class_qwt_plot_item.html#a3abdb947d71e457de120851922de3197">title</a>)</td></tr>
<tr class="separator:a2db3214b23b78274fa6f8c0321a76839"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3abdb947d71e457de120851922de3197"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="class_qwt_text.html">QwtText</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#a3abdb947d71e457de120851922de3197">title</a> () const</td></tr>
<tr class="separator:a3abdb947d71e457de120851922de3197"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a803613b24e745834b2115ee574dda610"><td class="memItemLeft" align="right" valign="top">virtual int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#a803613b24e745834b2115ee574dda610">rtti</a> () const</td></tr>
<tr class="separator:a803613b24e745834b2115ee574dda610"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5a335be8ff488809a2cf7f4b734ad1b6"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#a5a335be8ff488809a2cf7f4b734ad1b6">setItemAttribute</a> (<a class="el" href="class_qwt_plot_item.html#ae0fabcdd35f4818ce5bbe019b0eed062">ItemAttribute</a>, bool on=true)</td></tr>
<tr class="separator:a5a335be8ff488809a2cf7f4b734ad1b6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac5ffcdbabee06b75a3cc5d863b61a69a"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#ac5ffcdbabee06b75a3cc5d863b61a69a">testItemAttribute</a> (<a class="el" href="class_qwt_plot_item.html#ae0fabcdd35f4818ce5bbe019b0eed062">ItemAttribute</a>) const</td></tr>
<tr class="separator:ac5ffcdbabee06b75a3cc5d863b61a69a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab65cbfe489ff73e32a919a0633298fb7"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#ab65cbfe489ff73e32a919a0633298fb7">setItemInterest</a> (<a class="el" href="class_qwt_plot_item.html#affbc42460ace9ac725fa825a3f8bfb66">ItemInterest</a>, bool on=true)</td></tr>
<tr class="separator:ab65cbfe489ff73e32a919a0633298fb7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8ce5dec4588f9010ffcda7c3bf661644"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#a8ce5dec4588f9010ffcda7c3bf661644">testItemInterest</a> (<a class="el" href="class_qwt_plot_item.html#affbc42460ace9ac725fa825a3f8bfb66">ItemInterest</a>) const</td></tr>
<tr class="separator:a8ce5dec4588f9010ffcda7c3bf661644"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acd023c40f659c304ded324942865edc8"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#acd023c40f659c304ded324942865edc8">setRenderHint</a> (<a class="el" href="class_qwt_plot_item.html#abe0e8a39aceef9a600b73e02550a9704">RenderHint</a>, bool on=true)</td></tr>
<tr class="separator:acd023c40f659c304ded324942865edc8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aca66d2161c8a6caf5ebef82f59770d15"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#aca66d2161c8a6caf5ebef82f59770d15">testRenderHint</a> (<a class="el" href="class_qwt_plot_item.html#abe0e8a39aceef9a600b73e02550a9704">RenderHint</a>) const</td></tr>
<tr class="separator:aca66d2161c8a6caf5ebef82f59770d15"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a188ae18fbbce9adcf259ebe2f0de1f6b"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#a188ae18fbbce9adcf259ebe2f0de1f6b">setRenderThreadCount</a> (uint numThreads)</td></tr>
<tr class="separator:a188ae18fbbce9adcf259ebe2f0de1f6b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae3651df9594cb48f8221f7b1cc7852ca"><td class="memItemLeft" align="right" valign="top">uint </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#ae3651df9594cb48f8221f7b1cc7852ca">renderThreadCount</a> () const</td></tr>
<tr class="separator:ae3651df9594cb48f8221f7b1cc7852ca"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0827dd69bf19ec0145b6cc6efad2c11b"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#a0827dd69bf19ec0145b6cc6efad2c11b">setLegendIconSize</a> (const QSize &)</td></tr>
<tr class="separator:a0827dd69bf19ec0145b6cc6efad2c11b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af516644c94b0ec799af2eb2f0d0f6893"><td class="memItemLeft" align="right" valign="top">QSize </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#af516644c94b0ec799af2eb2f0d0f6893">legendIconSize</a> () const</td></tr>
<tr class="separator:af516644c94b0ec799af2eb2f0d0f6893"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a717c27fba94fd761a2d4ec06e9dbfa21"><td class="memItemLeft" align="right" valign="top">double </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#a717c27fba94fd761a2d4ec06e9dbfa21">z</a> () const</td></tr>
<tr class="separator:a717c27fba94fd761a2d4ec06e9dbfa21"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a57d90e4146133b59d589c71b3a643e82"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#a57d90e4146133b59d589c71b3a643e82">setZ</a> (double <a class="el" href="class_qwt_plot_item.html#a717c27fba94fd761a2d4ec06e9dbfa21">z</a>)</td></tr>
<tr class="memdesc:a57d90e4146133b59d589c71b3a643e82"><td class="mdescLeft"> </td><td class="mdescRight">Set the z value. <a href="#a57d90e4146133b59d589c71b3a643e82">More...</a><br /></td></tr>
<tr class="separator:a57d90e4146133b59d589c71b3a643e82"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a93a50fb9c86bc66617e28315e02281c3"><td class="memItemLeft" align="right" valign="top"><a id="a93a50fb9c86bc66617e28315e02281c3"></a>
void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#a93a50fb9c86bc66617e28315e02281c3">show</a> ()</td></tr>
<tr class="memdesc:a93a50fb9c86bc66617e28315e02281c3"><td class="mdescLeft"> </td><td class="mdescRight">Show the item. <br /></td></tr>
<tr class="separator:a93a50fb9c86bc66617e28315e02281c3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1faea017baa2492416a13e6bc3c144aa"><td class="memItemLeft" align="right" valign="top"><a id="a1faea017baa2492416a13e6bc3c144aa"></a>
void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#a1faea017baa2492416a13e6bc3c144aa">hide</a> ()</td></tr>
<tr class="memdesc:a1faea017baa2492416a13e6bc3c144aa"><td class="mdescLeft"> </td><td class="mdescRight">Hide the item. <br /></td></tr>
<tr class="separator:a1faea017baa2492416a13e6bc3c144aa"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5f0eeb2b72207fd8d33a95b0565657a1"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#a5f0eeb2b72207fd8d33a95b0565657a1">setVisible</a> (bool)</td></tr>
<tr class="separator:a5f0eeb2b72207fd8d33a95b0565657a1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1f9e938bef95ccc7b3e026da277ea8f3"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#a1f9e938bef95ccc7b3e026da277ea8f3">isVisible</a> () const</td></tr>
<tr class="separator:a1f9e938bef95ccc7b3e026da277ea8f3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6f6c7b34fe86e8029914b3b780b55ea4"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#a6f6c7b34fe86e8029914b3b780b55ea4">setAxes</a> (int <a class="el" href="class_qwt_plot_item.html#a27a3f3e5c9983d276b071da508776481">xAxis</a>, int <a class="el" href="class_qwt_plot_item.html#a20418c1371cdb3d807a8088d6768792b">yAxis</a>)</td></tr>
<tr class="separator:a6f6c7b34fe86e8029914b3b780b55ea4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a81d3dd7feaadda4b0dbb8c13642046cf"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#a81d3dd7feaadda4b0dbb8c13642046cf">setXAxis</a> (int axis)</td></tr>
<tr class="separator:a81d3dd7feaadda4b0dbb8c13642046cf"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a27a3f3e5c9983d276b071da508776481"><td class="memItemLeft" align="right" valign="top"><a id="a27a3f3e5c9983d276b071da508776481"></a>
int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#a27a3f3e5c9983d276b071da508776481">xAxis</a> () const</td></tr>
<tr class="memdesc:a27a3f3e5c9983d276b071da508776481"><td class="mdescLeft"> </td><td class="mdescRight">Return xAxis. <br /></td></tr>
<tr class="separator:a27a3f3e5c9983d276b071da508776481"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa92dad876d76ce136925d5ae8f01db9a"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#aa92dad876d76ce136925d5ae8f01db9a">setYAxis</a> (int axis)</td></tr>
<tr class="separator:aa92dad876d76ce136925d5ae8f01db9a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a20418c1371cdb3d807a8088d6768792b"><td class="memItemLeft" align="right" valign="top"><a id="a20418c1371cdb3d807a8088d6768792b"></a>
int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#a20418c1371cdb3d807a8088d6768792b">yAxis</a> () const</td></tr>
<tr class="memdesc:a20418c1371cdb3d807a8088d6768792b"><td class="mdescLeft"> </td><td class="mdescRight">Return yAxis. <br /></td></tr>
<tr class="separator:a20418c1371cdb3d807a8088d6768792b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad956fdbce5b0721abccce6d09fe4d5ce"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#ad956fdbce5b0721abccce6d09fe4d5ce">itemChanged</a> ()</td></tr>
<tr class="separator:ad956fdbce5b0721abccce6d09fe4d5ce"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3967414c7542e267d0c2793f02be7241"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#a3967414c7542e267d0c2793f02be7241">legendChanged</a> ()</td></tr>
<tr class="separator:a3967414c7542e267d0c2793f02be7241"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0b0d6589d5db81ce72e6b33c4fbb21f9"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#a0b0d6589d5db81ce72e6b33c4fbb21f9">draw</a> (QPainter *painter, const <a class="el" href="class_qwt_scale_map.html">QwtScaleMap</a> &xMap, const <a class="el" href="class_qwt_scale_map.html">QwtScaleMap</a> &yMap, const QRectF &canvasRect) const =0</td></tr>
<tr class="memdesc:a0b0d6589d5db81ce72e6b33c4fbb21f9"><td class="mdescLeft"> </td><td class="mdescRight">Draw the item. <a href="#a0b0d6589d5db81ce72e6b33c4fbb21f9">More...</a><br /></td></tr>
<tr class="separator:a0b0d6589d5db81ce72e6b33c4fbb21f9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aebc6a6627f293f62e1d07006b11912cc"><td class="memItemLeft" align="right" valign="top">virtual QRectF </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#aebc6a6627f293f62e1d07006b11912cc">boundingRect</a> () const</td></tr>
<tr class="separator:aebc6a6627f293f62e1d07006b11912cc"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae576c06e796379f5c1fc8a37b8d84565"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#ae576c06e796379f5c1fc8a37b8d84565">getCanvasMarginHint</a> (const <a class="el" href="class_qwt_scale_map.html">QwtScaleMap</a> &xMap, const <a class="el" href="class_qwt_scale_map.html">QwtScaleMap</a> &yMap, const QRectF &canvasRect, double &left, double &top, double &right, double &bottom) const</td></tr>
<tr class="memdesc:ae576c06e796379f5c1fc8a37b8d84565"><td class="mdescLeft"> </td><td class="mdescRight">Calculate a hint for the canvas margin. <a href="#ae576c06e796379f5c1fc8a37b8d84565">More...</a><br /></td></tr>
<tr class="separator:ae576c06e796379f5c1fc8a37b8d84565"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abf6a70847d3db952161ca4d4a952eea0"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#abf6a70847d3db952161ca4d4a952eea0">updateScaleDiv</a> (const <a class="el" href="class_qwt_scale_div.html">QwtScaleDiv</a> &, const <a class="el" href="class_qwt_scale_div.html">QwtScaleDiv</a> &)</td></tr>
<tr class="memdesc:abf6a70847d3db952161ca4d4a952eea0"><td class="mdescLeft"> </td><td class="mdescRight">Update the item to changes of the axes scale division. <a href="#abf6a70847d3db952161ca4d4a952eea0">More...</a><br /></td></tr>
<tr class="separator:abf6a70847d3db952161ca4d4a952eea0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af0c4272375b1ee95a1454c4c503ff324"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#af0c4272375b1ee95a1454c4c503ff324">updateLegend</a> (const <a class="el" href="class_qwt_plot_item.html">QwtPlotItem</a> *, const QList< <a class="el" href="class_qwt_legend_data.html">QwtLegendData</a> > &)</td></tr>
<tr class="memdesc:af0c4272375b1ee95a1454c4c503ff324"><td class="mdescLeft"> </td><td class="mdescRight">Update the item to changes of the legend info. <a href="#af0c4272375b1ee95a1454c4c503ff324">More...</a><br /></td></tr>
<tr class="separator:af0c4272375b1ee95a1454c4c503ff324"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a43930f6c9bf9338130d2e098834732f4"><td class="memItemLeft" align="right" valign="top">QRectF </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#a43930f6c9bf9338130d2e098834732f4">scaleRect</a> (const <a class="el" href="class_qwt_scale_map.html">QwtScaleMap</a> &, const <a class="el" href="class_qwt_scale_map.html">QwtScaleMap</a> &) const</td></tr>
<tr class="memdesc:a43930f6c9bf9338130d2e098834732f4"><td class="mdescLeft"> </td><td class="mdescRight">Calculate the bounding scale rectangle of 2 maps. <a href="#a43930f6c9bf9338130d2e098834732f4">More...</a><br /></td></tr>
<tr class="separator:a43930f6c9bf9338130d2e098834732f4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a08deefbedf8742f4877841b2dfd85822"><td class="memItemLeft" align="right" valign="top">QRectF </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#a08deefbedf8742f4877841b2dfd85822">paintRect</a> (const <a class="el" href="class_qwt_scale_map.html">QwtScaleMap</a> &, const <a class="el" href="class_qwt_scale_map.html">QwtScaleMap</a> &) const</td></tr>
<tr class="memdesc:a08deefbedf8742f4877841b2dfd85822"><td class="mdescLeft"> </td><td class="mdescRight">Calculate the bounding paint rectangle of 2 maps. <a href="#a08deefbedf8742f4877841b2dfd85822">More...</a><br /></td></tr>
<tr class="separator:a08deefbedf8742f4877841b2dfd85822"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a367ed5160b8475daf6b5b06558310f98"><td class="memItemLeft" align="right" valign="top">virtual QList< <a class="el" href="class_qwt_legend_data.html">QwtLegendData</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#a367ed5160b8475daf6b5b06558310f98">legendData</a> () const</td></tr>
<tr class="memdesc:a367ed5160b8475daf6b5b06558310f98"><td class="mdescLeft"> </td><td class="mdescRight">Return all information, that is needed to represent the item on the legend. <a href="#a367ed5160b8475daf6b5b06558310f98">More...</a><br /></td></tr>
<tr class="separator:a367ed5160b8475daf6b5b06558310f98"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1a0d7f4328741d7396f1959e44e63412"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="class_qwt_graphic.html">QwtGraphic</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#a1a0d7f4328741d7396f1959e44e63412">legendIcon</a> (int index, const QSizeF &) const</td></tr>
<tr class="separator:a1a0d7f4328741d7396f1959e44e63412"><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 Member Functions</h2></td></tr>
<tr class="memitem:a9a86df9a56ed5fea2cee81026e45f375"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_qwt_graphic.html">QwtGraphic</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_item.html#a9a86df9a56ed5fea2cee81026e45f375">defaultIcon</a> (const QBrush &, const QSizeF &) const</td></tr>
<tr class="memdesc:a9a86df9a56ed5fea2cee81026e45f375"><td class="mdescLeft"> </td><td class="mdescRight">Return a default icon from a brush. <a href="#a9a86df9a56ed5fea2cee81026e45f375">More...</a><br /></td></tr>
<tr class="separator:a9a86df9a56ed5fea2cee81026e45f375"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p>Base class for items on the plot canvas. </p>
<p>A plot item is "something", that can be painted on the plot canvas, or only affects the scales of the plot widget. They can be categorized as:</p>
<ul>
<li>Representator<br />
A "Representator" is an item that represents some sort of data on the plot canvas. The different representator classes are organized according to the characteristics of the data:<ul>
<li><a class="el" href="class_qwt_plot_marker.html" title="A class for drawing markers. ">QwtPlotMarker</a> Represents a point or a horizontal/vertical coordinate</li>
<li><a class="el" href="class_qwt_plot_curve.html" title="A plot item, that represents a series of points. ">QwtPlotCurve</a> Represents a series of points</li>
<li><a class="el" href="class_qwt_plot_spectrogram.html" title="A plot item, which displays a spectrogram. ">QwtPlotSpectrogram</a> ( <a class="el" href="class_qwt_plot_raster_item.html" title="A class, which displays raster data. ">QwtPlotRasterItem</a> ) Represents raster data</li>
<li>...</li>
</ul>
</li>
<li>Decorators<br />
A "Decorator" is an item, that displays additional information, that is not related to any data:<ul>
<li><a class="el" href="class_qwt_plot_grid.html" title="A class which draws a coordinate grid. ">QwtPlotGrid</a></li>
<li><a class="el" href="class_qwt_plot_scale_item.html" title="A class which draws a scale inside the plot canvas. ">QwtPlotScaleItem</a></li>
<li><a class="el" href="class_qwt_plot_svg_item.html" title="A plot item, which displays data in Scalable Vector Graphics (SVG) format. ">QwtPlotSvgItem</a></li>
<li>...</li>
</ul>
</li>
</ul>
<p>Depending on the <a class="el" href="class_qwt_plot_item.html#ae0fabcdd35f4818ce5bbe019b0eed062" title="Plot Item Attributes. ">QwtPlotItem::ItemAttribute</a> flags, an item is included into autoscaling or has an entry on the legend.</p>
<p>Before misusing the existing item classes it might be better to implement a new type of plot item ( don't implement a watermark as spectrogram ). Deriving a new type of <a class="el" href="class_qwt_plot_item.html" title="Base class for items on the plot canvas. ">QwtPlotItem</a> primarily means to implement the YourPlotItem::draw() method.</p>
<dl class="section see"><dt>See also</dt><dd>The cpuplot example shows the implementation of additional <a class="el" href="class_qwt_plot_item.html#a68dc5c562bdec6ee764ddedae6acd3bf" title="Return attached plot. ">plot</a> items. </dd></dl>
</div><h2 class="groupheader">Member Enumeration Documentation</h2>
<a id="ae0fabcdd35f4818ce5bbe019b0eed062"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ae0fabcdd35f4818ce5bbe019b0eed062">◆ </a></span>ItemAttribute</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">enum <a class="el" href="class_qwt_plot_item.html#ae0fabcdd35f4818ce5bbe019b0eed062">QwtPlotItem::ItemAttribute</a></td>
</tr>
</table>
</div><div class="memdoc">
<p>Plot Item Attributes. </p>
<p>Various aspects of a plot widget depend on the attributes of the attached plot items. If and how a single plot item participates in these updates depends on its attributes.</p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="class_qwt_plot_item.html#a5a335be8ff488809a2cf7f4b734ad1b6">setItemAttribute()</a>, <a class="el" href="class_qwt_plot_item.html#ac5ffcdbabee06b75a3cc5d863b61a69a">testItemAttribute()</a>, <a class="el" href="class_qwt_plot_item.html#affbc42460ace9ac725fa825a3f8bfb66" title="Plot Item Interests. ">ItemInterest</a> </dd></dl>
<table class="fieldtable">
<tr><th colspan="2">Enumerator</th></tr><tr><td class="fieldname"><a id="ae0fabcdd35f4818ce5bbe019b0eed062a4e377b54bd879c60a95162b6a9e9e176"></a>Legend </td><td class="fielddoc"><p>The item is represented on the legend. </p>
</td></tr>
<tr><td class="fieldname"><a id="ae0fabcdd35f4818ce5bbe019b0eed062a9de83e2ad8a88796a36a11ef8b033a48"></a>AutoScale </td><td class="fielddoc"><p>The <a class="el" href="class_qwt_plot_item.html#aebc6a6627f293f62e1d07006b11912cc">boundingRect()</a> of the item is included in the autoscaling calculation as long as its width or height is >= 0.0. </p>
</td></tr>
<tr><td class="fieldname"><a id="ae0fabcdd35f4818ce5bbe019b0eed062a56ea00cf43b862667dec2ac727307d4d"></a>Margins </td><td class="fielddoc"><p>The item needs extra space to display something outside its bounding rectangle. </p><dl class="section see"><dt>See also</dt><dd><a class="el" href="class_qwt_plot_item.html#ae576c06e796379f5c1fc8a37b8d84565" title="Calculate a hint for the canvas margin. ">getCanvasMarginHint()</a> </dd></dl>
</td></tr>
</table>
</div>
</div>
<a id="affbc42460ace9ac725fa825a3f8bfb66"></a>
<h2 class="memtitle"><span class="permalink"><a href="#affbc42460ace9ac725fa825a3f8bfb66">◆ </a></span>ItemInterest</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">enum <a class="el" href="class_qwt_plot_item.html#affbc42460ace9ac725fa825a3f8bfb66">QwtPlotItem::ItemInterest</a></td>
</tr>
</table>
</div><div class="memdoc">
<p>Plot Item Interests. </p>
<p>Plot items might depend on the situation of the corresponding plot widget. By enabling an interest the plot item will be notified, when the corresponding attribute of the plot widgets has changed.</p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="class_qwt_plot_item.html#a5a335be8ff488809a2cf7f4b734ad1b6">setItemAttribute()</a>, <a class="el" href="class_qwt_plot_item.html#ac5ffcdbabee06b75a3cc5d863b61a69a">testItemAttribute()</a>, <a class="el" href="class_qwt_plot_item.html#affbc42460ace9ac725fa825a3f8bfb66" title="Plot Item Interests. ">ItemInterest</a> </dd></dl>
<table class="fieldtable">
<tr><th colspan="2">Enumerator</th></tr><tr><td class="fieldname"><a id="affbc42460ace9ac725fa825a3f8bfb66a0d1c46890f22ef973d897ab0a9d38971"></a>ScaleInterest </td><td class="fielddoc"><p>The item is interested in updates of the scales </p><dl class="section see"><dt>See also</dt><dd><a class="el" href="class_qwt_plot_item.html#abf6a70847d3db952161ca4d4a952eea0" title="Update the item to changes of the axes scale division. ">updateScaleDiv()</a> </dd></dl>
</td></tr>
<tr><td class="fieldname"><a id="affbc42460ace9ac725fa825a3f8bfb66afcc4ef45e6613104ccc2b9f7988e4d22"></a>LegendInterest </td><td class="fielddoc"><p>The item is interested in updates of the legend ( of other items ) This flag is intended for items, that want to implement a legend for displaying entries of other plot item.</p>
<dl class="section note"><dt>Note</dt><dd>If the plot item wants to be represented on a legend enable <a class="el" href="class_qwt_plot_item.html#ae0fabcdd35f4818ce5bbe019b0eed062a4e377b54bd879c60a95162b6a9e9e176" title="The item is represented on the legend. ">QwtPlotItem::Legend</a> instead.</dd></dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="class_qwt_plot_item.html#af0c4272375b1ee95a1454c4c503ff324" title="Update the item to changes of the legend info. ">updateLegend()</a> </dd></dl>
</td></tr>
</table>
</div>
</div>
<a id="abe0e8a39aceef9a600b73e02550a9704"></a>
<h2 class="memtitle"><span class="permalink"><a href="#abe0e8a39aceef9a600b73e02550a9704">◆ </a></span>RenderHint</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">enum <a class="el" href="class_qwt_plot_item.html#abe0e8a39aceef9a600b73e02550a9704">QwtPlotItem::RenderHint</a></td>
</tr>
</table>
</div><div class="memdoc">
<p>Render hints. </p>
<table class="fieldtable">
<tr><th colspan="2">Enumerator</th></tr><tr><td class="fieldname"><a id="abe0e8a39aceef9a600b73e02550a9704ae0c9811915d496eaacbd749724647f13"></a>RenderAntialiased </td><td class="fielddoc"><p>Enable antialiasing. </p>
</td></tr>
</table>
</div>
</div>
<a id="ab149ac85e233ce9cedf2f2f2af871bf3"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ab149ac85e233ce9cedf2f2f2af871bf3">◆ </a></span>RttiValues</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">enum <a class="el" href="class_qwt_plot_item.html#ab149ac85e233ce9cedf2f2f2af871bf3">QwtPlotItem::RttiValues</a></td>
</tr>
</table>
</div><div class="memdoc">
<p>Runtime type information. </p>
<p>RttiValues is used to cast plot items, without having to enable runtime type information of the compiler. </p>
<table class="fieldtable">
<tr><th colspan="2">Enumerator</th></tr><tr><td class="fieldname"><a id="ab149ac85e233ce9cedf2f2f2af871bf3af1fb53ddb320ecbf2bba00a323cf08ff"></a>Rtti_PlotItem </td><td class="fielddoc"><p>Unspecific value, that can be used, when it doesn't matter. </p>
</td></tr>
<tr><td class="fieldname"><a id="ab149ac85e233ce9cedf2f2f2af871bf3af3125faa8333135a5724cc1d6c276683"></a>Rtti_PlotGrid </td><td class="fielddoc"><p>For <a class="el" href="class_qwt_plot_grid.html" title="A class which draws a coordinate grid. ">QwtPlotGrid</a>. </p>
</td></tr>
<tr><td class="fieldname"><a id="ab149ac85e233ce9cedf2f2f2af871bf3a386936d7e0186eabeb833a51cc4fb1cc"></a>Rtti_PlotScale </td><td class="fielddoc"><p>For <a class="el" href="class_qwt_plot_scale_item.html" title="A class which draws a scale inside the plot canvas. ">QwtPlotScaleItem</a>. </p>
</td></tr>
<tr><td class="fieldname"><a id="ab149ac85e233ce9cedf2f2f2af871bf3a06cd77e370cf62597501e692965e1f9c"></a>Rtti_PlotLegend </td><td class="fielddoc"><p>For <a class="el" href="class_qwt_plot_legend_item.html" title="A class which draws a legend inside the plot canvas. ">QwtPlotLegendItem</a>. </p>
</td></tr>
<tr><td class="fieldname"><a id="ab149ac85e233ce9cedf2f2f2af871bf3a15b3819a193f24b76c78e39cb80c7789"></a>Rtti_PlotMarker </td><td class="fielddoc"><p>For <a class="el" href="class_qwt_plot_marker.html" title="A class for drawing markers. ">QwtPlotMarker</a>. </p>
</td></tr>
<tr><td class="fieldname"><a id="ab149ac85e233ce9cedf2f2f2af871bf3af51a35012ed097a762b8918cf20caa69"></a>Rtti_PlotCurve </td><td class="fielddoc"><p>For <a class="el" href="class_qwt_plot_curve.html" title="A plot item, that represents a series of points. ">QwtPlotCurve</a>. </p>
</td></tr>
<tr><td class="fieldname"><a id="ab149ac85e233ce9cedf2f2f2af871bf3a27c1741ae71fad58da835b747246015d"></a>Rtti_PlotSpectroCurve </td><td class="fielddoc"><p>For <a class="el" href="class_qwt_plot_spectro_curve.html" title="Curve that displays 3D points as dots, where the z coordinate is mapped to a color. ">QwtPlotSpectroCurve</a>. </p>
</td></tr>
<tr><td class="fieldname"><a id="ab149ac85e233ce9cedf2f2f2af871bf3a5698aa120baa6e3d3d2a6bda8a82b226"></a>Rtti_PlotIntervalCurve </td><td class="fielddoc"><p>For <a class="el" href="class_qwt_plot_interval_curve.html" title="QwtPlotIntervalCurve represents a series of samples, where each value is associated with an interval ...">QwtPlotIntervalCurve</a>. </p>
</td></tr>
<tr><td class="fieldname"><a id="ab149ac85e233ce9cedf2f2f2af871bf3a4538dd66ec78ffd7ce6763f9000edcee"></a>Rtti_PlotHistogram </td><td class="fielddoc"><p>For <a class="el" href="class_qwt_plot_histogram.html" title="QwtPlotHistogram represents a series of samples, where an interval is associated with a value ( )...">QwtPlotHistogram</a>. </p>
</td></tr>
<tr><td class="fieldname"><a id="ab149ac85e233ce9cedf2f2f2af871bf3ad67d72195856e6fd8112e1b310f3acb7"></a>Rtti_PlotSpectrogram </td><td class="fielddoc"><p>For <a class="el" href="class_qwt_plot_spectrogram.html" title="A plot item, which displays a spectrogram. ">QwtPlotSpectrogram</a>. </p>
</td></tr>
<tr><td class="fieldname"><a id="ab149ac85e233ce9cedf2f2f2af871bf3a3aabc62d4c006ab40dd3e01db692ab4a"></a>Rtti_PlotSVG </td><td class="fielddoc"><p>For <a class="el" href="class_qwt_plot_svg_item.html" title="A plot item, which displays data in Scalable Vector Graphics (SVG) format. ">QwtPlotSvgItem</a>. </p>
</td></tr>
<tr><td class="fieldname"><a id="ab149ac85e233ce9cedf2f2f2af871bf3abcd9cebf717e528cb67458abfbf622dd"></a>Rtti_PlotTradingCurve </td><td class="fielddoc"><p>For <a class="el" href="class_qwt_plot_trading_curve.html" title="QwtPlotTradingCurve illustrates movements in the price of a financial instrument over time...">QwtPlotTradingCurve</a>. </p>
</td></tr>
<tr><td class="fieldname"><a id="ab149ac85e233ce9cedf2f2f2af871bf3ab89eb3547903640b6cc9d0aac02ef6c3"></a>Rtti_PlotBarChart </td><td class="fielddoc"><p>For <a class="el" href="class_qwt_plot_bar_chart.html" title="QwtPlotBarChart displays a series of a values as bars. ">QwtPlotBarChart</a>. </p>
</td></tr>
<tr><td class="fieldname"><a id="ab149ac85e233ce9cedf2f2f2af871bf3a73007ac5158d0ac857af2c6dcecf2712"></a>Rtti_PlotMultiBarChart </td><td class="fielddoc"><p>For <a class="el" href="class_qwt_plot_multi_bar_chart.html" title="QwtPlotMultiBarChart displays a series of a samples that consist each of a set of values...">QwtPlotMultiBarChart</a>. </p>
</td></tr>
<tr><td class="fieldname"><a id="ab149ac85e233ce9cedf2f2f2af871bf3af18fa4c34b44eaf43e13608c6bd7c7b7"></a>Rtti_PlotShape </td><td class="fielddoc"><p>For <a class="el" href="class_qwt_plot_shape_item.html" title="A plot item, which displays any graphical shape, that can be defined by a QPainterPath. ">QwtPlotShapeItem</a>. </p>
</td></tr>
<tr><td class="fieldname"><a id="ab149ac85e233ce9cedf2f2f2af871bf3ae6f046fd43f578ad8a59243e6e665167"></a>Rtti_PlotTextLabel </td><td class="fielddoc"><p>For <a class="el" href="class_qwt_plot_text_label.html" title="A plot item, which displays a text label. ">QwtPlotTextLabel</a>. </p>
</td></tr>
<tr><td class="fieldname"><a id="ab149ac85e233ce9cedf2f2f2af871bf3a52b2ec5c64c77a36a103b329a530b606"></a>Rtti_PlotZone </td><td class="fielddoc"><p>For <a class="el" href="class_qwt_plot_zone_item.html" title="A plot item, which displays a zone. ">QwtPlotZoneItem</a>. </p>
</td></tr>
<tr><td class="fieldname"><a id="ab149ac85e233ce9cedf2f2f2af871bf3aa60198228f57f46d4c64e4779107d0dc"></a>Rtti_PlotUserItem </td><td class="fielddoc"><p>Values >= Rtti_PlotUserItem are reserved for plot items not implemented in the Qwt library. </p>
</td></tr>
</table>
</div>
</div>
<h2 class="groupheader">Constructor & Destructor Documentation</h2>
<a id="a5d892ac856fb9176515c5f2d806161dc"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a5d892ac856fb9176515c5f2d806161dc">◆ </a></span>QwtPlotItem()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">QwtPlotItem::QwtPlotItem </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="class_qwt_text.html">QwtText</a> & </td>
<td class="paramname"><em>title</em> = <code><a class="el" href="class_qwt_text.html">QwtText</a>()</code></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>Constructor </p><dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">title</td><td>Title of the item </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a id="aeb2f676533ccae3436bf578824e2165e"></a>
<h2 class="memtitle"><span class="permalink"><a href="#aeb2f676533ccae3436bf578824e2165e">◆ </a></span>attach()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QwtPlotItem::attach </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_qwt_plot.html">QwtPlot</a> * </td>
<td class="paramname"><em>plot</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Attach the item to a plot. </p>
<p>This method will attach a <a class="el" href="class_qwt_plot_item.html" title="Base class for items on the plot canvas. ">QwtPlotItem</a> to the <a class="el" href="class_qwt_plot.html" title="A 2-D plotting widget. ">QwtPlot</a> argument. It will first detach the <a class="el" href="class_qwt_plot_item.html" title="Base class for items on the plot canvas. ">QwtPlotItem</a> from any plot from a previous call to attach (if necessary). If a NULL argument is passed, it will detach from any <a class="el" href="class_qwt_plot.html" title="A 2-D plotting widget. ">QwtPlot</a> it was attached to.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">plot</td><td>Plot widget </td></tr>
</table>
</dd>
</dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="class_qwt_plot_item.html#ab2bbee6dbe36a5f1d0ce853ac66716a6" title="This method detaches a QwtPlotItem from any QwtPlot it has been associated with. ">detach()</a> </dd></dl>
</div>
</div>
<a id="aebc6a6627f293f62e1d07006b11912cc"></a>
<h2 class="memtitle"><span class="permalink"><a href="#aebc6a6627f293f62e1d07006b11912cc">◆ </a></span>boundingRect()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">QRectF QwtPlotItem::boundingRect </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">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<dl class="section return"><dt>Returns</dt><dd>An invalid bounding rect: QRectF(1.0, 1.0, -2.0, -2.0) </dd></dl>
<dl class="section note"><dt>Note</dt><dd>A width or height < 0.0 is ignored by the autoscaler </dd></dl>
<p>Reimplemented in <a class="el" href="class_qwt_plot_trading_curve.html#a589f27bb404c411449d737a96df19f72">QwtPlotTradingCurve</a>, <a class="el" href="class_qwt_plot_marker.html#aa6ae4b05b166641cd37b5b56fbdbdcd1">QwtPlotMarker</a>, <a class="el" href="class_qwt_plot_interval_curve.html#aa51fa039f86904da4a63354c8800b629">QwtPlotIntervalCurve</a>, <a class="el" href="class_qwt_plot_histogram.html#a818c5064ea381f8af2370509d4212544">QwtPlotHistogram</a>, <a class="el" href="class_qwt_plot_raster_item.html#a90086b343d7574af73b107940560a205">QwtPlotRasterItem</a>, <a class="el" href="class_qwt_plot_shape_item.html#abae2acd0c73a78c90e606ad9f9c012a1">QwtPlotShapeItem</a>, <a class="el" href="class_qwt_plot_bar_chart.html#a1fc12bd097862fc4926404c3ddcb8cee">QwtPlotBarChart</a>, <a class="el" href="class_qwt_plot_multi_bar_chart.html#ac04e2aac3128d9196cfddf189d71bd1b">QwtPlotMultiBarChart</a>, <a class="el" href="class_qwt_plot_zone_item.html#ac8bb6e93275eab211a6524eb06305fdb">QwtPlotZoneItem</a>, <a class="el" href="class_qwt_plot_series_item.html#aae0e340180129559a835dc37576de749">QwtPlotSeriesItem</a>, and <a class="el" href="class_qwt_plot_svg_item.html#a743fcc0f782f6dc21e7bddcc7cc3273c">QwtPlotSvgItem</a>.</p>
</div>
</div>
<a id="a9a86df9a56ed5fea2cee81026e45f375"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a9a86df9a56ed5fea2cee81026e45f375">◆ </a></span>defaultIcon()</h2>
<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="class_qwt_graphic.html">QwtGraphic</a> QwtPlotItem::defaultIcon </td>
<td>(</td>
<td class="paramtype">const QBrush & </td>
<td class="paramname"><em>brush</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const QSizeF & </td>
<td class="paramname"><em>size</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>Return a default icon from a brush. </p>
<p>The default icon is a filled rectangle used in several derived classes as <a class="el" href="class_qwt_plot_item.html#a1a0d7f4328741d7396f1959e44e63412">legendIcon()</a>.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">brush</td><td>Fill brush </td></tr>
<tr><td class="paramname">size</td><td>Icon size</td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A filled rectangle </dd></dl>
</div>
</div>
<a id="ab2bbee6dbe36a5f1d0ce853ac66716a6"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ab2bbee6dbe36a5f1d0ce853ac66716a6">◆ </a></span>detach()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QwtPlotItem::detach </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>This method detaches a <a class="el" href="class_qwt_plot_item.html" title="Base class for items on the plot canvas. ">QwtPlotItem</a> from any <a class="el" href="class_qwt_plot.html" title="A 2-D plotting widget. ">QwtPlot</a> it has been associated with. </p>
<p><a class="el" href="class_qwt_plot_item.html#ab2bbee6dbe36a5f1d0ce853ac66716a6" title="This method detaches a QwtPlotItem from any QwtPlot it has been associated with. ">detach()</a> is equivalent to calling attach( NULL ) </p><dl class="section see"><dt>See also</dt><dd><a class="el" href="class_qwt_plot_item.html#aeb2f676533ccae3436bf578824e2165e" title="Attach the item to a plot. ">attach()</a> </dd></dl>
</div>
</div>
<a id="a0b0d6589d5db81ce72e6b33c4fbb21f9"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a0b0d6589d5db81ce72e6b33c4fbb21f9">◆ </a></span>draw()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void QwtPlotItem::draw </td>
<td>(</td>
<td class="paramtype">QPainter * </td>
<td class="paramname"><em>painter</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="class_qwt_scale_map.html">QwtScaleMap</a> & </td>
<td class="paramname"><em>xMap</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="class_qwt_scale_map.html">QwtScaleMap</a> & </td>
<td class="paramname"><em>yMap</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const QRectF & </td>
<td class="paramname"><em>canvasRect</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">pure virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Draw the item. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">painter</td><td>Painter </td></tr>
<tr><td class="paramname">xMap</td><td>Maps x-values into pixel coordinates. </td></tr>
<tr><td class="paramname">yMap</td><td>Maps y-values into pixel coordinates. </td></tr>
<tr><td class="paramname">canvasRect</td><td>Contents rect of the canvas in painter coordinates </td></tr>
</table>
</dd>
</dl>
<p>Implemented in <a class="el" href="class_qwt_plot_marker.html#a34a10afabf7522b57010778e5a6c7e60">QwtPlotMarker</a>, <a class="el" href="class_qwt_plot_legend_item.html#aaaa6be74cf816e714fe65d76cd5e8982">QwtPlotLegendItem</a>, <a class="el" href="class_qwt_plot_raster_item.html#ad1b901baadc6a694929ee39a5a2acbbb">QwtPlotRasterItem</a>, <a class="el" href="class_qwt_plot_shape_item.html#a2e0d07b1df90d4b55dab3baeb1f8b0ed">QwtPlotShapeItem</a>, <a class="el" href="class_qwt_plot_spectrogram.html#a8b723a9f40c919b21094fb85ebf50309">QwtPlotSpectrogram</a>, <a class="el" href="class_qwt_plot_scale_item.html#afa88624392743f8269660b8164f52d88">QwtPlotScaleItem</a>, <a class="el" href="class_qwt_plot_grid.html#adfaf00c5adb1ada5eb8fa25a5bd90b20">QwtPlotGrid</a>, <a class="el" href="class_qwt_plot_text_label.html#a734341e4ef3fa5b37b1fb0fe73e628e0">QwtPlotTextLabel</a>, <a class="el" href="class_qwt_plot_zone_item.html#a8e1cfbe866034ede97f28272cdaa715e">QwtPlotZoneItem</a>, <a class="el" href="class_qwt_plot_svg_item.html#a595fbab994d81caa92411124be2158d2">QwtPlotSvgItem</a>, and <a class="el" href="class_qwt_plot_series_item.html#a3a47982b372d5fd302846837afc126a4">QwtPlotSeriesItem</a>.</p>
</div>
</div>
<a id="ae576c06e796379f5c1fc8a37b8d84565"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ae576c06e796379f5c1fc8a37b8d84565">◆ </a></span>getCanvasMarginHint()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void QwtPlotItem::getCanvasMarginHint </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="class_qwt_scale_map.html">QwtScaleMap</a> & </td>
<td class="paramname"><em>xMap</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="class_qwt_scale_map.html">QwtScaleMap</a> & </td>
<td class="paramname"><em>yMap</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const QRectF & </td>
<td class="paramname"><em>canvasRect</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">double & </td>
<td class="paramname"><em>left</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">double & </td>
<td class="paramname"><em>top</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">double & </td>
<td class="paramname"><em>right</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">double & </td>
<td class="paramname"><em>bottom</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">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Calculate a hint for the canvas margin. </p>
<p>When the <a class="el" href="class_qwt_plot_item.html#ae0fabcdd35f4818ce5bbe019b0eed062a56ea00cf43b862667dec2ac727307d4d">QwtPlotItem::Margins</a> flag is enabled the plot item indicates, that it needs some margins at the borders of the canvas. This is f.e. used by bar charts to reserve space for displaying the bars.</p>
<p>The margins are in target device coordinates ( pixels on screen )</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">xMap</td><td>Maps x-values into pixel coordinates. </td></tr>
<tr><td class="paramname">yMap</td><td>Maps y-values into pixel coordinates. </td></tr>
<tr><td class="paramname">canvasRect</td><td>Contents rectangle of the canvas in painter coordinates </td></tr>
<tr><td class="paramname">left</td><td>Returns the left margin </td></tr>
<tr><td class="paramname">top</td><td>Returns the top margin </td></tr>
<tr><td class="paramname">right</td><td>Returns the right margin </td></tr>
<tr><td class="paramname">bottom</td><td>Returns the bottom margin</td></tr>
</table>
</dd>
</dl>
<p>The default implementation returns 0 for all margins</p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="class_qwt_plot.html#a3572fc95aac4db50cd692b2cb11a53a6" title="Calculate the canvas margins. ">QwtPlot::getCanvasMarginsHint()</a>, <a class="el" href="class_qwt_plot.html#aef8e679c64cf3158466ab33e7774f264" title="Update the canvas margins. ">QwtPlot::updateCanvasMargins()</a> </dd></dl>
<p>Reimplemented in <a class="el" href="class_qwt_plot_abstract_bar_chart.html#a32d47f6c91b5489cddbb8fcd9c83ba85">QwtPlotAbstractBarChart</a>.</p>
</div>
</div>
<a id="a1f9e938bef95ccc7b3e026da277ea8f3"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a1f9e938bef95ccc7b3e026da277ea8f3">◆ </a></span>isVisible()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool QwtPlotItem::isVisible </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<dl class="section return"><dt>Returns</dt><dd>true if visible </dd></dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="class_qwt_plot_item.html#a5f0eeb2b72207fd8d33a95b0565657a1">setVisible()</a>, <a class="el" href="class_qwt_plot_item.html#a93a50fb9c86bc66617e28315e02281c3" title="Show the item. ">show()</a>, <a class="el" href="class_qwt_plot_item.html#a1faea017baa2492416a13e6bc3c144aa" title="Hide the item. ">hide()</a> </dd></dl>
</div>
</div>
<a id="ad956fdbce5b0721abccce6d09fe4d5ce"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ad956fdbce5b0721abccce6d09fe4d5ce">◆ </a></span>itemChanged()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void QwtPlotItem::itemChanged </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></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>Update the legend and call <a class="el" href="class_qwt_plot.html#aea78ab565d05b69b8730a4af2a11f07e" title="Replots the plot if autoReplot() is true. ">QwtPlot::autoRefresh()</a> for the parent plot.</p>
<dl class="section see"><dt>See also</dt><dd>QwtPlot::legendChanged(), <a class="el" href="class_qwt_plot.html#aea78ab565d05b69b8730a4af2a11f07e" title="Replots the plot if autoReplot() is true. ">QwtPlot::autoRefresh()</a> </dd></dl>
</div>
</div>
<a id="a3967414c7542e267d0c2793f02be7241"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a3967414c7542e267d0c2793f02be7241">◆ </a></span>legendChanged()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void QwtPlotItem::legendChanged </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></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>Update the legend of the parent plot. </p><dl class="section see"><dt>See also</dt><dd><a class="el" href="class_qwt_plot.html#a9c4242c89decd06f3d35b66568ad69c9">QwtPlot::updateLegend()</a>, <a class="el" href="class_qwt_plot_item.html#ad956fdbce5b0721abccce6d09fe4d5ce">itemChanged()</a> </dd></dl>
</div>
</div>
<a id="a367ed5160b8475daf6b5b06558310f98"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a367ed5160b8475daf6b5b06558310f98">◆ </a></span>legendData()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">QList< <a class="el" href="class_qwt_legend_data.html">QwtLegendData</a> > QwtPlotItem::legendData </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">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Return all information, that is needed to represent the item on the legend. </p>
<p>Most items are represented by one entry on the legend showing an icon and a text, but f.e. <a class="el" href="class_qwt_plot_multi_bar_chart.html" title="QwtPlotMultiBarChart displays a series of a samples that consist each of a set of values...">QwtPlotMultiBarChart</a> displays one entry for each bar.</p>
<p><a class="el" href="class_qwt_legend_data.html" title="Attributes of an entry on a legend. ">QwtLegendData</a> is basically a list of QVariants that makes it possible to overload and reimplement <a class="el" href="class_qwt_plot_item.html#a367ed5160b8475daf6b5b06558310f98" title="Return all information, that is needed to represent the item on the legend. ">legendData()</a> to return almost any type of information, that is understood by the receiver that acts as the legend.</p>
<p>The default implementation returns one entry with the <a class="el" href="class_qwt_plot_item.html#a3abdb947d71e457de120851922de3197">title()</a> of the item and the <a class="el" href="class_qwt_plot_item.html#a1a0d7f4328741d7396f1959e44e63412">legendIcon()</a>.</p>
<dl class="section return"><dt>Returns</dt><dd>Data, that is needed to represent the item on the legend </dd></dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="class_qwt_plot_item.html#a3abdb947d71e457de120851922de3197">title()</a>, <a class="el" href="class_qwt_plot_item.html#a1a0d7f4328741d7396f1959e44e63412">legendIcon()</a>, <a class="el" href="class_qwt_legend.html" title="The legend widget. ">QwtLegend</a>, <a class="el" href="class_qwt_plot_legend_item.html" title="A class which draws a legend inside the plot canvas. ">QwtPlotLegendItem</a> </dd></dl>
<p>Reimplemented in <a class="el" href="class_qwt_plot_bar_chart.html#afe1447ee013bfc640f00e131ea447ab3">QwtPlotBarChart</a>, and <a class="el" href="class_qwt_plot_multi_bar_chart.html#ab7fc32a22f84fd8210dfd4d8a55d3f70">QwtPlotMultiBarChart</a>.</p>
</div>
</div>
<a id="a1a0d7f4328741d7396f1959e44e63412"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a1a0d7f4328741d7396f1959e44e63412">◆ </a></span>legendIcon()</h2>
<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="class_qwt_graphic.html">QwtGraphic</a> QwtPlotItem::legendIcon </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>index</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const QSizeF & </td>
<td class="paramname"><em>size</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">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<dl class="section return"><dt>Returns</dt><dd>Icon representing the item on the legend</dd></dl>
<p>The default implementation returns an invalid icon</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">index</td><td>Index of the legend entry ( usually there is only one ) </td></tr>
<tr><td class="paramname">size</td><td>Icon size</td></tr>
</table>
</dd>
</dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="class_qwt_plot_item.html#a0827dd69bf19ec0145b6cc6efad2c11b">setLegendIconSize()</a>, <a class="el" href="class_qwt_plot_item.html#a367ed5160b8475daf6b5b06558310f98" title="Return all information, that is needed to represent the item on the legend. ">legendData()</a> </dd></dl>
<p>Reimplemented in <a class="el" href="class_qwt_plot_curve.html#a4121ed377932008cb4b1e4b6ea3f47a8">QwtPlotCurve</a>, <a class="el" href="class_qwt_plot_trading_curve.html#a99cbde78feeea61925419dc0ce4c65f1">QwtPlotTradingCurve</a>, <a class="el" href="class_qwt_plot_marker.html#a4b074263f3a2ecc049642f680b65e646">QwtPlotMarker</a>, <a class="el" href="class_qwt_plot_interval_curve.html#ac2f297b5e937e74dc9cf04f309b16458">QwtPlotIntervalCurve</a>, <a class="el" href="class_qwt_plot_histogram.html#a757eec898adc9c7edc1f8ad318787533">QwtPlotHistogram</a>, <a class="el" href="class_qwt_plot_bar_chart.html#a3446827c0fe84d66c1ce535c7cfd4fb1">QwtPlotBarChart</a>, <a class="el" href="class_qwt_plot_shape_item.html#a7ff74bc493a09c4e1b83b45220256c2b">QwtPlotShapeItem</a>, and <a class="el" href="class_qwt_plot_multi_bar_chart.html#a033dce74ce95ab631c6c850e58783f5c">QwtPlotMultiBarChart</a>.</p>
</div>
</div>
<a id="af516644c94b0ec799af2eb2f0d0f6893"></a>
<h2 class="memtitle"><span class="permalink"><a href="#af516644c94b0ec799af2eb2f0d0f6893">◆ </a></span>legendIconSize()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">QSize QwtPlotItem::legendIconSize </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<dl class="section return"><dt>Returns</dt><dd>Legend icon size </dd></dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="class_qwt_plot_item.html#a0827dd69bf19ec0145b6cc6efad2c11b">setLegendIconSize()</a>, <a class="el" href="class_qwt_plot_item.html#a1a0d7f4328741d7396f1959e44e63412">legendIcon()</a> </dd></dl>
</div>
</div>
<a id="a08deefbedf8742f4877841b2dfd85822"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a08deefbedf8742f4877841b2dfd85822">◆ </a></span>paintRect()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">QRectF QwtPlotItem::paintRect </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="class_qwt_scale_map.html">QwtScaleMap</a> & </td>
<td class="paramname"><em>xMap</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="class_qwt_scale_map.html">QwtScaleMap</a> & </td>
<td class="paramname"><em>yMap</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Calculate the bounding paint rectangle of 2 maps. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">xMap</td><td>Maps x-values into pixel coordinates. </td></tr>
<tr><td class="paramname">yMap</td><td>Maps y-values into pixel coordinates.</td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Bounding paint rectangle of the scale maps, not normalized </dd></dl>
</div>
</div>
<a id="ae3651df9594cb48f8221f7b1cc7852ca"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ae3651df9594cb48f8221f7b1cc7852ca">◆ </a></span>renderThreadCount()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">uint QwtPlotItem::renderThreadCount </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<dl class="section return"><dt>Returns</dt><dd>Number of threads to be used for rendering. If numThreads() is set to 0, the system specific ideal thread count is used. </dd></dl>
</div>
</div>
<a id="a803613b24e745834b2115ee574dda610"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a803613b24e745834b2115ee574dda610">◆ </a></span>rtti()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">int QwtPlotItem::rtti </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">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Return rtti for the specific class represented. <a class="el" href="class_qwt_plot_item.html" title="Base class for items on the plot canvas. ">QwtPlotItem</a> is simply a virtual interface class, and base classes will implement this method with specific rtti values so a user can differentiate them.</p>
<p>The rtti value is useful for environments, where the runtime type information is disabled and it is not possible to do a dynamic_cast<...>.</p>
<dl class="section return"><dt>Returns</dt><dd>rtti value </dd></dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="class_qwt_plot_item.html#ab149ac85e233ce9cedf2f2f2af871bf3" title="Runtime type information. ">RttiValues</a> </dd></dl>
<p>Reimplemented in <a class="el" href="class_qwt_plot_curve.html#aa0db8235cdde8a5d419a7219e672d542">QwtPlotCurve</a>, <a class="el" href="class_qwt_plot_trading_curve.html#ae5c1f371fe7b9005347045e6f8f3414f">QwtPlotTradingCurve</a>, <a class="el" href="class_qwt_plot_shape_item.html#a800245a4df1e430a6c442184fb037d86">QwtPlotShapeItem</a>, <a class="el" href="class_qwt_plot_spectrogram.html#aee7e71657a0ecfd9b3d02a16d830360c">QwtPlotSpectrogram</a>, <a class="el" href="class_qwt_plot_interval_curve.html#a14fccdaf6f5255d7d10aa5314e220205">QwtPlotIntervalCurve</a>, <a class="el" href="class_qwt_plot_histogram.html#a20628f9926c469e5b7748d784458ae00">QwtPlotHistogram</a>, <a class="el" href="class_qwt_plot_marker.html#a96a82236f0cae6ee8ccc928d1744471d">QwtPlotMarker</a>, <a class="el" href="class_qwt_plot_bar_chart.html#a4b160c40fc125939c0dfe702a0c32a21">QwtPlotBarChart</a>, <a class="el" href="class_qwt_plot_multi_bar_chart.html#a882a53c53d43b7fa25a3225661494dcc">QwtPlotMultiBarChart</a>, <a class="el" href="class_qwt_plot_legend_item.html#a1b9961d07206415946dc178a16f0d507">QwtPlotLegendItem</a>, <a class="el" href="class_qwt_plot_scale_item.html#a3172170ca937e7b7161cd43bca4efd61">QwtPlotScaleItem</a>, <a class="el" href="class_qwt_plot_text_label.html#adc0a82a1cd06899f43cf65db08f08054">QwtPlotTextLabel</a>, <a class="el" href="class_qwt_plot_spectro_curve.html#aeff0a87d9c8b9fd90576fe4ce05aee08">QwtPlotSpectroCurve</a>, <a class="el" href="class_qwt_plot_svg_item.html#a55cbae2059a056004995e3d3cc304123">QwtPlotSvgItem</a>, <a class="el" href="class_qwt_plot_grid.html#a313040cb947200c91df7fa4f8019346c">QwtPlotGrid</a>, and <a class="el" href="class_qwt_plot_zone_item.html#a8721923580e3117601e5df443aa1e07a">QwtPlotZoneItem</a>.</p>
</div>
</div>
<a id="a43930f6c9bf9338130d2e098834732f4"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a43930f6c9bf9338130d2e098834732f4">◆ </a></span>scaleRect()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">QRectF QwtPlotItem::scaleRect </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="class_qwt_scale_map.html">QwtScaleMap</a> & </td>
<td class="paramname"><em>xMap</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="class_qwt_scale_map.html">QwtScaleMap</a> & </td>
<td class="paramname"><em>yMap</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Calculate the bounding scale rectangle of 2 maps. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">xMap</td><td>Maps x-values into pixel coordinates. </td></tr>
<tr><td class="paramname">yMap</td><td>Maps y-values into pixel coordinates.</td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Bounding scale rect of the scale maps, not normalized </dd></dl>
</div>
</div>
<a id="a6f6c7b34fe86e8029914b3b780b55ea4"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a6f6c7b34fe86e8029914b3b780b55ea4">◆ </a></span>setAxes()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QwtPlotItem::setAxes </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>xAxis</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>yAxis</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Set X and Y axis</p>
<p>The item will painted according to the coordinates of its Axes.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">xAxis</td><td>X Axis ( <a class="el" href="class_qwt_plot.html#a81df699dcf9dde0752c0726b5f31e271ad5566960e78f2473c1a1e853def4c4ac" title="X axis below the canvas. ">QwtPlot::xBottom</a> or <a class="el" href="class_qwt_plot.html#a81df699dcf9dde0752c0726b5f31e271ae51eb7525eb3f9f806e659614018beb8" title="X axis above the canvas. ">QwtPlot::xTop</a> ) </td></tr>
<tr><td class="paramname">yAxis</td><td>Y Axis ( <a class="el" href="class_qwt_plot.html#a81df699dcf9dde0752c0726b5f31e271a1bb1fbc11e31ebfa8bf72356f6837b17" title="Y axis left of the canvas. ">QwtPlot::yLeft</a> or <a class="el" href="class_qwt_plot.html#a81df699dcf9dde0752c0726b5f31e271a1de23b30c6b0c08aefe06d6265b65155" title="Y axis right of the canvas. ">QwtPlot::yRight</a> )</td></tr>
</table>
</dd>
</dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="class_qwt_plot_item.html#a81d3dd7feaadda4b0dbb8c13642046cf">setXAxis()</a>, <a class="el" href="class_qwt_plot_item.html#aa92dad876d76ce136925d5ae8f01db9a">setYAxis()</a>, <a class="el" href="class_qwt_plot_item.html#a27a3f3e5c9983d276b071da508776481" title="Return xAxis. ">xAxis()</a>, <a class="el" href="class_qwt_plot_item.html#a20418c1371cdb3d807a8088d6768792b" title="Return yAxis. ">yAxis()</a>, <a class="el" href="class_qwt_plot.html#a81df699dcf9dde0752c0726b5f31e271" title="Axis index. ">QwtPlot::Axis</a> </dd></dl>
</div>
</div>
<a id="a5a335be8ff488809a2cf7f4b734ad1b6"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a5a335be8ff488809a2cf7f4b734ad1b6">◆ </a></span>setItemAttribute()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QwtPlotItem::setItemAttribute </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_qwt_plot_item.html#ae0fabcdd35f4818ce5bbe019b0eed062">ItemAttribute</a> </td>
<td class="paramname"><em>attribute</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"><em>on</em> = <code>true</code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Toggle an item attribute</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">attribute</td><td>Attribute type </td></tr>
<tr><td class="paramname">on</td><td>true/false</td></tr>
</table>
</dd>
</dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="class_qwt_plot_item.html#ac5ffcdbabee06b75a3cc5d863b61a69a">testItemAttribute()</a>, <a class="el" href="class_qwt_plot_item.html#affbc42460ace9ac725fa825a3f8bfb66" title="Plot Item Interests. ">ItemInterest</a> </dd></dl>
</div>
</div>
<a id="ab65cbfe489ff73e32a919a0633298fb7"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ab65cbfe489ff73e32a919a0633298fb7">◆ </a></span>setItemInterest()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QwtPlotItem::setItemInterest </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_qwt_plot_item.html#affbc42460ace9ac725fa825a3f8bfb66">ItemInterest</a> </td>
<td class="paramname"><em>interest</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"><em>on</em> = <code>true</code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Toggle an item interest</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">interest</td><td>Interest type </td></tr>
<tr><td class="paramname">on</td><td>true/false</td></tr>
</table>
</dd>
</dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="class_qwt_plot_item.html#a8ce5dec4588f9010ffcda7c3bf661644">testItemInterest()</a>, <a class="el" href="class_qwt_plot_item.html#ae0fabcdd35f4818ce5bbe019b0eed062" title="Plot Item Attributes. ">ItemAttribute</a> </dd></dl>
</div>
</div>
<a id="a0827dd69bf19ec0145b6cc6efad2c11b"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a0827dd69bf19ec0145b6cc6efad2c11b">◆ </a></span>setLegendIconSize()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QwtPlotItem::setLegendIconSize </td>
<td>(</td>
<td class="paramtype">const QSize & </td>
<td class="paramname"><em>size</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Set the size of the legend icon</p>
<p>The default setting is 8x8 pixels</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">size</td><td>Size </td></tr>
</table>
</dd>
</dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="class_qwt_plot_item.html#af516644c94b0ec799af2eb2f0d0f6893">legendIconSize()</a>, <a class="el" href="class_qwt_plot_item.html#a1a0d7f4328741d7396f1959e44e63412">legendIcon()</a> </dd></dl>
</div>
</div>
<a id="acd023c40f659c304ded324942865edc8"></a>
<h2 class="memtitle"><span class="permalink"><a href="#acd023c40f659c304ded324942865edc8">◆ </a></span>setRenderHint()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QwtPlotItem::setRenderHint </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_qwt_plot_item.html#abe0e8a39aceef9a600b73e02550a9704">RenderHint</a> </td>
<td class="paramname"><em>hint</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"><em>on</em> = <code>true</code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Toggle an render hint</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">hint</td><td>Render hint </td></tr>
<tr><td class="paramname">on</td><td>true/false</td></tr>
</table>
</dd>
</dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="class_qwt_plot_item.html#aca66d2161c8a6caf5ebef82f59770d15">testRenderHint()</a>, <a class="el" href="class_qwt_plot_item.html#abe0e8a39aceef9a600b73e02550a9704" title="Render hints. ">RenderHint</a> </dd></dl>
</div>
</div>
<a id="a188ae18fbbce9adcf259ebe2f0de1f6b"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a188ae18fbbce9adcf259ebe2f0de1f6b">◆ </a></span>setRenderThreadCount()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QwtPlotItem::setRenderThreadCount </td>
<td>(</td>
<td class="paramtype">uint </td>
<td class="paramname"><em>numThreads</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>On multi core systems rendering of certain plot item ( f.e <a class="el" href="class_qwt_plot_raster_item.html" title="A class, which displays raster data. ">QwtPlotRasterItem</a> ) can be done in parallel in several threads.</p>
<p>The default setting is set to 1.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">numThreads</td><td>Number of threads to be used for rendering. If numThreads is set to 0, the system specific ideal thread count is used.</td></tr>
</table>
</dd>
</dl>
<p>The default thread count is 1 ( = no additional threads ) </p>
</div>
</div>
<a id="a1b74686181ab6dd5033917123c7db30f"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a1b74686181ab6dd5033917123c7db30f">◆ </a></span>setTitle() <span class="overload">[1/2]</span></h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QwtPlotItem::setTitle </td>
<td>(</td>
<td class="paramtype">const QString & </td>
<td class="paramname"><em>title</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Set a new title</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">title</td><td>Title </td></tr>
</table>
</dd>
</dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="class_qwt_plot_item.html#a3abdb947d71e457de120851922de3197">title()</a> </dd></dl>
</div>
</div>
<a id="a2db3214b23b78274fa6f8c0321a76839"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a2db3214b23b78274fa6f8c0321a76839">◆ </a></span>setTitle() <span class="overload">[2/2]</span></h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QwtPlotItem::setTitle </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="class_qwt_text.html">QwtText</a> & </td>
<td class="paramname"><em>title</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Set a new title</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">title</td><td>Title </td></tr>
</table>
</dd>
</dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="class_qwt_plot_item.html#a3abdb947d71e457de120851922de3197">title()</a> </dd></dl>
</div>
</div>
<a id="a5f0eeb2b72207fd8d33a95b0565657a1"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a5f0eeb2b72207fd8d33a95b0565657a1">◆ </a></span>setVisible()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void QwtPlotItem::setVisible </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>on</em></td><td>)</td>
<td></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>Show/Hide the item</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">on</td><td>Show if true, otherwise hide </td></tr>
</table>
</dd>
</dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="class_qwt_plot_item.html#a1f9e938bef95ccc7b3e026da277ea8f3">isVisible()</a>, <a class="el" href="class_qwt_plot_item.html#a93a50fb9c86bc66617e28315e02281c3" title="Show the item. ">show()</a>, <a class="el" href="class_qwt_plot_item.html#a1faea017baa2492416a13e6bc3c144aa" title="Hide the item. ">hide()</a> </dd></dl>
</div>
</div>
<a id="a81d3dd7feaadda4b0dbb8c13642046cf"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a81d3dd7feaadda4b0dbb8c13642046cf">◆ </a></span>setXAxis()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QwtPlotItem::setXAxis </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>axis</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Set the X axis</p>
<p>The item will painted according to the coordinates its Axes.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">axis</td><td>X Axis ( <a class="el" href="class_qwt_plot.html#a81df699dcf9dde0752c0726b5f31e271ad5566960e78f2473c1a1e853def4c4ac" title="X axis below the canvas. ">QwtPlot::xBottom</a> or <a class="el" href="class_qwt_plot.html#a81df699dcf9dde0752c0726b5f31e271ae51eb7525eb3f9f806e659614018beb8" title="X axis above the canvas. ">QwtPlot::xTop</a> ) </td></tr>
</table>
</dd>
</dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="class_qwt_plot_item.html#a6f6c7b34fe86e8029914b3b780b55ea4">setAxes()</a>, <a class="el" href="class_qwt_plot_item.html#aa92dad876d76ce136925d5ae8f01db9a">setYAxis()</a>, <a class="el" href="class_qwt_plot_item.html#a27a3f3e5c9983d276b071da508776481" title="Return xAxis. ">xAxis()</a>, <a class="el" href="class_qwt_plot.html#a81df699dcf9dde0752c0726b5f31e271" title="Axis index. ">QwtPlot::Axis</a> </dd></dl>
</div>
</div>
<a id="aa92dad876d76ce136925d5ae8f01db9a"></a>
<h2 class="memtitle"><span class="permalink"><a href="#aa92dad876d76ce136925d5ae8f01db9a">◆ </a></span>setYAxis()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QwtPlotItem::setYAxis </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>axis</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Set the Y axis</p>
<p>The item will painted according to the coordinates its Axes.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">axis</td><td>Y Axis ( <a class="el" href="class_qwt_plot.html#a81df699dcf9dde0752c0726b5f31e271a1bb1fbc11e31ebfa8bf72356f6837b17" title="Y axis left of the canvas. ">QwtPlot::yLeft</a> or <a class="el" href="class_qwt_plot.html#a81df699dcf9dde0752c0726b5f31e271a1de23b30c6b0c08aefe06d6265b65155" title="Y axis right of the canvas. ">QwtPlot::yRight</a> ) </td></tr>
</table>
</dd>
</dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="class_qwt_plot_item.html#a6f6c7b34fe86e8029914b3b780b55ea4">setAxes()</a>, <a class="el" href="class_qwt_plot_item.html#a81d3dd7feaadda4b0dbb8c13642046cf">setXAxis()</a>, <a class="el" href="class_qwt_plot_item.html#a20418c1371cdb3d807a8088d6768792b" title="Return yAxis. ">yAxis()</a>, <a class="el" href="class_qwt_plot.html#a81df699dcf9dde0752c0726b5f31e271" title="Axis index. ">QwtPlot::Axis</a> </dd></dl>
</div>
</div>
<a id="a57d90e4146133b59d589c71b3a643e82"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a57d90e4146133b59d589c71b3a643e82">◆ </a></span>setZ()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void QwtPlotItem::setZ </td>
<td>(</td>
<td class="paramtype">double </td>
<td class="paramname"><em>z</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Set the z value. </p>
<p>Plot items are painted in increasing z-order.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">z</td><td>Z-value </td></tr>
</table>
</dd>
</dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="class_qwt_plot_item.html#a717c27fba94fd761a2d4ec06e9dbfa21">z()</a>, <a class="el" href="class_qwt_plot_dict.html#a49d60b01e53a33423987aa80559449f9" title="A QwtPlotItemList of all attached plot items. ">QwtPlotDict::itemList()</a> </dd></dl>
</div>
</div>
<a id="ac5ffcdbabee06b75a3cc5d863b61a69a"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ac5ffcdbabee06b75a3cc5d863b61a69a">◆ </a></span>testItemAttribute()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool QwtPlotItem::testItemAttribute </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_qwt_plot_item.html#ae0fabcdd35f4818ce5bbe019b0eed062">ItemAttribute</a> </td>
<td class="paramname"><em>attribute</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Test an item attribute</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">attribute</td><td>Attribute type </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>true/false </dd></dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="class_qwt_plot_item.html#a5a335be8ff488809a2cf7f4b734ad1b6">setItemAttribute()</a>, <a class="el" href="class_qwt_plot_item.html#affbc42460ace9ac725fa825a3f8bfb66" title="Plot Item Interests. ">ItemInterest</a> </dd></dl>
</div>
</div>
<a id="a8ce5dec4588f9010ffcda7c3bf661644"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a8ce5dec4588f9010ffcda7c3bf661644">◆ </a></span>testItemInterest()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool QwtPlotItem::testItemInterest </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_qwt_plot_item.html#affbc42460ace9ac725fa825a3f8bfb66">ItemInterest</a> </td>
<td class="paramname"><em>interest</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Test an item interest</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">interest</td><td>Interest type </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>true/false </dd></dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="class_qwt_plot_item.html#ab65cbfe489ff73e32a919a0633298fb7">setItemInterest()</a>, <a class="el" href="class_qwt_plot_item.html#ae0fabcdd35f4818ce5bbe019b0eed062" title="Plot Item Attributes. ">ItemAttribute</a> </dd></dl>
</div>
</div>
<a id="aca66d2161c8a6caf5ebef82f59770d15"></a>
<h2 class="memtitle"><span class="permalink"><a href="#aca66d2161c8a6caf5ebef82f59770d15">◆ </a></span>testRenderHint()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool QwtPlotItem::testRenderHint </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_qwt_plot_item.html#abe0e8a39aceef9a600b73e02550a9704">RenderHint</a> </td>
<td class="paramname"><em>hint</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Test a render hint</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">hint</td><td>Render hint </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>true/false </dd></dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="class_qwt_plot_item.html#acd023c40f659c304ded324942865edc8">setRenderHint()</a>, <a class="el" href="class_qwt_plot_item.html#abe0e8a39aceef9a600b73e02550a9704" title="Render hints. ">RenderHint</a> </dd></dl>
</div>
</div>
<a id="a3abdb947d71e457de120851922de3197"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a3abdb947d71e457de120851922de3197">◆ </a></span>title()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="class_qwt_text.html">QwtText</a> & QwtPlotItem::title </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<dl class="section return"><dt>Returns</dt><dd>Title of the item </dd></dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="class_qwt_plot_item.html#a1b74686181ab6dd5033917123c7db30f">setTitle()</a> </dd></dl>
</div>
</div>
<a id="af0c4272375b1ee95a1454c4c503ff324"></a>
<h2 class="memtitle"><span class="permalink"><a href="#af0c4272375b1ee95a1454c4c503ff324">◆ </a></span>updateLegend()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void QwtPlotItem::updateLegend </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="class_qwt_plot_item.html">QwtPlotItem</a> * </td>
<td class="paramname"><em>item</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const QList< <a class="el" href="class_qwt_legend_data.html">QwtLegendData</a> > & </td>
<td class="paramname"><em>data</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">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Update the item to changes of the legend info. </p>
<p>Plot items that want to display a legend ( not those, that want to be displayed on a legend ! ) will have to implement <a class="el" href="class_qwt_plot_item.html#af0c4272375b1ee95a1454c4c503ff324" title="Update the item to changes of the legend info. ">updateLegend()</a>.</p>
<p><a class="el" href="class_qwt_plot_item.html#af0c4272375b1ee95a1454c4c503ff324" title="Update the item to changes of the legend info. ">updateLegend()</a> is only called when the LegendInterest interest is enabled. The default implementation does nothing.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">item</td><td>Plot item to be displayed on a legend </td></tr>
<tr><td class="paramname">data</td><td>Attributes how to display item on the legend</td></tr>
</table>
</dd>
</dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="class_qwt_plot_legend_item.html" title="A class which draws a legend inside the plot canvas. ">QwtPlotLegendItem</a></dd></dl>
<dl class="section note"><dt>Note</dt><dd>Plot items, that want to be displayed on a legend need to enable the <a class="el" href="class_qwt_plot_item.html#ae0fabcdd35f4818ce5bbe019b0eed062a4e377b54bd879c60a95162b6a9e9e176" title="The item is represented on the legend. ">QwtPlotItem::Legend</a> flag and to implement <a class="el" href="class_qwt_plot_item.html#a367ed5160b8475daf6b5b06558310f98" title="Return all information, that is needed to represent the item on the legend. ">legendData()</a> and <a class="el" href="class_qwt_plot_item.html#a1a0d7f4328741d7396f1959e44e63412">legendIcon()</a> </dd></dl>
<p>Reimplemented in <a class="el" href="class_qwt_plot_legend_item.html#a5bfda08242671a2d9d02b7bfc558926d">QwtPlotLegendItem</a>.</p>
</div>
</div>
<a id="abf6a70847d3db952161ca4d4a952eea0"></a>
<h2 class="memtitle"><span class="permalink"><a href="#abf6a70847d3db952161ca4d4a952eea0">◆ </a></span>updateScaleDiv()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void QwtPlotItem::updateScaleDiv </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="class_qwt_scale_div.html">QwtScaleDiv</a> & </td>
<td class="paramname"><em>xScaleDiv</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="class_qwt_scale_div.html">QwtScaleDiv</a> & </td>
<td class="paramname"><em>yScaleDiv</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">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Update the item to changes of the axes scale division. </p>
<p>Update the item, when the axes of plot have changed. The default implementation does nothing, but items that depend on the scale division (like <a class="el" href="class_qwt_plot_grid.html" title="A class which draws a coordinate grid. ">QwtPlotGrid()</a>) have to reimplement <a class="el" href="class_qwt_plot_item.html#abf6a70847d3db952161ca4d4a952eea0" title="Update the item to changes of the axes scale division. ">updateScaleDiv()</a></p>
<p><a class="el" href="class_qwt_plot_item.html#abf6a70847d3db952161ca4d4a952eea0" title="Update the item to changes of the axes scale division. ">updateScaleDiv()</a> is only called when the ScaleInterest interest is enabled. The default implementation does nothing.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">xScaleDiv</td><td>Scale division of the x-axis </td></tr>
<tr><td class="paramname">yScaleDiv</td><td>Scale division of the y-axis</td></tr>
</table>
</dd>
</dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="class_qwt_plot.html#a1fb2dbc3697a66024d48c08b1d18f8a5" title="Rebuild the axes scales. ">QwtPlot::updateAxes()</a>, <a class="el" href="class_qwt_plot_item.html#affbc42460ace9ac725fa825a3f8bfb66a0d1c46890f22ef973d897ab0a9d38971">ScaleInterest</a> </dd></dl>
<p>Reimplemented in <a class="el" href="class_qwt_plot_scale_item.html#a9c32bac1ff73c6527305698792a6edfe">QwtPlotScaleItem</a>, <a class="el" href="class_qwt_plot_grid.html#a2dfc8ae2a7b2f21326d432db3e3856da">QwtPlotGrid</a>, and <a class="el" href="class_qwt_plot_series_item.html#a890792d0f44e341812b5283c249608b2">QwtPlotSeriesItem</a>.</p>
</div>
</div>
<a id="a717c27fba94fd761a2d4ec06e9dbfa21"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a717c27fba94fd761a2d4ec06e9dbfa21">◆ </a></span>z()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">double QwtPlotItem::z </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Plot items are painted in increasing z-order.</p>
<dl class="section return"><dt>Returns</dt><dd><a class="el" href="class_qwt_plot_item.html#a57d90e4146133b59d589c71b3a643e82" title="Set the z value. ">setZ()</a>, <a class="el" href="class_qwt_plot_dict.html#a49d60b01e53a33423987aa80559449f9" title="A QwtPlotItemList of all attached plot items. ">QwtPlotDict::itemList()</a> </dd></dl>
</div>
</div>
</div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="navelem"><a class="el" href="class_qwt_plot_item.html">QwtPlotItem</a></li>
<li class="footer">Generated by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.14 </li>
</ul>
</div>
</body>
</html>
|