File: class_qwt_plot.html

package info (click to toggle)
qwt5 5.2.2-3
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 13,340 kB
  • sloc: cpp: 32,645; makefile: 23; sh: 4
file content (2584 lines) | stat: -rw-r--r-- 122,659 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
<!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"/>
<title>Qwt User&#39;s Guide: QwtPlot Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<!-- Generated by Doxygen 1.7.3 -->
<div id="top">
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
 <tbody>
 <tr style="height: 56px;">
  <td style="padding-left: 0.5em;">
   <div id="projectname">Qwt User's Guide&#160;<span id="projectnumber">5.2.2</span></div>
  </td>
 </tr>
 </tbody>
</table>
</div>
  <div id="navrow1" class="tabs">
    <ul class="tablist">
      <li><a href="index.html"><span>Main&#160;Page</span></a></li>
      <li><a href="pages.html"><span>Related&#160;Pages</span></a></li>
      <li class="current"><a href="annotated.html"><span>Classes</span></a></li>
      <li><a href="files.html"><span>Files</span></a></li>
    </ul>
  </div>
  <div id="navrow2" class="tabs2">
    <ul class="tablist">
      <li><a href="annotated.html"><span>Class&#160;List</span></a></li>
      <li><a href="classes.html"><span>Class&#160;Index</span></a></li>
      <li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
      <li><a href="functions.html"><span>Class&#160;Members</span></a></li>
    </ul>
  </div>
</div>
<div class="header">
  <div class="summary">
<a href="#pub-types">Public Types</a> &#124;
<a href="#pub-slots">Public Slots</a> &#124;
<a href="#signals">Signals</a> &#124;
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#pro-slots">Protected Slots</a> &#124;
<a href="#pro-methods">Protected Member Functions</a> &#124;
<a href="#pro-static-methods">Static Protected Member Functions</a>  </div>
  <div class="headertitle">
<h1>QwtPlot Class Reference</h1>  </div>
</div>
<div class="contents">
<!-- doxytag: class="QwtPlot" --><!-- doxytag: inherits="QwtPlotDict" -->
<p>A 2-D plotting widget.  
<a href="#_details">More...</a></p>

<p><code>#include &lt;<a class="el" href="qwt__plot_8h_source.html">qwt_plot.h</a>&gt;</code></p>
<div class="dynheader">
Inheritance diagram for QwtPlot:</div>
<div class="dyncontent">
<div class="center"><img src="class_qwt_plot__inherit__graph.png" border="0" usemap="#_qwt_plot_inherit__map" alt="Inheritance graph"/></div>
<map name="_qwt_plot_inherit__map" id="_qwt_plot_inherit__map">
<area shape="rect" id="node2" href="class_qwt_plot_dict.html" title="A dictionary for plot items." alt="" coords="5,6,96,37"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>

<p><a href="class_qwt_plot-members.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-types"></a>
Public Types</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">enum &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a81df699dcf9dde0752c0726b5f31e271">Axis</a> { <br/>
&#160;&#160;<b>yLeft</b>, 
<br/>
&#160;&#160;<b>yRight</b>, 
<br/>
&#160;&#160;<b>xBottom</b>, 
<br/>
&#160;&#160;<b>xTop</b>, 
<br/>
&#160;&#160;<b>axisCnt</b>
<br/>
 }</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">enum &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a31aacb65b5c049dde8c34a0d8482661b">LegendPosition</a> { <br/>
&#160;&#160;<b>LeftLegend</b>, 
<br/>
&#160;&#160;<b>RightLegend</b>, 
<br/>
&#160;&#160;<b>BottomLegend</b>, 
<br/>
&#160;&#160;<b>TopLegend</b>, 
<br/>
&#160;&#160;<b>ExternalLegend</b>
<br/>
 }</td></tr>
<tr><td colspan="2"><h2><a name="pub-slots"></a>
Public Slots</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#aea78ab565d05b69b8730a4af2a11f07e">autoRefresh</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#ae2191d8ad33164b83aa2a14563f132a5">clear</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a7b094e29b8e92b00e36517d0d7633c4b">replot</a> ()</td></tr>
<tr><td colspan="2"><h2><a name="signals"></a>
Signals</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#abd9e17629dd7c142fed017ea5e347149">legendChecked</a> (<a class="el" href="class_qwt_plot_item.html">QwtPlotItem</a> *plotItem, bool on)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a52b75d5548fbe04539b6297de53a2222">legendClicked</a> (<a class="el" href="class_qwt_plot_item.html">QwtPlotItem</a> *plotItem)</td></tr>
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#ae7e93c7112d16cbd299cf3cbc0bf9f9f">applyProperties</a> (const QString &amp;)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_dict.html#a10dfae8b454fa4258b0372366013507a">autoDelete</a> () const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#af14053ca41be0f9c6f820ed3c4379831">autoReplot</a> () const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a112a1bc0b4f7132b10bc5b4efae45686">axisAutoScale</a> (int axisId) const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#aac5107a1ec8836b53f084a5b1bb8cc43">axisEnabled</a> (int axisId) const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">QFont&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a637e2261d7722f00b2ce2bacadca8ffa">axisFont</a> (int axisId) const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a250fdf9506a71857d183983823a491d4">axisMaxMajor</a> (int axisId) const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#adbe9b0fcfaf8a5baa49a3cb4ed425b42">axisMaxMinor</a> (int axisId) const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="class_qwt_scale_div.html">QwtScaleDiv</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a596fc7e7960324ddc949c36242c5e6d6">axisScaleDiv</a> (int axisId) const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_qwt_scale_div.html">QwtScaleDiv</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#af20f32c68fdd8ae4adfeabf21eb6068b">axisScaleDiv</a> (int axisId)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="class_qwt_scale_draw.html">QwtScaleDraw</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a2ff0d0733c0ce8bb275cfde23bf9736c">axisScaleDraw</a> (int axisId) const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_qwt_scale_draw.html">QwtScaleDraw</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#abbb49f1730c3ea9f636c032f81e5a87e">axisScaleDraw</a> (int axisId)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_qwt_scale_engine.html">QwtScaleEngine</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a619b65bb95090ab5a528e33a5014ae4f">axisScaleEngine</a> (int axisId)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="class_qwt_scale_engine.html">QwtScaleEngine</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a3e29973bcd6c879056ad655de8f667d8">axisScaleEngine</a> (int axisId) const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a6f5fa5348dec97f2531f7ec58e727bee">axisStepSize</a> (int axisId) const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_qwt_text.html">QwtText</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a7807148d386457345025571e2a8e0983">axisTitle</a> (int axisId) const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="class_qwt_scale_widget.html">QwtScaleWidget</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a6b495d9b17962be6e098026441a1f7b8">axisWidget</a> (int axisId) const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_qwt_scale_widget.html">QwtScaleWidget</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#ae3386e1d38f70864c4c019c0eb6a3d9d">axisWidget</a> (int axisId)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_qwt_plot_canvas.html">QwtPlotCanvas</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#aafcc82150034fbeb393ceb9f54ba2f1a">canvas</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="class_qwt_plot_canvas.html">QwtPlotCanvas</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a31bea08461f58028fec6c2882f9a125c">canvas</a> () const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const QColor &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a99109068ad7749dfe28074abe3cc49af">canvasBackground</a> () const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a200c23f4574d857afc3f457999fcd0ce">canvasLineWidth</a> () const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="class_qwt_scale_map.html">QwtScaleMap</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#aff5efd21f11ec91fb8f791799cb4db2f">canvasMap</a> (int axisId) const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_dict.html#acb2e402e05c693433ed7e84696fbdfc0">detachItems</a> (int rtti=QwtPlotItem::Rtti_PlotItem, bool autoDelete=true)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#add1b88d8312e2671652d23f8181f2433">drawCanvas</a> (QPainter *)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#ab644f7a0a0566ff776c89cc225ce37d7">enableAxis</a> (int axisId, bool tf=true)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#af40d1bfdd9b6cd94e9981db8b254b961">event</a> (QEvent *)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">QString&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#afd1c65720e19e50aa083dabd5bbf88e8">grabProperties</a> () const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a6e23cad2bce7b04a09f18fa139341d5c">insertLegend</a> (<a class="el" href="class_qwt_legend.html">QwtLegend</a> *, <a class="el" href="class_qwt_plot.html#a31aacb65b5c049dde8c34a0d8482661b">LegendPosition</a>=QwtPlot::RightLegend, double ratio=-1.0)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#ab98066e62e3a9f574f8f1d482974ef5c">invTransform</a> (int axisId, int pos) const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const QwtPlotItemList &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_dict.html#a9cbb1c5c22de93594b7e2524af108f55">itemList</a> () const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_qwt_legend.html">QwtLegend</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#aab1f2cf0e567e09a4c4bce3181c03ba0">legend</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="class_qwt_legend.html">QwtLegend</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a9635345324c02f9dd15980bf25804423">legend</a> () const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a546ff473d973512141cc974e3609ad14">margin</a> () const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual QSize&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a5a17d0ea2e9a977d48045e742f5b8cfd">minimumSizeHint</a> () const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_qwt_plot_layout.html">QwtPlotLayout</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a9156b14a6f67f6279a16fea063ce1d14">plotLayout</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="class_qwt_plot_layout.html">QwtPlotLayout</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a6abb53bb19d8e931ba49bf439779f0ac">plotLayout</a> () const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a99ad643676cf0cd5f11478f154102df2">polish</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#adb2f14174770601e55d6822437c3fe26">print</a> (QPaintDevice &amp;p, const <a class="el" href="class_qwt_plot_print_filter.html">QwtPlotPrintFilter</a> &amp;=<a class="el" href="class_qwt_plot_print_filter.html">QwtPlotPrintFilter</a>()) const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a2170b35727d35c9b9f4031f490789adc">print</a> (QPainter *, const QRect &amp;rect, const <a class="el" href="class_qwt_plot_print_filter.html">QwtPlotPrintFilter</a> &amp;=<a class="el" href="class_qwt_plot_print_filter.html">QwtPlotPrintFilter</a>()) const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a12888a2101ba2091db0e4710c6a109cb">QwtPlot</a> (const <a class="el" href="class_qwt_text.html">QwtText</a> &amp;title, QWidget *p=NULL)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#acde7121614da027e9a1dbc4591613ca7">QwtPlot</a> (QWidget *=NULL)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot_dict.html#a3291431f0a9cca5b2affc5adf17bbdfb">setAutoDelete</a> (bool)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a654934ec2ad167101dacb5174f5172d6">setAutoReplot</a> (bool tf=true)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a8138eee4eb6989a1f6d93bd34b9c4cfa">setAxisAutoScale</a> (int axisId)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a9a14e57652c016f40388a68e556917e3">setAxisFont</a> (int axisId, const QFont &amp;f)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a19f1b67fa79b80c712cf5f52b97ea0c5">setAxisLabelAlignment</a> (int axisId, Qt::Alignment)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#ad5fa7aa01c88eab38ad64b131584f977">setAxisLabelRotation</a> (int axisId, double rotation)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a34df698558c9bd9c38bdd8ff04cc6c41">setAxisMaxMajor</a> (int axisId, int maxMajor)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#aa45b271684d6202061f1afcfa70e7cf6">setAxisMaxMinor</a> (int axisId, int maxMinor)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#acef5ea818944b93b8695d0c16924eed6">setAxisScale</a> (int axisId, double min, double max, double step=0)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a2365da57b983eb39752fa4f6378c225a">setAxisScaleDiv</a> (int axisId, const <a class="el" href="class_qwt_scale_div.html">QwtScaleDiv</a> &amp;)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a956a14b08e016eb83768ff4187d3849d">setAxisScaleDraw</a> (int axisId, <a class="el" href="class_qwt_scale_draw.html">QwtScaleDraw</a> *)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#abf09452377b53e584a5086354a134d78">setAxisScaleEngine</a> (int axisId, <a class="el" href="class_qwt_scale_engine.html">QwtScaleEngine</a> *)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#ad134a193ab40ce33743365558d0303c4">setAxisTitle</a> (int axisId, const <a class="el" href="class_qwt_text.html">QwtText</a> &amp;)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a5d60f1836e05e5cc5c7fe9570d6a608a">setAxisTitle</a> (int axisId, const QString &amp;)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a1a56902d2109fcf709ad1dbd35f0b859">setCanvasBackground</a> (const QColor &amp;c)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a5af96e90be286753d524bdb042917618">setCanvasLineWidth</a> (int w)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a26f01ba1c3c85308db6cac67c5f1159c">setMargin</a> (int margin)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a032ced8ddfad7483a372214954203719">setTitle</a> (const <a class="el" href="class_qwt_text.html">QwtText</a> &amp;t)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a9a7f0b219b404e5bed5dfca26c5c06a7">setTitle</a> (const QString &amp;)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual QSize&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a8e25bdd9b085344227a7f9e218ce557c">sizeHint</a> () const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_qwt_text.html">QwtText</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a1ae4b2e10f6691b7f1a14af70f743e2c">title</a> () const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_qwt_text_label.html">QwtTextLabel</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#ac39356b86ed70ebf256a8ae964910206">titleLabel</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="class_qwt_text_label.html">QwtTextLabel</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#abea1bb53b3f08fb085a1d954eb199078">titleLabel</a> () const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#afea608e3f40d0148aac5822f46fcb67a">transform</a> (int axisId, double value) const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a1fb2dbc3697a66024d48c08b1d18f8a5">updateAxes</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#ad470068832406086d6823109d8d7f050">updateLayout</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a2b60620e3681810946dcc66002aad016">~QwtPlot</a> ()</td></tr>
<tr><td colspan="2"><h2><a name="pro-slots"></a>
Protected Slots</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#ad41768a65a7cc426091c89d54e3c2ab2">legendItemChecked</a> (bool)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#ae1b53fe373a12b1558fca37fdc2f0a54">legendItemClicked</a> ()</td></tr>
<tr><td colspan="2"><h2><a name="pro-methods"></a>
Protected Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#af89d2b8b86e52188369327b3a5880e16">drawItems</a> (QPainter *, const QRect &amp;, const <a class="el" href="class_qwt_scale_map.html">QwtScaleMap</a> maps[axisCnt], const <a class="el" href="class_qwt_plot_print_filter.html">QwtPlotPrintFilter</a> &amp;) const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a9a75d6dde87c3cd4a9bc0b2dff7ce00a">printCanvas</a> (QPainter *, const QRect &amp;boundingRect, const QRect &amp;canvasRect, const <a class="el" href="class_qwt_scale_map.html">QwtScaleMap</a> maps[axisCnt], const <a class="el" href="class_qwt_plot_print_filter.html">QwtPlotPrintFilter</a> &amp;) const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#ae64c9c6f3a7a84c9a988c491bc73c71f">printLegend</a> (QPainter *, const QRect &amp;) const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a9d8ac6339a83158a0e78def13489d0ca">printLegendItem</a> (QPainter *, const QWidget *, const QRect &amp;) const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#acc8d22136018342a7f89a341e6fe8cd3">printScale</a> (QPainter *, int axisId, int startDist, int endDist, int baseDist, const QRect &amp;) const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a5ec342f0b38eb646f3cc6da8457b234a">printTitle</a> (QPainter *, const QRect &amp;) const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#aa4d5f73681880b9770bb6a604c415987">resizeEvent</a> (QResizeEvent *e)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a6455596162a69876a3504c0017531cf3">updateTabOrder</a> ()</td></tr>
<tr><td colspan="2"><h2><a name="pro-static-methods"></a>
Static Protected Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#ac02c033b024a4ecbefcf1b0e93c91205">axisValid</a> (int axisId)</td></tr>
</table>
<hr/><a name="_details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>A 2-D plotting widget. </p>
<p><a class="el" href="class_qwt_plot.html" title="A 2-D plotting widget.">QwtPlot</a> is a widget for plotting two-dimensional graphs. An unlimited number of plot items can be displayed on its canvas. Plot items might be curves (<a class="el" href="class_qwt_plot_curve.html" title="A plot item, that represents a series of points.">QwtPlotCurve</a>), markers (<a class="el" href="class_qwt_plot_marker.html" title="A class for drawing markers.">QwtPlotMarker</a>), the grid (<a class="el" href="class_qwt_plot_grid.html" title="A class which draws a coordinate grid.">QwtPlotGrid</a>), or anything else derived from <a class="el" href="class_qwt_plot_item.html" title="Base class for items on the plot canvas.">QwtPlotItem</a>. A plot can have up to four axes, with each plot item attached to an x- and a y axis. The scales at the axes can be explicitely set (<a class="el" href="class_qwt_scale_div.html" title="A class representing a scale division.">QwtScaleDiv</a>), or are calculated from the plot items, using algorithms (<a class="el" href="class_qwt_scale_engine.html" title="Base class for scale engines.">QwtScaleEngine</a>) which can be configured separately for each axis.</p>
<div align="center">
<img src="plot.png" alt="plot.png"/>
</div>
<dl class="user"><dt><b>Example</b></dt><dd>The following example shows (schematically) the most simple way to use <a class="el" href="class_qwt_plot.html" title="A 2-D plotting widget.">QwtPlot</a>. By default, only the left and bottom axes are visible and their scales are computed automatically. <div class="fragment"><pre class="fragment">
#include &lt;qwt_plot.h&gt;
#include &lt;qwt_plot_curve.h&gt;

QwtPlot *myPlot = new QwtPlot("Two Curves", parent);

// add curves
QwtPlotCurve *curve1 = new QwtPlotCurve("Curve 1");
QwtPlotCurve *curve2 = new QwtPlotCurve("Curve 2");

// copy the data into the curves
curve1-&gt;setData(...);
curve2-&gt;setData(...);

curve1-&gt;attach(myPlot);
curve2-&gt;attach(myPlot);

// finally, refresh the plot
myPlot-&gt;replot();
</pre></div> </dd></dl>
</div><hr/><h2>Member Enumeration Documentation</h2>
<a class="anchor" id="a81df699dcf9dde0752c0726b5f31e271"></a><!-- doxytag: member="QwtPlot::Axis" ref="a81df699dcf9dde0752c0726b5f31e271" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">enum <a class="el" href="class_qwt_plot.html#a81df699dcf9dde0752c0726b5f31e271">QwtPlot::Axis</a></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Axis index</p>
<ul>
<li>yLeft<br/>
</li>
<li>yRight<br/>
</li>
<li>xBottom<br/>
</li>
<li>xTop<br/>
 </li>
</ul>

</div>
</div>
<a class="anchor" id="a31aacb65b5c049dde8c34a0d8482661b"></a><!-- doxytag: member="QwtPlot::LegendPosition" ref="a31aacb65b5c049dde8c34a0d8482661b" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">enum <a class="el" href="class_qwt_plot.html#a31aacb65b5c049dde8c34a0d8482661b">QwtPlot::LegendPosition</a></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Position of the legend, relative to the canvas.</p>
<ul>
<li>LeftLegend<br/>
 The legend will be left from the yLeft axis.</li>
<li>RightLegend<br/>
 The legend will be right from the yLeft axis.</li>
<li>BottomLegend<br/>
 The legend will be right below the xBottom axis.</li>
<li>TopLegend<br/>
 The legend will be between xTop axis and the title.</li>
<li>ExternalLegend<br/>
 External means that only the content of the legend will be handled by <a class="el" href="class_qwt_plot.html" title="A 2-D plotting widget.">QwtPlot</a>, but not its geometry. This might be interesting if an application wants to have a legend in an external window ( or on the canvas ).</li>
</ul>
<dl class="note"><dt><b>Note:</b></dt><dd>In case of ExternalLegend, the legend is not printed by <a class="el" href="class_qwt_plot.html#adb2f14174770601e55d6822437c3fe26" title="Print the plot to a QPaintDevice (QPrinter) This function prints the contents of a QwtPlot instance t...">print()</a>.</dd></dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot.html#a6e23cad2bce7b04a09f18fa139341d5c" title="Insert a legend.">insertLegend()</a> </dd></dl>

</div>
</div>
<hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="acde7121614da027e9a1dbc4591613ca7"></a><!-- doxytag: member="QwtPlot::QwtPlot" ref="acde7121614da027e9a1dbc4591613ca7" args="(QWidget *=NULL)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">QwtPlot::QwtPlot </td>
          <td>(</td>
          <td class="paramtype">QWidget *&#160;</td>
          <td class="paramname"><em>parent</em> = <code>NULL</code></td><td>)</td>
          <td><code> [explicit]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Constructor. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">parent</td><td>Parent widget </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a12888a2101ba2091db0e4710c6a109cb"></a><!-- doxytag: member="QwtPlot::QwtPlot" ref="a12888a2101ba2091db0e4710c6a109cb" args="(const QwtText &amp;title, QWidget *p=NULL)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">QwtPlot::QwtPlot </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="class_qwt_text.html">QwtText</a> &amp;&#160;</td>
          <td class="paramname"><em>title</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">QWidget *&#160;</td>
          <td class="paramname"><em>parent</em> = <code>NULL</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td><code> [explicit]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Constructor. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">title</td><td>Title text </td></tr>
    <tr><td class="paramname">parent</td><td>Parent widget </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a2b60620e3681810946dcc66002aad016"></a><!-- doxytag: member="QwtPlot::~QwtPlot" ref="a2b60620e3681810946dcc66002aad016" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">QwtPlot::~QwtPlot </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Destructor. </p>

</div>
</div>
<hr/><h2>Member Function Documentation</h2>
<a class="anchor" id="ae7e93c7112d16cbd299cf3cbc0bf9f9f"></a><!-- doxytag: member="QwtPlot::applyProperties" ref="ae7e93c7112d16cbd299cf3cbc0bf9f9f" args="(const QString &amp;)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::applyProperties </td>
          <td>(</td>
          <td class="paramtype">const QString &amp;&#160;</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>This method is intended for manipulating the plot widget from a specific editor in the Qwt designer plugin.</p>
<dl class="warning"><dt><b>Warning:</b></dt><dd>The plot editor has never been implemented. </dd></dl>

</div>
</div>
<a class="anchor" id="a10dfae8b454fa4258b0372366013507a"></a><!-- doxytag: member="QwtPlot::autoDelete" ref="a10dfae8b454fa4258b0372366013507a" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool QwtPlotDict::autoDelete </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const<code> [inherited]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl class="return"><dt><b>Returns:</b></dt><dd>true if auto deletion is enabled </dd></dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot_dict.html#a3291431f0a9cca5b2affc5adf17bbdfb">setAutoDelete()</a>, attachItem() </dd></dl>

</div>
</div>
<a class="anchor" id="aea78ab565d05b69b8730a4af2a11f07e"></a><!-- doxytag: member="QwtPlot::autoRefresh" ref="aea78ab565d05b69b8730a4af2a11f07e" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::autoRefresh </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td><code> [slot]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Replots the plot if <a class="el" href="class_qwt_plot.html#af14053ca41be0f9c6f820ed3c4379831">QwtPlot::autoReplot()</a> is <code>true</code>. </p>

</div>
</div>
<a class="anchor" id="af14053ca41be0f9c6f820ed3c4379831"></a><!-- doxytag: member="QwtPlot::autoReplot" ref="af14053ca41be0f9c6f820ed3c4379831" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool QwtPlot::autoReplot </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl class="return"><dt><b>Returns:</b></dt><dd>true if the autoReplot option is set. </dd></dl>

</div>
</div>
<a class="anchor" id="a112a1bc0b4f7132b10bc5b4efae45686"></a><!-- doxytag: member="QwtPlot::axisAutoScale" ref="a112a1bc0b4f7132b10bc5b4efae45686" args="(int axisId) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool QwtPlot::axisAutoScale </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>axisId</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if autoscaling is enabled </dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">axisId</td><td>axis index </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="aac5107a1ec8836b53f084a5b1bb8cc43"></a><!-- doxytag: member="QwtPlot::axisEnabled" ref="aac5107a1ec8836b53f084a5b1bb8cc43" args="(int axisId) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool QwtPlot::axisEnabled </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>axisId</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if a specified axis is enabled </dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">axisId</td><td>axis index </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a637e2261d7722f00b2ce2bacadca8ffa"></a><!-- doxytag: member="QwtPlot::axisFont" ref="a637e2261d7722f00b2ce2bacadca8ffa" args="(int axisId) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">QFont QwtPlot::axisFont </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>axisId</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl class="return"><dt><b>Returns:</b></dt><dd>the font of the scale labels for a specified axis </dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">axisId</td><td>axis index </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a250fdf9506a71857d183983823a491d4"></a><!-- doxytag: member="QwtPlot::axisMaxMajor" ref="a250fdf9506a71857d183983823a491d4" args="(int axisId) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int QwtPlot::axisMaxMajor </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>axisId</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl class="return"><dt><b>Returns:</b></dt><dd>the maximum number of major ticks for a specified axis </dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">axisId</td><td>axis index sa <a class="el" href="class_qwt_plot.html#a34df698558c9bd9c38bdd8ff04cc6c41">setAxisMaxMajor()</a> </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="adbe9b0fcfaf8a5baa49a3cb4ed425b42"></a><!-- doxytag: member="QwtPlot::axisMaxMinor" ref="adbe9b0fcfaf8a5baa49a3cb4ed425b42" args="(int axisId) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int QwtPlot::axisMaxMinor </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>axisId</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl class="return"><dt><b>Returns:</b></dt><dd>the maximum number of minor ticks for a specified axis </dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">axisId</td><td>axis index sa <a class="el" href="class_qwt_plot.html#aa45b271684d6202061f1afcfa70e7cf6">setAxisMaxMinor()</a> </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a596fc7e7960324ddc949c36242c5e6d6"></a><!-- doxytag: member="QwtPlot::axisScaleDiv" ref="a596fc7e7960324ddc949c36242c5e6d6" args="(int axisId) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_qwt_scale_div.html">QwtScaleDiv</a> * QwtPlot::axisScaleDiv </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>axisId</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return the scale division of a specified axis. </p>
<p>axisScaleDiv(axisId)-&gt;lowerBound(), axisScaleDiv(axisId)-&gt;upperBound() are the current limits of the axis scale.</p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">axisId</td><td>axis index </td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Scale division</dd></dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_scale_div.html" title="A class representing a scale division.">QwtScaleDiv</a>, <a class="el" href="class_qwt_plot.html#a2365da57b983eb39752fa4f6378c225a" title="Disable autoscaling and specify a fixed scale for a selected axis.">setAxisScaleDiv()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="af20f32c68fdd8ae4adfeabf21eb6068b"></a><!-- doxytag: member="QwtPlot::axisScaleDiv" ref="af20f32c68fdd8ae4adfeabf21eb6068b" args="(int axisId)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="class_qwt_scale_div.html">QwtScaleDiv</a> * QwtPlot::axisScaleDiv </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>axisId</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return the scale division of a specified axis. </p>
<p>axisScaleDiv(axisId)-&gt;lowerBound(), axisScaleDiv(axisId)-&gt;upperBound() are the current limits of the axis scale.</p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">axisId</td><td>axis index </td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Scale division</dd></dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_scale_div.html" title="A class representing a scale division.">QwtScaleDiv</a>, <a class="el" href="class_qwt_plot.html#a2365da57b983eb39752fa4f6378c225a" title="Disable autoscaling and specify a fixed scale for a selected axis.">setAxisScaleDiv()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a2ff0d0733c0ce8bb275cfde23bf9736c"></a><!-- doxytag: member="QwtPlot::axisScaleDraw" ref="a2ff0d0733c0ce8bb275cfde23bf9736c" args="(int axisId) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_qwt_scale_draw.html">QwtScaleDraw</a> * QwtPlot::axisScaleDraw </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>axisId</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl class="return"><dt><b>Returns:</b></dt><dd>the scale draw of a specified axis </dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">axisId</td><td>axis index </td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>specified scaleDraw for axis, or NULL if axis is invalid. </dd></dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_scale_draw.html" title="A class for drawing scales.">QwtScaleDraw</a> </dd></dl>

</div>
</div>
<a class="anchor" id="abbb49f1730c3ea9f636c032f81e5a87e"></a><!-- doxytag: member="QwtPlot::axisScaleDraw" ref="abbb49f1730c3ea9f636c032f81e5a87e" args="(int axisId)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="class_qwt_scale_draw.html">QwtScaleDraw</a> * QwtPlot::axisScaleDraw </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>axisId</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl class="return"><dt><b>Returns:</b></dt><dd>the scale draw of a specified axis </dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">axisId</td><td>axis index </td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>specified scaleDraw for axis, or NULL if axis is invalid. </dd></dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_scale_draw.html" title="A class for drawing scales.">QwtScaleDraw</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a3e29973bcd6c879056ad655de8f667d8"></a><!-- doxytag: member="QwtPlot::axisScaleEngine" ref="a3e29973bcd6c879056ad655de8f667d8" args="(int axisId) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_qwt_scale_engine.html">QwtScaleEngine</a> * QwtPlot::axisScaleEngine </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>axisId</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">axisId</td><td>axis index </td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Scale engine for a specific axis </dd></dl>

</div>
</div>
<a class="anchor" id="a619b65bb95090ab5a528e33a5014ae4f"></a><!-- doxytag: member="QwtPlot::axisScaleEngine" ref="a619b65bb95090ab5a528e33a5014ae4f" args="(int axisId)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="class_qwt_scale_engine.html">QwtScaleEngine</a> * QwtPlot::axisScaleEngine </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>axisId</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">axisId</td><td>axis index </td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Scale engine for a specific axis </dd></dl>

</div>
</div>
<a class="anchor" id="a6f5fa5348dec97f2531f7ec58e727bee"></a><!-- doxytag: member="QwtPlot::axisStepSize" ref="a6f5fa5348dec97f2531f7ec58e727bee" args="(int axisId) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double QwtPlot::axisStepSize </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>axisId</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Return the step size parameter, that has been set in setAxisScale. This doesn't need to be the step size of the current scale.</p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">axisId</td><td>axis index </td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>step size parameter value</dd></dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot.html#acef5ea818944b93b8695d0c16924eed6" title="Disable autoscaling and specify a fixed scale for a selected axis.">setAxisScale()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a7807148d386457345025571e2a8e0983"></a><!-- doxytag: member="QwtPlot::axisTitle" ref="a7807148d386457345025571e2a8e0983" args="(int axisId) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="class_qwt_text.html">QwtText</a> QwtPlot::axisTitle </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>axisId</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl class="return"><dt><b>Returns:</b></dt><dd>the title of a specified axis </dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">axisId</td><td>axis index </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="ac02c033b024a4ecbefcf1b0e93c91205"></a><!-- doxytag: member="QwtPlot::axisValid" ref="ac02c033b024a4ecbefcf1b0e93c91205" args="(int axisId)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool QwtPlot::axisValid </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>axisId</em></td><td>)</td>
          <td><code> [static, protected]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if the specified axis exists, otherwise <code>false</code> </dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">axisId</td><td>axis index </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a6b495d9b17962be6e098026441a1f7b8"></a><!-- doxytag: member="QwtPlot::axisWidget" ref="a6b495d9b17962be6e098026441a1f7b8" args="(int axisId) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_qwt_scale_widget.html">QwtScaleWidget</a> * QwtPlot::axisWidget </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>axisId</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl class="return"><dt><b>Returns:</b></dt><dd>specified axis, or NULL if axisId is invalid. </dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">axisId</td><td>axis index </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="ae3386e1d38f70864c4c019c0eb6a3d9d"></a><!-- doxytag: member="QwtPlot::axisWidget" ref="ae3386e1d38f70864c4c019c0eb6a3d9d" args="(int axisId)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="class_qwt_scale_widget.html">QwtScaleWidget</a> * QwtPlot::axisWidget </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>axisId</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl class="return"><dt><b>Returns:</b></dt><dd>specified axis, or NULL if axisId is invalid. </dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">axisId</td><td>axis index </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="aafcc82150034fbeb393ceb9f54ba2f1a"></a><!-- doxytag: member="QwtPlot::canvas" ref="aafcc82150034fbeb393ceb9f54ba2f1a" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="class_qwt_plot_canvas.html">QwtPlotCanvas</a> * QwtPlot::canvas </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl class="return"><dt><b>Returns:</b></dt><dd>the plot's canvas </dd></dl>

</div>
</div>
<a class="anchor" id="a31bea08461f58028fec6c2882f9a125c"></a><!-- doxytag: member="QwtPlot::canvas" ref="a31bea08461f58028fec6c2882f9a125c" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_qwt_plot_canvas.html">QwtPlotCanvas</a> * QwtPlot::canvas </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl class="return"><dt><b>Returns:</b></dt><dd>the plot's canvas </dd></dl>

</div>
</div>
<a class="anchor" id="a99109068ad7749dfe28074abe3cc49af"></a><!-- doxytag: member="QwtPlot::canvasBackground" ref="a99109068ad7749dfe28074abe3cc49af" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const QColor &amp; QwtPlot::canvasBackground </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Nothing else than: <a class="el" href="class_qwt_plot.html#aafcc82150034fbeb393ceb9f54ba2f1a">canvas()</a>-&gt;palette().color( QPalette::Normal, QColorGroup::Background);</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>the background color of the plotting area. </dd></dl>

</div>
</div>
<a class="anchor" id="a200c23f4574d857afc3f457999fcd0ce"></a><!-- doxytag: member="QwtPlot::canvasLineWidth" ref="a200c23f4574d857afc3f457999fcd0ce" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int QwtPlot::canvasLineWidth </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Nothing else than: <a class="el" href="class_qwt_plot.html#aafcc82150034fbeb393ceb9f54ba2f1a">canvas()</a>-&gt;lineWidth(), left for compatibility only. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>the border width of the plotting area </dd></dl>

</div>
</div>
<a class="anchor" id="aff5efd21f11ec91fb8f791799cb4db2f"></a><!-- doxytag: member="QwtPlot::canvasMap" ref="aff5efd21f11ec91fb8f791799cb4db2f" args="(int axisId) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="class_qwt_scale_map.html">QwtScaleMap</a> QwtPlot::canvasMap </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>axisId</em></td><td>)</td>
          <td> const<code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">axisId</td><td>Axis </td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Map for the axis on the canvas. With this map pixel coordinates can translated to plot coordinates and vice versa. </dd></dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_scale_map.html" title="A scale map.">QwtScaleMap</a>, <a class="el" href="class_qwt_plot.html#afea608e3f40d0148aac5822f46fcb67a" title="Transform a value into a coordinate in the plotting region.">transform()</a>, <a class="el" href="class_qwt_plot.html#ab98066e62e3a9f574f8f1d482974ef5c">invTransform()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="ae2191d8ad33164b83aa2a14563f132a5"></a><!-- doxytag: member="QwtPlot::clear" ref="ae2191d8ad33164b83aa2a14563f132a5" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::clear </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td><code> [virtual, slot]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Remove all curves and markers </p>
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000001">Deprecated:</a></b></dt><dd>Use QwtPlotDeict::detachItems instead </dd></dl>

</div>
</div>
<a class="anchor" id="acb2e402e05c693433ed7e84696fbdfc0"></a><!-- doxytag: member="QwtPlot::detachItems" ref="acb2e402e05c693433ed7e84696fbdfc0" args="(int rtti=QwtPlotItem::Rtti_PlotItem, bool autoDelete=true)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlotDict::detachItems </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>rtti</em> = <code>QwtPlotItem::Rtti_PlotItem</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>autoDelete</em> = <code>true</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td><code> [inherited]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Detach items from the dictionary</p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">rtti</td><td>In case of QwtPlotItem::Rtti_PlotItem detach all items otherwise only those items of the type rtti. </td></tr>
    <tr><td class="paramname">autoDelete</td><td>If true, delete all detached items </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="add1b88d8312e2671652d23f8181f2433"></a><!-- doxytag: member="QwtPlot::drawCanvas" ref="add1b88d8312e2671652d23f8181f2433" args="(QPainter *)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::drawCanvas </td>
          <td>(</td>
          <td class="paramtype">QPainter *&#160;</td>
          <td class="paramname"><em>painter</em></td><td>)</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Redraw the canvas. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">painter</td><td>Painter used for drawing</td></tr>
  </table>
  </dd>
</dl>
<dl class="warning"><dt><b>Warning:</b></dt><dd>drawCanvas calls drawItems what is also used for printing. Applications that like to add individual plot items better overload <a class="el" href="class_qwt_plot.html#af89d2b8b86e52188369327b3a5880e16">drawItems()</a> </dd></dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot.html#af89d2b8b86e52188369327b3a5880e16">drawItems()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="af89d2b8b86e52188369327b3a5880e16"></a><!-- doxytag: member="QwtPlot::drawItems" ref="af89d2b8b86e52188369327b3a5880e16" args="(QPainter *, const QRect &amp;, const QwtScaleMap maps[axisCnt], const QwtPlotPrintFilter &amp;) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::drawItems </td>
          <td>(</td>
          <td class="paramtype">QPainter *&#160;</td>
          <td class="paramname"><em>painter</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const QRect &amp;&#160;</td>
          <td class="paramname"><em>rect</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>&#160;</td>
          <td class="paramname"><em>map</em>[axisCnt], </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="class_qwt_plot_print_filter.html">QwtPlotPrintFilter</a> &amp;&#160;</td>
          <td class="paramname"><em>pfilter</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const<code> [protected, virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Redraw the canvas items. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">painter</td><td>Painter used for drawing </td></tr>
    <tr><td class="paramname">rect</td><td>Bounding rectangle where to paint </td></tr>
    <tr><td class="paramname">map</td><td>QwtPlot::axisCnt maps, mapping between plot and paint device coordinates </td></tr>
    <tr><td class="paramname">pfilter</td><td>Plot print filter </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="ab644f7a0a0566ff776c89cc225ce37d7"></a><!-- doxytag: member="QwtPlot::enableAxis" ref="ab644f7a0a0566ff776c89cc225ce37d7" args="(int axisId, bool tf=true)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::enableAxis </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>axisId</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>tf</em> = <code>true</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Enable or disable a specified axis. </p>
<p>When an axis is disabled, this only means that it is not visible on the screen. Curves, markers and can be attached to disabled axes, and transformation of screen coordinates into values works as normal.</p>
<p>Only xBottom and yLeft are enabled by default. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">axisId</td><td>axis index </td></tr>
    <tr><td class="paramname">tf</td><td><code>true</code> (enabled) or <code>false</code> (disabled) </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="af40d1bfdd9b6cd94e9981db8b254b961"></a><!-- doxytag: member="QwtPlot::event" ref="af40d1bfdd9b6cd94e9981db8b254b961" args="(QEvent *)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool QwtPlot::event </td>
          <td>(</td>
          <td class="paramtype">QEvent *&#160;</td>
          <td class="paramname"><em>e</em></td><td>)</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Adds handling of layout requests. </p>

</div>
</div>
<a class="anchor" id="afd1c65720e19e50aa083dabd5bbf88e8"></a><!-- doxytag: member="QwtPlot::grabProperties" ref="afd1c65720e19e50aa083dabd5bbf88e8" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">QString QwtPlot::grabProperties </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>This method is intended for manipulating the plot widget from a specific editor in the Qwt designer plugin.</p>
<dl class="warning"><dt><b>Warning:</b></dt><dd>The plot editor has never been implemented. </dd></dl>

</div>
</div>
<a class="anchor" id="a6e23cad2bce7b04a09f18fa139341d5c"></a><!-- doxytag: member="QwtPlot::insertLegend" ref="a6e23cad2bce7b04a09f18fa139341d5c" args="(QwtLegend *, LegendPosition=QwtPlot::RightLegend, double ratio=&#45;1.0)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::insertLegend </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="class_qwt_legend.html">QwtLegend</a> *&#160;</td>
          <td class="paramname"><em>legend</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="class_qwt_plot.html#a31aacb65b5c049dde8c34a0d8482661b">QwtPlot::LegendPosition</a>&#160;</td>
          <td class="paramname"><em>pos</em> = <code>QwtPlot::RightLegend</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>ratio</em> = <code>-1.0</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Insert a legend. </p>
<p>If the position legend is <code>QwtPlot::LeftLegend</code> or <code>QwtPlot::RightLegend</code> the legend will be organized in one column from top to down. Otherwise the legend items will be placed in a table with a best fit number of columns from left to right.</p>
<p>If pos != QwtPlot::ExternalLegend the plot widget will become parent of the legend. It will be deleted when the plot is deleted, or another legend is set with <a class="el" href="class_qwt_plot.html#a6e23cad2bce7b04a09f18fa139341d5c" title="Insert a legend.">insertLegend()</a>.</p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">legend</td><td>Legend </td></tr>
    <tr><td class="paramname">pos</td><td>The legend's position. For top/left position the number of colums will be limited to 1, otherwise it will be set to unlimited.</td></tr>
    <tr><td class="paramname">ratio</td><td>Ratio between legend and the bounding rect of title, canvas and axes. The legend will be shrinked if it would need more space than the given ratio. The ratio is limited to ]0.0 .. 1.0]. In case of &lt;= 0.0 it will be reset to the default ratio. The default vertical/horizontal ratio is 0.33/0.5.</td></tr>
  </table>
  </dd>
</dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot.html#aab1f2cf0e567e09a4c4bce3181c03ba0">legend()</a>, <a class="el" href="class_qwt_plot_layout.html#a6351a18b76e22d9e83d682d203599afc">QwtPlotLayout::legendPosition()</a>, <a class="el" href="class_qwt_plot_layout.html#a11c9695a68f95135841cb23212589f18" title="Specify the position of the legend.">QwtPlotLayout::setLegendPosition()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="ab98066e62e3a9f574f8f1d482974ef5c"></a><!-- doxytag: member="QwtPlot::invTransform" ref="ab98066e62e3a9f574f8f1d482974ef5c" args="(int axisId, int pos) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double QwtPlot::invTransform </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>axisId</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>pos</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Transform the x or y coordinate of a position in the drawing region into a value. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">axisId</td><td>axis index </td></tr>
    <tr><td class="paramname">pos</td><td>position </td></tr>
  </table>
  </dd>
</dl>
<dl class="warning"><dt><b>Warning:</b></dt><dd>The position can be an x or a y coordinate, depending on the specified axis. </dd></dl>

</div>
</div>
<a class="anchor" id="a9cbb1c5c22de93594b7e2524af108f55"></a><!-- doxytag: member="QwtPlot::itemList" ref="a9cbb1c5c22de93594b7e2524af108f55" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const QwtPlotItemList &amp; QwtPlotDict::itemList </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const<code> [inherited]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>A QwtPlotItemList of all attached plot items. </p>
<p>Use caution when iterating these lists, as removing/detaching an item will invalidate the iterator. Instead you can place pointers to objects to be removed in a removal list, and traverse that list later. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>List of all attached plot items. </dd></dl>

</div>
</div>
<a class="anchor" id="aab1f2cf0e567e09a4c4bce3181c03ba0"></a><!-- doxytag: member="QwtPlot::legend" ref="aab1f2cf0e567e09a4c4bce3181c03ba0" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="class_qwt_legend.html">QwtLegend</a> * QwtPlot::legend </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl class="return"><dt><b>Returns:</b></dt><dd>the plot's legend </dd></dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot.html#a6e23cad2bce7b04a09f18fa139341d5c" title="Insert a legend.">insertLegend()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a9635345324c02f9dd15980bf25804423"></a><!-- doxytag: member="QwtPlot::legend" ref="a9635345324c02f9dd15980bf25804423" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_qwt_legend.html">QwtLegend</a> * QwtPlot::legend </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl class="return"><dt><b>Returns:</b></dt><dd>the plot's legend </dd></dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot.html#a6e23cad2bce7b04a09f18fa139341d5c" title="Insert a legend.">insertLegend()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="abd9e17629dd7c142fed017ea5e347149"></a><!-- doxytag: member="QwtPlot::legendChecked" ref="abd9e17629dd7c142fed017ea5e347149" args="(QwtPlotItem *plotItem, bool on)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::legendChecked </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="class_qwt_plot_item.html">QwtPlotItem</a> *&#160;</td>
          <td class="paramname"><em>plotItem</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>on</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td><code> [signal]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>A signal which is emitted when the user has clicked on a legend item, which is in QwtLegend::CheckableItem mode</p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">plotItem</td><td>Corresponding plot item of the selected legend item </td></tr>
    <tr><td class="paramname">on</td><td>True when the legen item is checked</td></tr>
  </table>
  </dd>
</dl>
<dl class="note"><dt><b>Note:</b></dt><dd>clicks are disabled as default </dd></dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_legend.html#aedd86919e56a407bcdd2ae867a672dd1">QwtLegend::setItemMode()</a>, <a class="el" href="class_qwt_legend.html#a463c5542c6547c04050c912a5e500155">QwtLegend::itemMode()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a52b75d5548fbe04539b6297de53a2222"></a><!-- doxytag: member="QwtPlot::legendClicked" ref="a52b75d5548fbe04539b6297de53a2222" args="(QwtPlotItem *plotItem)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::legendClicked </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="class_qwt_plot_item.html">QwtPlotItem</a> *&#160;</td>
          <td class="paramname"><em>plotItem</em></td><td>)</td>
          <td><code> [signal]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>A signal which is emitted when the user has clicked on a legend item, which is in QwtLegend::ClickableItem mode.</p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">plotItem</td><td>Corresponding plot item of the selected legend item</td></tr>
  </table>
  </dd>
</dl>
<dl class="note"><dt><b>Note:</b></dt><dd>clicks are disabled as default </dd></dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_legend.html#aedd86919e56a407bcdd2ae867a672dd1">QwtLegend::setItemMode()</a>, <a class="el" href="class_qwt_legend.html#a463c5542c6547c04050c912a5e500155">QwtLegend::itemMode()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="ad41768a65a7cc426091c89d54e3c2ab2"></a><!-- doxytag: member="QwtPlot::legendItemChecked" ref="ad41768a65a7cc426091c89d54e3c2ab2" args="(bool)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::legendItemChecked </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>on</em></td><td>)</td>
          <td><code> [protected, virtual, slot]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Called internally when the legend has been checked Emits a <a class="el" href="class_qwt_plot.html#a52b75d5548fbe04539b6297de53a2222">legendClicked()</a> signal. </p>

</div>
</div>
<a class="anchor" id="ae1b53fe373a12b1558fca37fdc2f0a54"></a><!-- doxytag: member="QwtPlot::legendItemClicked" ref="ae1b53fe373a12b1558fca37fdc2f0a54" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::legendItemClicked </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td><code> [protected, virtual, slot]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Called internally when the legend has been clicked on. Emits a <a class="el" href="class_qwt_plot.html#a52b75d5548fbe04539b6297de53a2222">legendClicked()</a> signal. </p>

</div>
</div>
<a class="anchor" id="a546ff473d973512141cc974e3609ad14"></a><!-- doxytag: member="QwtPlot::margin" ref="a546ff473d973512141cc974e3609ad14" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int QwtPlot::margin </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl class="return"><dt><b>Returns:</b></dt><dd>margin </dd></dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot.html#a26f01ba1c3c85308db6cac67c5f1159c">setMargin()</a>, <a class="el" href="class_qwt_plot_layout.html#a358367bf229c02a7a062f9890a1b3507">QwtPlotLayout::margin()</a>, <a class="el" href="class_qwt_plot.html#a9156b14a6f67f6279a16fea063ce1d14">plotLayout()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a5a17d0ea2e9a977d48045e742f5b8cfd"></a><!-- doxytag: member="QwtPlot::minimumSizeHint" ref="a5a17d0ea2e9a977d48045e742f5b8cfd" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">QSize QwtPlot::minimumSizeHint </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const<code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return a minimum size hint. </p>

</div>
</div>
<a class="anchor" id="a6abb53bb19d8e931ba49bf439779f0ac"></a><!-- doxytag: member="QwtPlot::plotLayout" ref="a6abb53bb19d8e931ba49bf439779f0ac" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_qwt_plot_layout.html">QwtPlotLayout</a> * QwtPlot::plotLayout </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl class="return"><dt><b>Returns:</b></dt><dd>the plot's titel label. </dd></dl>

</div>
</div>
<a class="anchor" id="a9156b14a6f67f6279a16fea063ce1d14"></a><!-- doxytag: member="QwtPlot::plotLayout" ref="a9156b14a6f67f6279a16fea063ce1d14" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="class_qwt_plot_layout.html">QwtPlotLayout</a> * QwtPlot::plotLayout </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl class="return"><dt><b>Returns:</b></dt><dd>the plot's title </dd></dl>

</div>
</div>
<a class="anchor" id="a99ad643676cf0cd5f11478f154102df2"></a><!-- doxytag: member="QwtPlot::polish" ref="a99ad643676cf0cd5f11478f154102df2" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::polish </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Polish. </p>

</div>
</div>
<a class="anchor" id="adb2f14174770601e55d6822437c3fe26"></a><!-- doxytag: member="QwtPlot::print" ref="adb2f14174770601e55d6822437c3fe26" args="(QPaintDevice &amp;p, const QwtPlotPrintFilter &amp;=QwtPlotPrintFilter()) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::print </td>
          <td>(</td>
          <td class="paramtype">QPaintDevice &amp;&#160;</td>
          <td class="paramname"><em>paintDev</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="class_qwt_plot_print_filter.html">QwtPlotPrintFilter</a> &amp;&#160;</td>
          <td class="paramname"><em>pfilter</em> = <code><a class="el" href="class_qwt_plot_print_filter.html">QwtPlotPrintFilter</a>()</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Print the plot to a <code>QPaintDevice</code> (<code>QPrinter</code>) This function prints the contents of a <a class="el" href="class_qwt_plot.html" title="A 2-D plotting widget.">QwtPlot</a> instance to <code>QPaintDevice</code> object. The size is derived from its device metrics. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">paintDev</td><td>device to paint on, often a printer </td></tr>
    <tr><td class="paramname">pfilter</td><td>print filter</td></tr>
  </table>
  </dd>
</dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot_print_filter.html" title="A base class for plot print filters.">QwtPlotPrintFilter</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a2170b35727d35c9b9f4031f490789adc"></a><!-- doxytag: member="QwtPlot::print" ref="a2170b35727d35c9b9f4031f490789adc" args="(QPainter *, const QRect &amp;rect, const QwtPlotPrintFilter &amp;=QwtPlotPrintFilter()) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::print </td>
          <td>(</td>
          <td class="paramtype">QPainter *&#160;</td>
          <td class="paramname"><em>painter</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const QRect &amp;&#160;</td>
          <td class="paramname"><em>plotRect</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="class_qwt_plot_print_filter.html">QwtPlotPrintFilter</a> &amp;&#160;</td>
          <td class="paramname"><em>pfilter</em> = <code><a class="el" href="class_qwt_plot_print_filter.html">QwtPlotPrintFilter</a>()</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const<code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Paint the plot into a given rectangle. Paint the contents of a <a class="el" href="class_qwt_plot.html" title="A 2-D plotting widget.">QwtPlot</a> instance into a given rectangle. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">painter</td><td>Painter </td></tr>
    <tr><td class="paramname">plotRect</td><td>Bounding rectangle </td></tr>
    <tr><td class="paramname">pfilter</td><td>Print filter</td></tr>
  </table>
  </dd>
</dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot_print_filter.html" title="A base class for plot print filters.">QwtPlotPrintFilter</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a9a75d6dde87c3cd4a9bc0b2dff7ce00a"></a><!-- doxytag: member="QwtPlot::printCanvas" ref="a9a75d6dde87c3cd4a9bc0b2dff7ce00a" args="(QPainter *, const QRect &amp;boundingRect, const QRect &amp;canvasRect, const QwtScaleMap maps[axisCnt], const QwtPlotPrintFilter &amp;) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::printCanvas </td>
          <td>(</td>
          <td class="paramtype">QPainter *&#160;</td>
          <td class="paramname"><em>painter</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const QRect &amp;&#160;</td>
          <td class="paramname"><em>boundingRect</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const QRect &amp;&#160;</td>
          <td class="paramname"><em>canvasRect</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>&#160;</td>
          <td class="paramname"><em>map</em>[axisCnt], </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="class_qwt_plot_print_filter.html">QwtPlotPrintFilter</a> &amp;&#160;</td>
          <td class="paramname"><em>pfilter</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const<code> [protected, virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Print the canvas into a given rectangle.</p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">painter</td><td>Painter </td></tr>
    <tr><td class="paramname">map</td><td>Maps mapping between plot and paint device coordinates </td></tr>
    <tr><td class="paramname">boundingRect</td><td>Bounding rectangle </td></tr>
    <tr><td class="paramname">canvasRect</td><td>Canvas rectangle </td></tr>
    <tr><td class="paramname">pfilter</td><td>Print filter </td></tr>
  </table>
  </dd>
</dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot_print_filter.html" title="A base class for plot print filters.">QwtPlotPrintFilter</a> </dd></dl>

</div>
</div>
<a class="anchor" id="ae64c9c6f3a7a84c9a988c491bc73c71f"></a><!-- doxytag: member="QwtPlot::printLegend" ref="ae64c9c6f3a7a84c9a988c491bc73c71f" args="(QPainter *, const QRect &amp;) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::printLegend </td>
          <td>(</td>
          <td class="paramtype">QPainter *&#160;</td>
          <td class="paramname"><em>painter</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const QRect &amp;&#160;</td>
          <td class="paramname"><em>rect</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const<code> [protected, virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Print the legend into a given rectangle.</p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">painter</td><td>Painter </td></tr>
    <tr><td class="paramname">rect</td><td>Bounding rectangle </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a9d8ac6339a83158a0e78def13489d0ca"></a><!-- doxytag: member="QwtPlot::printLegendItem" ref="a9d8ac6339a83158a0e78def13489d0ca" args="(QPainter *, const QWidget *, const QRect &amp;) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::printLegendItem </td>
          <td>(</td>
          <td class="paramtype">QPainter *&#160;</td>
          <td class="paramname"><em>painter</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const QWidget *&#160;</td>
          <td class="paramname"><em>w</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const QRect &amp;&#160;</td>
          <td class="paramname"><em>rect</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const<code> [protected, virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Print the legend item into a given rectangle.</p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">painter</td><td>Painter </td></tr>
    <tr><td class="paramname">w</td><td>Widget representing a legend item </td></tr>
    <tr><td class="paramname">rect</td><td>Bounding rectangle </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="acc8d22136018342a7f89a341e6fe8cd3"></a><!-- doxytag: member="QwtPlot::printScale" ref="acc8d22136018342a7f89a341e6fe8cd3" args="(QPainter *, int axisId, int startDist, int endDist, int baseDist, const QRect &amp;) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::printScale </td>
          <td>(</td>
          <td class="paramtype">QPainter *&#160;</td>
          <td class="paramname"><em>painter</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>axisId</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>startDist</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>endDist</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>baseDist</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const QRect &amp;&#160;</td>
          <td class="paramname"><em>rect</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const<code> [protected, virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Paint a scale into a given rectangle. Paint the scale into a given rectangle. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">painter</td><td>Painter </td></tr>
    <tr><td class="paramname">axisId</td><td>Axis </td></tr>
    <tr><td class="paramname">startDist</td><td>Start border distance </td></tr>
    <tr><td class="paramname">endDist</td><td>End border distance </td></tr>
    <tr><td class="paramname">baseDist</td><td>Base distance </td></tr>
    <tr><td class="paramname">rect</td><td>Bounding rectangle </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a5ec342f0b38eb646f3cc6da8457b234a"></a><!-- doxytag: member="QwtPlot::printTitle" ref="a5ec342f0b38eb646f3cc6da8457b234a" args="(QPainter *, const QRect &amp;) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::printTitle </td>
          <td>(</td>
          <td class="paramtype">QPainter *&#160;</td>
          <td class="paramname"><em>painter</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const QRect &amp;&#160;</td>
          <td class="paramname"><em>rect</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const<code> [protected, virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Print the title into a given rectangle.</p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">painter</td><td>Painter </td></tr>
    <tr><td class="paramname">rect</td><td>Bounding rectangle </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a7b094e29b8e92b00e36517d0d7633c4b"></a><!-- doxytag: member="QwtPlot::replot" ref="a7b094e29b8e92b00e36517d0d7633c4b" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::replot </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td><code> [virtual, slot]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Redraw the plot. </p>
<p>If the autoReplot option is not set (which is the default) or if any curves are attached to raw data, the plot has to be refreshed explicitly in order to make changes visible.</p>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot.html#a654934ec2ad167101dacb5174f5172d6" title="Set or reset the autoReplot option.">setAutoReplot()</a> </dd></dl>
<dl class="warning"><dt><b>Warning:</b></dt><dd>Calls <a class="el" href="class_qwt_plot.html#aafcc82150034fbeb393ceb9f54ba2f1a">canvas()</a>-&gt;repaint, take care of infinite recursions </dd></dl>

</div>
</div>
<a class="anchor" id="aa4d5f73681880b9770bb6a604c415987"></a><!-- doxytag: member="QwtPlot::resizeEvent" ref="aa4d5f73681880b9770bb6a604c415987" args="(QResizeEvent *e)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::resizeEvent </td>
          <td>(</td>
          <td class="paramtype">QResizeEvent *&#160;</td>
          <td class="paramname"><em>e</em></td><td>)</td>
          <td><code> [protected, virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Resize and update internal layout </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">e</td><td>Resize event </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a3291431f0a9cca5b2affc5adf17bbdfb"></a><!-- doxytag: member="QwtPlot::setAutoDelete" ref="a3291431f0a9cca5b2affc5adf17bbdfb" args="(bool)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlotDict::setAutoDelete </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>autoDelete</em></td><td>)</td>
          <td><code> [inherited]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>En/Disable Auto deletion</p>
<p>If Auto deletion is on all attached plot items will be deleted in the destructor of <a class="el" href="class_qwt_plot_dict.html" title="A dictionary for plot items.">QwtPlotDict</a>. The default value is on.</p>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot_dict.html#a10dfae8b454fa4258b0372366013507a">autoDelete()</a>, attachItem() </dd></dl>

</div>
</div>
<a class="anchor" id="a654934ec2ad167101dacb5174f5172d6"></a><!-- doxytag: member="QwtPlot::setAutoReplot" ref="a654934ec2ad167101dacb5174f5172d6" args="(bool tf=true)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::setAutoReplot </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>tf</em> = <code>true</code></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Set or reset the autoReplot option. </p>
<p>If the autoReplot option is set, the plot will be updated implicitly by manipulating member functions. Since this may be time-consuming, it is recommended to leave this option switched off and call <a class="el" href="class_qwt_plot.html#a7b094e29b8e92b00e36517d0d7633c4b" title="Redraw the plot.">replot()</a> explicitly if necessary.</p>
<p>The autoReplot option is set to false by default, which means that the user has to call <a class="el" href="class_qwt_plot.html#a7b094e29b8e92b00e36517d0d7633c4b" title="Redraw the plot.">replot()</a> in order to make changes visible. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">tf</td><td><code>true</code> or <code>false</code>. Defaults to <code>true</code>. </td></tr>
  </table>
  </dd>
</dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot.html#a7b094e29b8e92b00e36517d0d7633c4b" title="Redraw the plot.">replot()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a8138eee4eb6989a1f6d93bd34b9c4cfa"></a><!-- doxytag: member="QwtPlot::setAxisAutoScale" ref="a8138eee4eb6989a1f6d93bd34b9c4cfa" args="(int axisId)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::setAxisAutoScale </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>axisId</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Enable autoscaling for a specified axis. </p>
<p>This member function is used to switch back to autoscaling mode after a fixed scale has been set. Autoscaling is enabled by default.</p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">axisId</td><td>axis index </td></tr>
  </table>
  </dd>
</dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot.html#acef5ea818944b93b8695d0c16924eed6" title="Disable autoscaling and specify a fixed scale for a selected axis.">setAxisScale()</a>, <a class="el" href="class_qwt_plot.html#a2365da57b983eb39752fa4f6378c225a" title="Disable autoscaling and specify a fixed scale for a selected axis.">setAxisScaleDiv()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a9a14e57652c016f40388a68e556917e3"></a><!-- doxytag: member="QwtPlot::setAxisFont" ref="a9a14e57652c016f40388a68e556917e3" args="(int axisId, const QFont &amp;f)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::setAxisFont </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>axisId</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const QFont &amp;&#160;</td>
          <td class="paramname"><em>f</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Change the font of an axis. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">axisId</td><td>axis index </td></tr>
    <tr><td class="paramname">f</td><td>font </td></tr>
  </table>
  </dd>
</dl>
<dl class="warning"><dt><b>Warning:</b></dt><dd>This function changes the font of the tick labels, not of the axis title. </dd></dl>

</div>
</div>
<a class="anchor" id="a19f1b67fa79b80c712cf5f52b97ea0c5"></a><!-- doxytag: member="QwtPlot::setAxisLabelAlignment" ref="a19f1b67fa79b80c712cf5f52b97ea0c5" args="(int axisId, Qt::Alignment)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::setAxisLabelAlignment </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>axisId</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">Qt::Alignment&#160;</td>
          <td class="paramname"><em>alignment</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Change the alignment of the tick labels </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">axisId</td><td>axis index </td></tr>
    <tr><td class="paramname">alignment</td><td>Or'd Qt::AlignmentFlags &lt;see qnamespace.h&gt; </td></tr>
  </table>
  </dd>
</dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_scale_draw.html#a3df0a1fe4a498ef028a5348e54bfaa7f" title="Change the label flags.">QwtScaleDraw::setLabelAlignment()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="ad5fa7aa01c88eab38ad64b131584f977"></a><!-- doxytag: member="QwtPlot::setAxisLabelRotation" ref="ad5fa7aa01c88eab38ad64b131584f977" args="(int axisId, double rotation)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::setAxisLabelRotation </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>axisId</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>rotation</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Rotate all tick labels </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">axisId</td><td>axis index </td></tr>
    <tr><td class="paramname">rotation</td><td>Angle in degrees. When changing the label rotation, the label alignment might be adjusted too. </td></tr>
  </table>
  </dd>
</dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_scale_draw.html#abf5881339fddde65a00c1dd391023320">QwtScaleDraw::setLabelRotation()</a>, <a class="el" href="class_qwt_plot.html#a19f1b67fa79b80c712cf5f52b97ea0c5">setAxisLabelAlignment()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a34df698558c9bd9c38bdd8ff04cc6c41"></a><!-- doxytag: member="QwtPlot::setAxisMaxMajor" ref="a34df698558c9bd9c38bdd8ff04cc6c41" args="(int axisId, int maxMajor)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::setAxisMaxMajor </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>axisId</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>maxMajor</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Set the maximum number of major scale intervals for a specified axis</p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">axisId</td><td>axis index </td></tr>
    <tr><td class="paramname">maxMajor</td><td>maximum number of major steps </td></tr>
  </table>
  </dd>
</dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot.html#a250fdf9506a71857d183983823a491d4">axisMaxMajor()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="aa45b271684d6202061f1afcfa70e7cf6"></a><!-- doxytag: member="QwtPlot::setAxisMaxMinor" ref="aa45b271684d6202061f1afcfa70e7cf6" args="(int axisId, int maxMinor)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::setAxisMaxMinor </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>axisId</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>maxMinor</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Set the maximum number of minor scale intervals for a specified axis</p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">axisId</td><td>axis index </td></tr>
    <tr><td class="paramname">maxMinor</td><td>maximum number of minor steps </td></tr>
  </table>
  </dd>
</dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot.html#adbe9b0fcfaf8a5baa49a3cb4ed425b42">axisMaxMinor()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="acef5ea818944b93b8695d0c16924eed6"></a><!-- doxytag: member="QwtPlot::setAxisScale" ref="acef5ea818944b93b8695d0c16924eed6" args="(int axisId, double min, double max, double step=0)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::setAxisScale </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>axisId</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>min</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>max</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>stepSize</em> = <code>0</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Disable autoscaling and specify a fixed scale for a selected axis. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">axisId</td><td>axis index </td></tr>
    <tr><td class="paramname">min</td><td></td></tr>
    <tr><td class="paramname">max</td><td>minimum and maximum of the scale </td></tr>
    <tr><td class="paramname">stepSize</td><td>Major step size. If <code>step == 0</code>, the step size is calculated automatically using the maxMajor setting. </td></tr>
  </table>
  </dd>
</dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot.html#a34df698558c9bd9c38bdd8ff04cc6c41">setAxisMaxMajor()</a>, <a class="el" href="class_qwt_plot.html#a8138eee4eb6989a1f6d93bd34b9c4cfa" title="Enable autoscaling for a specified axis.">setAxisAutoScale()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a2365da57b983eb39752fa4f6378c225a"></a><!-- doxytag: member="QwtPlot::setAxisScaleDiv" ref="a2365da57b983eb39752fa4f6378c225a" args="(int axisId, const QwtScaleDiv &amp;)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::setAxisScaleDiv </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>axisId</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> &amp;&#160;</td>
          <td class="paramname"><em>scaleDiv</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Disable autoscaling and specify a fixed scale for a selected axis. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">axisId</td><td>axis index </td></tr>
    <tr><td class="paramname">scaleDiv</td><td>Scale division </td></tr>
  </table>
  </dd>
</dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot.html#acef5ea818944b93b8695d0c16924eed6" title="Disable autoscaling and specify a fixed scale for a selected axis.">setAxisScale()</a>, <a class="el" href="class_qwt_plot.html#a8138eee4eb6989a1f6d93bd34b9c4cfa" title="Enable autoscaling for a specified axis.">setAxisAutoScale()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a956a14b08e016eb83768ff4187d3849d"></a><!-- doxytag: member="QwtPlot::setAxisScaleDraw" ref="a956a14b08e016eb83768ff4187d3849d" args="(int axisId, QwtScaleDraw *)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::setAxisScaleDraw </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>axisId</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="class_qwt_scale_draw.html">QwtScaleDraw</a> *&#160;</td>
          <td class="paramname"><em>scaleDraw</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Set a scale draw. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">axisId</td><td>axis index </td></tr>
    <tr><td class="paramname">scaleDraw</td><td>object responsible for drawing scales.</td></tr>
  </table>
  </dd>
</dl>
<p>By passing scaleDraw it is possible to extend <a class="el" href="class_qwt_scale_draw.html" title="A class for drawing scales.">QwtScaleDraw</a> functionality and let it take place in <a class="el" href="class_qwt_plot.html" title="A 2-D plotting widget.">QwtPlot</a>. Please note that scaleDraw has to be created with new and will be deleted by the corresponding QwtScale member ( like a child object ).</p>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_scale_draw.html" title="A class for drawing scales.">QwtScaleDraw</a>, <a class="el" href="class_qwt_scale_widget.html" title="A Widget which contains a scale.">QwtScaleWidget</a> </dd></dl>
<dl class="warning"><dt><b>Warning:</b></dt><dd>The attributes of scaleDraw will be overwritten by those of the previous <a class="el" href="class_qwt_scale_draw.html" title="A class for drawing scales.">QwtScaleDraw</a>. </dd></dl>

</div>
</div>
<a class="anchor" id="abf09452377b53e584a5086354a134d78"></a><!-- doxytag: member="QwtPlot::setAxisScaleEngine" ref="abf09452377b53e584a5086354a134d78" args="(int axisId, QwtScaleEngine *)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::setAxisScaleEngine </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>axisId</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="class_qwt_scale_engine.html">QwtScaleEngine</a> *&#160;</td>
          <td class="paramname"><em>scaleEngine</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Change the scale engine for an axis</p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">axisId</td><td>axis index </td></tr>
    <tr><td class="paramname">scaleEngine</td><td>Scale engine</td></tr>
  </table>
  </dd>
</dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot.html#a619b65bb95090ab5a528e33a5014ae4f">axisScaleEngine()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a5d60f1836e05e5cc5c7fe9570d6a608a"></a><!-- doxytag: member="QwtPlot::setAxisTitle" ref="a5d60f1836e05e5cc5c7fe9570d6a608a" args="(int axisId, const QString &amp;)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::setAxisTitle </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>axisId</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const QString &amp;&#160;</td>
          <td class="paramname"><em>title</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Change the title of a specified axis. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">axisId</td><td>axis index </td></tr>
    <tr><td class="paramname">title</td><td>axis title </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="ad134a193ab40ce33743365558d0303c4"></a><!-- doxytag: member="QwtPlot::setAxisTitle" ref="ad134a193ab40ce33743365558d0303c4" args="(int axisId, const QwtText &amp;)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::setAxisTitle </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>axisId</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="class_qwt_text.html">QwtText</a> &amp;&#160;</td>
          <td class="paramname"><em>title</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Change the title of a specified axis. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">axisId</td><td>axis index </td></tr>
    <tr><td class="paramname">title</td><td>axis title </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a1a56902d2109fcf709ad1dbd35f0b859"></a><!-- doxytag: member="QwtPlot::setCanvasBackground" ref="a1a56902d2109fcf709ad1dbd35f0b859" args="(const QColor &amp;c)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::setCanvasBackground </td>
          <td>(</td>
          <td class="paramtype">const QColor &amp;&#160;</td>
          <td class="paramname"><em>c</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Change the background of the plotting area. </p>
<p>Sets c to QColorGroup::Background of all colorgroups of the palette of the canvas. Using <a class="el" href="class_qwt_plot.html#aafcc82150034fbeb393ceb9f54ba2f1a">canvas()</a>-&gt;setPalette() is a more powerful way to set these colors. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">c</td><td>new background color </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a5af96e90be286753d524bdb042917618"></a><!-- doxytag: member="QwtPlot::setCanvasLineWidth" ref="a5af96e90be286753d524bdb042917618" args="(int w)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::setCanvasLineWidth </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>w</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Change the border width of the plotting area Nothing else than <a class="el" href="class_qwt_plot.html#aafcc82150034fbeb393ceb9f54ba2f1a">canvas()</a>-&gt;setLineWidth(w), left for compatibility only. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">w</td><td>new border width </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a26f01ba1c3c85308db6cac67c5f1159c"></a><!-- doxytag: member="QwtPlot::setMargin" ref="a26f01ba1c3c85308db6cac67c5f1159c" args="(int margin)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::setMargin </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>margin</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Change the margin of the plot. The margin is the space around all components.</p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">margin</td><td>new margin </td></tr>
  </table>
  </dd>
</dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot_layout.html#a67fc75a6f4c4d368d629841df1c5e6a5">QwtPlotLayout::setMargin()</a>, <a class="el" href="class_qwt_plot.html#a546ff473d973512141cc974e3609ad14">margin()</a>, <a class="el" href="class_qwt_plot.html#a9156b14a6f67f6279a16fea063ce1d14">plotLayout()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a032ced8ddfad7483a372214954203719"></a><!-- doxytag: member="QwtPlot::setTitle" ref="a032ced8ddfad7483a372214954203719" args="(const QwtText &amp;t)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::setTitle </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="class_qwt_text.html">QwtText</a> &amp;&#160;</td>
          <td class="paramname"><em>title</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Change the plot's title </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">title</td><td>New title </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a9a7f0b219b404e5bed5dfca26c5c06a7"></a><!-- doxytag: member="QwtPlot::setTitle" ref="a9a7f0b219b404e5bed5dfca26c5c06a7" args="(const QString &amp;)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::setTitle </td>
          <td>(</td>
          <td class="paramtype">const QString &amp;&#160;</td>
          <td class="paramname"><em>title</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Change the plot's title </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">title</td><td>New title </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a8e25bdd9b085344227a7f9e218ce557c"></a><!-- doxytag: member="QwtPlot::sizeHint" ref="a8e25bdd9b085344227a7f9e218ce557c" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">QSize QwtPlot::sizeHint </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const<code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Return sizeHint </p>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot.html#a5a17d0ea2e9a977d48045e742f5b8cfd" title="Return a minimum size hint.">minimumSizeHint()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a1ae4b2e10f6691b7f1a14af70f743e2c"></a><!-- doxytag: member="QwtPlot::title" ref="a1ae4b2e10f6691b7f1a14af70f743e2c" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="class_qwt_text.html">QwtText</a> QwtPlot::title </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl class="return"><dt><b>Returns:</b></dt><dd>the plot's title </dd></dl>

</div>
</div>
<a class="anchor" id="abea1bb53b3f08fb085a1d954eb199078"></a><!-- doxytag: member="QwtPlot::titleLabel" ref="abea1bb53b3f08fb085a1d954eb199078" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_qwt_text_label.html">QwtTextLabel</a> * QwtPlot::titleLabel </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl class="return"><dt><b>Returns:</b></dt><dd>the plot's titel label. </dd></dl>

</div>
</div>
<a class="anchor" id="ac39356b86ed70ebf256a8ae964910206"></a><!-- doxytag: member="QwtPlot::titleLabel" ref="ac39356b86ed70ebf256a8ae964910206" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="class_qwt_text_label.html">QwtTextLabel</a> * QwtPlot::titleLabel </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl class="return"><dt><b>Returns:</b></dt><dd>the plot's titel label. </dd></dl>

</div>
</div>
<a class="anchor" id="afea608e3f40d0148aac5822f46fcb67a"></a><!-- doxytag: member="QwtPlot::transform" ref="afea608e3f40d0148aac5822f46fcb67a" args="(int axisId, double value) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int QwtPlot::transform </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>axisId</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>value</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Transform a value into a coordinate in the plotting region. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">axisId</td><td>axis index </td></tr>
    <tr><td class="paramname">value</td><td>value </td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>X or y coordinate in the plotting region corresponding to the value. </dd></dl>

</div>
</div>
<a class="anchor" id="a1fb2dbc3697a66024d48c08b1d18f8a5"></a><!-- doxytag: member="QwtPlot::updateAxes" ref="a1fb2dbc3697a66024d48c08b1d18f8a5" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::updateAxes </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Rebuild the scales. </p>

</div>
</div>
<a class="anchor" id="ad470068832406086d6823109d8d7f050"></a><!-- doxytag: member="QwtPlot::updateLayout" ref="ad470068832406086d6823109d8d7f050" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::updateLayout </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Adjust plot content to its current size. </p>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot.html#aa4d5f73681880b9770bb6a604c415987">resizeEvent()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a6455596162a69876a3504c0017531cf3"></a><!-- doxytag: member="QwtPlot::updateTabOrder" ref="a6455596162a69876a3504c0017531cf3" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void QwtPlot::updateTabOrder </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td><code> [protected, virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Update the focus tab order</p>
<p>The order is changed so that the canvas will be in front of the first legend item, or behind the last legend item - depending on the position of the legend. </p>

</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>Generated by&#160;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.3 </small></address>
</body>
</html>