File: index-all.html

package info (click to toggle)
jcharts 0.7.5%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,612 kB
  • sloc: java: 8,679; xml: 191; jsp: 190; makefile: 10
file content (3707 lines) | stat: -rw-r--r-- 338,101 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN""http://www.w3.org/TR/REC-html40/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc on Sun Nov 02 08:29:08 EST 2003 -->
<TITLE>
Index (jCharts-0.7.5 API)
</TITLE>
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
</HEAD>
<SCRIPT>
function asd()
{
parent.document.title="Index (jCharts-0.7.5 API)";
}
</SCRIPT>
<BODY BGCOLOR="white" onload="asd();">

<!-- ========== START OF NAVBAR ========== -->
<A NAME="navbar_top"><!-- --></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0">
<TR>
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">
  <TR ALIGN="center" VALIGN="top">
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
  </TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>

<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
&nbsp;PREV&nbsp;
&nbsp;NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
  <A HREF="index.html" TARGET="_top"><B>FRAMES</B></A>  &nbsp;
&nbsp;<A HREF="index-all.html" TARGET="_top"><B>NO FRAMES</B></A>  &nbsp;
&nbsp;
<SCRIPT>
  <!--
  if(window==top) {
    document.writeln('<A HREF="allclasses-noframe.html" TARGET=""><B>All Classes</B></A>');
  }
  //-->
</SCRIPT>
<NOSCRIPT>
<A HREF="allclasses-noframe.html" TARGET=""><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<!-- =========== END OF NAVBAR =========== -->

<A HREF="#_A_">A</A> <A HREF="#_B_">B</A> <A HREF="#_C_">C</A> <A HREF="#_D_">D</A> <A HREF="#_E_">E</A> <A HREF="#_F_">F</A> <A HREF="#_G_">G</A> <A HREF="#_H_">H</A> <A HREF="#_I_">I</A> <A HREF="#_J_">J</A> <A HREF="#_L_">L</A> <A HREF="#_M_">M</A> <A HREF="#_N_">N</A> <A HREF="#_O_">O</A> <A HREF="#_P_">P</A> <A HREF="#_R_">R</A> <A HREF="#_S_">S</A> <A HREF="#_T_">T</A> <A HREF="#_U_">U</A> <A HREF="#_V_">V</A> <A HREF="#_W_">W</A> <A HREF="#_X_">X</A> <A HREF="#_Y_">Y</A> <A HREF="#_Z_">Z</A> <HR>
<A NAME="_A_"><!-- --></A><H2>
<B>A</B></H2>
<DL>
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelPosition.html#ABOVE_ZERO_LINE"><B>ABOVE_ZERO_LINE</B></A> - 
Static variable in class org.jCharts.axisChart.customRenderers.axisValue.renderers.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelPosition.html">ValueLabelPosition</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/TextTag.html#addAttribute(java.lang.String, java.lang.Object)"><B>addAttribute(String, Object)</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTag.html">TextTag</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/BarValueGroup.html#addBarValue(int, double, java.awt.geom.Rectangle2D.Float)"><B>addBarValue(int, double, Rectangle2D.Float)</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/BarValueGroup.html">BarValueGroup</A>
<DD>Adds a bar value for the given data item, if barValues are on
<DT><A HREF="org/jCharts/imageMap/PolyMapArea.html#addCoordinate(int, float, float)"><B>addCoordinate(int, float, float)</B></A> - 
Method in class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/PolyMapArea.html">PolyMapArea</A>
<DD>Adds the x, y coordinate at the specified index.
<DT><A HREF="org/jCharts/chartData/ScatterPlotDataSet.html#addDataPoints(java.awt.geom.Point2D.Double[], java.awt.Paint, java.lang.String)"><B>addDataPoints(Point2D.Double[], Paint, String)</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/ScatterPlotDataSet.html">ScatterPlotDataSet</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/HTMLGenerator.html#addField(java.lang.String, java.lang.Object)"><B>addField(String, Object)</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/HTMLGenerator.html">HTMLGenerator</A>
<DD>Adds passed field to table.
<DT><A HREF="org/jCharts/chartData/AxisDataSeries.html#addIAxisPlotDataSet(org.jCharts.chartData.interfaces.IAxisPlotDataSet)"><B>addIAxisPlotDataSet(IAxisPlotDataSet)</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/AxisDataSeries.html">AxisDataSeries</A>
<DD>Adds the passed IAxisPlotDataSet to the series
<DT><A HREF="org/jCharts/chartData/interfaces/IAxisDataSeries.html#addIAxisPlotDataSet(org.jCharts.chartData.interfaces.IAxisPlotDataSet)"><B>addIAxisPlotDataSet(IAxisPlotDataSet)</B></A> - 
Method in interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IAxisDataSeries.html">IAxisDataSeries</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/HTMLGenerator.html#addImage(java.lang.String, org.jCharts.imageMap.ImageMap)"><B>addImage(String, ImageMap)</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/HTMLGenerator.html">HTMLGenerator</A>
<DD>Adds an image
<DT><A HREF="org/jCharts/imageMap/ImageMap.html#addImageMapArea(org.jCharts.imageMap.ImageMapArea)"><B>addImageMapArea(ImageMapArea)</B></A> - 
Method in class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/ImageMap.html">ImageMap</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/HTMLGenerator.html#addImageMapData(org.jCharts.imageMap.ImageMap, java.lang.String)"><B>addImageMapData(ImageMap, String)</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/HTMLGenerator.html">HTMLGenerator</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/NumericTagGroup.html#addLabel(double)"><B>addLabel(double)</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/NumericTagGroup.html">NumericTagGroup</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/TextTagGroup.html#addLabel(java.lang.String)"><B>addLabel(String)</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTagGroup.html">TextTagGroup</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/processors/TextProcessor.html#addLabel(java.lang.String, java.awt.Font, java.awt.font.FontRenderContext)"><B>addLabel(String, Font, FontRenderContext)</B></A> - 
Method in class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/TextProcessor.html">TextProcessor</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/HTMLGenerator.html#addLineBreak()"><B>addLineBreak()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/HTMLGenerator.html">HTMLGenerator</A>
<DD>Add line break
<DT><A HREF="org/jCharts/properties/AxisChartTypeProperties.html#addPostRenderEventListener(org.jCharts.axisChart.customRenderers.axisValue.PostAxisValueRenderListener)"><B>addPostRenderEventListener(PostAxisValueRenderListener)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisChartTypeProperties.html">AxisChartTypeProperties</A>
<DD>Allows you to get callbacks for custom implementations to render on the axis and to
 	control the renderering on the axis after a value is drawn.
<DT><A HREF="org/jCharts/properties/AxisChartTypeProperties.html#addPreRenderEventListener(org.jCharts.axisChart.customRenderers.axisValue.PreAxisValueRenderListener)"><B>addPreRenderEventListener(PreAxisValueRenderListener)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisChartTypeProperties.html">AxisChartTypeProperties</A>
<DD>Allows you to get callbacks for custom implementations to render on the axis and to
 	control the renderering on the axis before a value is drawn.
<DT><A HREF="org/jCharts/test/HTMLGenerator.html#addString(java.lang.Object)"><B>addString(Object)</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/HTMLGenerator.html">HTMLGenerator</A>
<DD>Adds a String
<DT><A HREF="org/jCharts/test/HTMLGenerator.html#addString(java.lang.String, java.lang.Object)"><B>addString(String, Object)</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/HTMLGenerator.html">HTMLGenerator</A>
<DD>Adds a String
<DT><A HREF="org/jCharts/test/HTMLGenerator.html#addTableRow(java.lang.String, java.lang.Object)"><B>addTableRow(String, Object)</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/HTMLGenerator.html">HTMLGenerator</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/LabelAxis.html#addTextTags()"><B>addTextTags()</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/LabelAxis.html">LabelAxis</A>
<DD><B>Deprecated.</B>&nbsp;Add the scale labels.
<DT><A HREF="org/jCharts/axisChart/axis/DataAxis.html#addTextTags()"><B>addTextTags()</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/DataAxis.html">DataAxis</A>
<DD><B>Deprecated.</B>&nbsp;Add all text labels to be display on this axis.
<DT><A HREF="org/jCharts/properties/util/ChartFont.html#affineTransform"><B>affineTransform</B></A> - 
Variable in class org.jCharts.properties.util.<A HREF="org/jCharts/properties/util/ChartFont.html">ChartFont</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/TestDataGenerator.html#ALL_FONTS"><B>ALL_FONTS</B></A> - 
Static variable in class org.jCharts.test.<A HREF="org/jCharts/test/TestDataGenerator.html">TestDataGenerator</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/AxisChart.html#allowHorizontalPlot()"><B>allowHorizontalPlot()</B></A> - 
Method in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/AxisChart.html">AxisChart</A>
<DD>We only allow horizontal plots for the Bar Chart types in this release.
<DT><A HREF="org/jCharts/axisChart/axis/LabelAxis.html#amDataAxis()"><B>amDataAxis()</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/LabelAxis.html">LabelAxis</A>
<DD><B>Deprecated.</B>&nbsp;&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/DataAxis.html#amDataAxis()"><B>amDataAxis()</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/DataAxis.html">DataAxis</A>
<DD><B>Deprecated.</B>&nbsp;&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/LabelAxis.html#amLabelAxis()"><B>amLabelAxis()</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/LabelAxis.html">LabelAxis</A>
<DD><B>Deprecated.</B>&nbsp;&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/DataAxis.html#amLabelAxis()"><B>amLabelAxis()</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/DataAxis.html">DataAxis</A>
<DD><B>Deprecated.</B>&nbsp;&nbsp;
<DT><A HREF="org/jCharts/types/ChartType.html#AREA"><B>AREA</B></A> - 
Static variable in class org.jCharts.types.<A HREF="org/jCharts/types/ChartType.html">ChartType</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/types/ChartType.html#AREA_STACKED"><B>AREA_STACKED</B></A> - 
Static variable in class org.jCharts.types.<A HREF="org/jCharts/types/ChartType.html">ChartType</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/AreaChart.html"><B>AreaChart</B></A> - class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/AreaChart.html">AreaChart</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/axisChart/AreaChart.html#AreaChart()"><B>AreaChart()</B></A> - 
Constructor for class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/AreaChart.html">AreaChart</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AreaChartProperties.html"><B>AreaChartProperties</B></A> - class org.jCharts.properties.<A HREF="org/jCharts/properties/AreaChartProperties.html">AreaChartProperties</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/properties/AreaChartProperties.html#AreaChartProperties()"><B>AreaChartProperties()</B></A> - 
Constructor for class org.jCharts.properties.<A HREF="org/jCharts/properties/AreaChartProperties.html">AreaChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AreaProperties.html"><B>AreaProperties</B></A> - class org.jCharts.properties.<A HREF="org/jCharts/properties/AreaProperties.html">AreaProperties</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/properties/AreaProperties.html#AreaProperties()"><B>AreaProperties()</B></A> - 
Constructor for class org.jCharts.properties.<A HREF="org/jCharts/properties/AreaProperties.html">AreaProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/imageMap/ImageMap.html#areas"><B>areas</B></A> - 
Variable in class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/ImageMap.html">ImageMap</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/imageMap/AreaShape.html"><B>AreaShape</B></A> - class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/AreaShape.html">AreaShape</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/imageMap/AreaShape.html#AreaShape(java.lang.String)"><B>AreaShape(String)</B></A> - 
Constructor for class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/AreaShape.html">AreaShape</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/AreaTestDriver.html"><B>AreaTestDriver</B></A> - class org.jCharts.test.<A HREF="org/jCharts/test/AreaTestDriver.html">AreaTestDriver</A>.<DD>This file provides examples of how to create all the different chart types provided by
  this package.<DT><A HREF="org/jCharts/test/AreaTestDriver.html#AreaTestDriver()"><B>AreaTestDriver()</B></A> - 
Constructor for class org.jCharts.test.<A HREF="org/jCharts/test/AreaTestDriver.html">AreaTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/HTMLGenerator.html#arrayToString(boolean[])"><B>arrayToString(boolean[])</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/HTMLGenerator.html">HTMLGenerator</A>
<DD>Adds an Array
<DT><A HREF="org/jCharts/test/HTMLGenerator.html#arrayToString(double[])"><B>arrayToString(double[])</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/HTMLGenerator.html">HTMLGenerator</A>
<DD>Adds an Array
<DT><A HREF="org/jCharts/test/HTMLGenerator.html#arrayToString(double[][])"><B>arrayToString(double[][])</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/HTMLGenerator.html">HTMLGenerator</A>
<DD>Adds an Array
<DT><A HREF="org/jCharts/test/HTMLGenerator.html#arrayToString(float[])"><B>arrayToString(float[])</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/HTMLGenerator.html">HTMLGenerator</A>
<DD>Adds an Array
<DT><A HREF="org/jCharts/test/HTMLGenerator.html#arrayToString(int[])"><B>arrayToString(int[])</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/HTMLGenerator.html">HTMLGenerator</A>
<DD>Adds an Array
<DT><A HREF="org/jCharts/test/HTMLGenerator.html#arrayToString(java.lang.Object[])"><B>arrayToString(Object[])</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/HTMLGenerator.html">HTMLGenerator</A>
<DD>Adds an Array
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelPosition.html#AT_TOP"><B>AT_TOP</B></A> - 
Static variable in class org.jCharts.axisChart.customRenderers.axisValue.renderers.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelPosition.html">ValueLabelPosition</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/TextTag.html#attributes"><B>attributes</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTag.html">TextTag</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/scale/AutomaticScaleCalculator.html"><B>AutomaticScaleCalculator</B></A> - class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/AutomaticScaleCalculator.html">AutomaticScaleCalculator</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/axisChart/axis/scale/AutomaticScaleCalculator.html#AutomaticScaleCalculator()"><B>AutomaticScaleCalculator()</B></A> - 
Constructor for class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/AutomaticScaleCalculator.html">AutomaticScaleCalculator</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html"><B>Axis</B></A> - class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelPosition.html#AXIS_BOTTOM"><B>AXIS_BOTTOM</B></A> - 
Static variable in class org.jCharts.axisChart.customRenderers.axisValue.renderers.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelPosition.html">ValueLabelPosition</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelPosition.html#AXIS_TOP"><B>AXIS_TOP</B></A> - 
Static variable in class org.jCharts.axisChart.customRenderers.axisValue.renderers.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelPosition.html">ValueLabelPosition</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#Axis(org.jCharts.axisChart.AxisChart, int)"><B>Axis(AxisChart, int)</B></A> - 
Constructor for class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>Constructor
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#axisChart"><B>axisChart</B></A> - 
Variable in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/BarValueGroup.html#axisChart"><B>axisChart</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/BarValueGroup.html">BarValueGroup</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/AxisChart.html"><B>AxisChart</B></A> - class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/AxisChart.html">AxisChart</A>.<DD>This Class is used to create all axis chart types.<DT><A HREF="org/jCharts/axisChart/AxisChart.html#AxisChart(org.jCharts.chartData.interfaces.IAxisDataSeries, org.jCharts.properties.ChartProperties, org.jCharts.properties.AxisProperties, org.jCharts.properties.LegendProperties, int, int)"><B>AxisChart(IAxisDataSeries, ChartProperties, AxisProperties, LegendProperties, int, int)</B></A> - 
Constructor for class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/AxisChart.html">AxisChart</A>
<DD>Constructor
<DT><A HREF="org/jCharts/chartData/processors/AxisChartDataProcessor.html"><B>AxisChartDataProcessor</B></A> - class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/AxisChartDataProcessor.html">AxisChartDataProcessor</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/chartData/processors/AxisChartDataProcessor.html#AxisChartDataProcessor()"><B>AxisChartDataProcessor()</B></A> - 
Constructor for class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/AxisChartDataProcessor.html">AxisChartDataProcessor</A>
<DD>Constructor
<DT><A HREF="org/jCharts/chartData/AxisChartDataSet.html"><B>AxisChartDataSet</B></A> - class org.jCharts.chartData.<A HREF="org/jCharts/chartData/AxisChartDataSet.html">AxisChartDataSet</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/chartData/AxisChartDataSet.html#AxisChartDataSet(double[][], java.lang.String[], java.awt.Paint[], org.jCharts.types.ChartType, org.jCharts.properties.ChartTypeProperties)"><B>AxisChartDataSet(double[][], String[], Paint[], ChartType, ChartTypeProperties)</B></A> - 
Constructor for class org.jCharts.chartData.<A HREF="org/jCharts/chartData/AxisChartDataSet.html">AxisChartDataSet</A>
<DD>Constructor
<DT><A HREF="org/jCharts/test/AxisChartTestBase.html#axisChartTest(java.lang.String, org.jCharts.test.AxisChartTestBase)"><B>axisChartTest(String, AxisChartTestBase)</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/AxisChartTestBase.html">AxisChartTestBase</A>
<DD>Test for LineChart
<DT><A HREF="org/jCharts/test/ScatterChartTestBase.html#axisChartTest(java.lang.String, org.jCharts.test.ScatterChartTestBase)"><B>axisChartTest(String, ScatterChartTestBase)</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/ScatterChartTestBase.html">ScatterChartTestBase</A>
<DD>Test for LineChart
<DT><A HREF="org/jCharts/test/AxisChartTestBase.html"><B>AxisChartTestBase</B></A> - class org.jCharts.test.<A HREF="org/jCharts/test/AxisChartTestBase.html">AxisChartTestBase</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/test/AxisChartTestBase.html#AxisChartTestBase()"><B>AxisChartTestBase()</B></A> - 
Constructor for class org.jCharts.test.<A HREF="org/jCharts/test/AxisChartTestBase.html">AxisChartTestBase</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisChartTypeProperties.html"><B>AxisChartTypeProperties</B></A> - class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisChartTypeProperties.html">AxisChartTypeProperties</A>.<DD>Common parent for all Chart type specific properties Objects.<DT><A HREF="org/jCharts/properties/AxisChartTypeProperties.html#AxisChartTypeProperties()"><B>AxisChartTypeProperties()</B></A> - 
Constructor for class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisChartTypeProperties.html">AxisChartTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/AxisDataSeries.html"><B>AxisDataSeries</B></A> - class org.jCharts.chartData.<A HREF="org/jCharts/chartData/AxisDataSeries.html">AxisDataSeries</A>.<DD>Collection of all IAxisChartDataSets to display in an AxisChart<DT><A HREF="org/jCharts/chartData/AxisDataSeries.html#AxisDataSeries(java.lang.String, java.lang.String, java.lang.String)"><B>AxisDataSeries(String, String, String)</B></A> - 
Constructor for class org.jCharts.chartData.<A HREF="org/jCharts/chartData/AxisDataSeries.html">AxisDataSeries</A>
<DD>Constructor
<DT><A HREF="org/jCharts/chartData/DataSeries.html#axisLabels"><B>axisLabels</B></A> - 
Variable in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/DataSeries.html">DataSeries</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#axisLabelsGroup"><B>axisLabelsGroup</B></A> - 
Variable in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/AxisChart.html#axisProperties"><B>axisProperties</B></A> - 
Variable in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/AxisChart.html">AxisChart</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/BarValueGroup.html#axisProperties"><B>axisProperties</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/BarValueGroup.html">BarValueGroup</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisProperties.html"><B>AxisProperties</B></A> - class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisProperties.html">AxisProperties</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/properties/AxisProperties.html#AxisProperties()"><B>AxisProperties()</B></A> - 
Constructor for class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisProperties.html">AxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisProperties.html#AxisProperties(boolean)"><B>AxisProperties(boolean)</B></A> - 
Constructor for class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisProperties.html">AxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisProperties.html#AxisProperties(org.jCharts.properties.LabelAxisProperties, org.jCharts.properties.LabelAxisProperties)"><B>AxisProperties(LabelAxisProperties, LabelAxisProperties)</B></A> - 
Constructor for class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisProperties.html">AxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#axisStroke"><B>axisStroke</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#axisTickMarkPixelLength"><B>axisTickMarkPixelLength</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#axisTitleChartFont"><B>axisTitleChartFont</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html"><B>AxisTypeProperties</B></A> - class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#AxisTypeProperties()"><B>AxisTypeProperties()</B></A> - 
Constructor for class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html"><B>AxisValueRenderEvent</B></A> - class org.jCharts.axisChart.customRenderers.axisValue.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html">AxisValueRenderEvent</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html#AxisValueRenderEvent(org.jCharts.axisChart.AxisChart, org.jCharts.chartData.interfaces.IAxisPlotDataSet, java.awt.Graphics2D, java.awt.geom.Rectangle2D.Float, float)"><B>AxisValueRenderEvent(AxisChart, IAxisPlotDataSet, Graphics2D, Rectangle2D.Float, float)</B></A> - 
Constructor for class org.jCharts.axisChart.customRenderers.axisValue.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html">AxisValueRenderEvent</A>
<DD>&nbsp;
</DL>
<HR>
<A NAME="_B_"><!-- --></A><H2>
<B>B</B></H2>
<DL>
<DT><A HREF="org/jCharts/properties/Properties.html#backgroundPaint"><B>backgroundPaint</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/Properties.html">Properties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/BackgroundRenderer.html"><B>BackgroundRenderer</B></A> - class org.jCharts.axisChart.customRenderers.axisValue.renderers.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/BackgroundRenderer.html">BackgroundRenderer</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/BackgroundRenderer.html#BackgroundRenderer(java.awt.Paint)"><B>BackgroundRenderer(Paint)</B></A> - 
Constructor for class org.jCharts.axisChart.customRenderers.axisValue.renderers.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/BackgroundRenderer.html">BackgroundRenderer</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/types/ChartType.html#BAR"><B>BAR</B></A> - 
Static variable in class org.jCharts.types.<A HREF="org/jCharts/types/ChartType.html">ChartType</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/types/ChartType.html#BAR_CLUSTERED"><B>BAR_CLUSTERED</B></A> - 
Static variable in class org.jCharts.types.<A HREF="org/jCharts/types/ChartType.html">ChartType</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/types/ChartType.html#BAR_STACKED"><B>BAR_STACKED</B></A> - 
Static variable in class org.jCharts.types.<A HREF="org/jCharts/types/ChartType.html">ChartType</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/BarChart.html"><B>BarChart</B></A> - class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/BarChart.html">BarChart</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/axisChart/BarChart.html#BarChart()"><B>BarChart()</B></A> - 
Constructor for class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/BarChart.html">BarChart</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/BarValueGroup.html#barChartProperties"><B>barChartProperties</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/BarValueGroup.html">BarValueGroup</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/BarChartProperties.html"><B>BarChartProperties</B></A> - class org.jCharts.properties.<A HREF="org/jCharts/properties/BarChartProperties.html">BarChartProperties</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/properties/BarChartProperties.html#BarChartProperties()"><B>BarChartProperties()</B></A> - 
Constructor for class org.jCharts.properties.<A HREF="org/jCharts/properties/BarChartProperties.html">BarChartProperties</A>
<DD>Constructor
<DT><A HREF="org/jCharts/properties/BarChartProperties.html#barOutlineStroke"><B>barOutlineStroke</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/BarChartProperties.html">BarChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/BarValueGroup.BarValue.html#barRect"><B>barRect</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/BarValueGroup.BarValue.html">BarValueGroup.BarValue</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/BarTestDriver.html"><B>BarTestDriver</B></A> - class org.jCharts.test.<A HREF="org/jCharts/test/BarTestDriver.html">BarTestDriver</A>.<DD>This file provides examples of how to create all the different chart types provided by
  this package.<DT><A HREF="org/jCharts/test/BarTestDriver.html#BarTestDriver()"><B>BarTestDriver()</B></A> - 
Constructor for class org.jCharts.test.<A HREF="org/jCharts/test/BarTestDriver.html">BarTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/BarValueGroup.html#barValueFont"><B>barValueFont</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/BarValueGroup.html">BarValueGroup</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/BarValueGroup.html#barValueFontColor"><B>barValueFontColor</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/BarValueGroup.html">BarValueGroup</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/BarValueGroup.html"><B>BarValueGroup</B></A> - class org.jCharts.chartText.<A HREF="org/jCharts/chartText/BarValueGroup.html">BarValueGroup</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/chartText/BarValueGroup.BarValue.html"><B>BarValueGroup.BarValue</B></A> - class org.jCharts.chartText.<A HREF="org/jCharts/chartText/BarValueGroup.BarValue.html">BarValueGroup.BarValue</A>.<DD>Helper class to handle a barValue - wraps TextTag
 Meant to be called only by BarValueGroup class.<DT><A HREF="org/jCharts/chartText/BarValueGroup.BarValue.html#BarValueGroup.BarValue(java.lang.String, java.awt.Font, java.awt.font.FontRenderContext, java.awt.geom.Rectangle2D.Float, int, boolean)"><B>BarValueGroup.BarValue(String, Font, FontRenderContext, Rectangle2D.Float, int, boolean)</B></A> - 
Constructor for class org.jCharts.chartText.<A HREF="org/jCharts/chartText/BarValueGroup.BarValue.html">BarValueGroup.BarValue</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/BarValueGroup.html#BarValueGroup(org.jCharts.axisChart.AxisChart, org.jCharts.chartData.interfaces.IAxisChartDataSet)"><B>BarValueGroup(AxisChart, IAxisChartDataSet)</B></A> - 
Constructor for class org.jCharts.chartText.<A HREF="org/jCharts/chartText/BarValueGroup.html">BarValueGroup</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/BarValueGroup.html#barValueItem"><B>barValueItem</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/BarValueGroup.html">BarValueGroup</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/BarValueGroup.html#barValuePosition"><B>barValuePosition</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/BarValueGroup.html">BarValueGroup</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/encoders/BinaryEncoderUtil.html"><B>BinaryEncoderUtil</B></A> - class org.jCharts.encoders.<A HREF="org/jCharts/encoders/BinaryEncoderUtil.html">BinaryEncoderUtil</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/encoders/BinaryEncoderUtil.html#BinaryEncoderUtil()"><B>BinaryEncoderUtil()</B></A> - 
Constructor for class org.jCharts.encoders.<A HREF="org/jCharts/encoders/BinaryEncoderUtil.html">BinaryEncoderUtil</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/PieChart2DProperties.html#borderPaint"><B>borderPaint</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/PieChart2DProperties.html">PieChart2DProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/PieChart2DProperties.html#borderStroke"><B>borderStroke</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/PieChart2DProperties.html">PieChart2DProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AreaProperties.html#borderStroke"><B>borderStroke</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/AreaProperties.html">AreaProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LegendAreaProperties.html#BOTTOM"><B>BOTTOM</B></A> - 
Static variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendAreaProperties.html">LegendAreaProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/Chart.html#bufferedImage"><B>bufferedImage</B></A> - 
Variable in class org.jCharts.<A HREF="org/jCharts/Chart.html">Chart</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/BarTestDriver.html#bug()"><B>bug()</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/BarTestDriver.html">BarTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/BarTestDriver.html#bug2()"><B>bug2()</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/BarTestDriver.html">BarTestDriver</A>
<DD>&nbsp;
</DL>
<HR>
<A NAME="_C_"><!-- --></A><H2>
<B>C</B></H2>
<DL>
<DT><A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html#calculate()"><B>calculate()</B></A> - 
Method in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html">ChartScale</A>
<DD>Compute yDelta, yStart, yEnd, segments and rounding.
<DT><A HREF="org/jCharts/Legend.html#calculateDrawingValues(org.jCharts.chartData.interfaces.IData)"><B>calculateDrawingValues(IData)</B></A> - 
Method in class org.jCharts.<A HREF="org/jCharts/Legend.html">Legend</A>
<DD>Calculates the width and height needed to display the Legend.
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelRenderer.html#calculateXHorizontalPlot(org.jCharts.axisChart.customRenderers.axisValue.AxisValueRenderEvent, org.jCharts.chartText.TextTag, boolean)"><B>calculateXHorizontalPlot(AxisValueRenderEvent, TextTag, boolean)</B></A> - 
Method in class org.jCharts.axisChart.customRenderers.axisValue.renderers.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelRenderer.html">ValueLabelRenderer</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelRenderer.html#calculateXVerticalPlot(org.jCharts.axisChart.customRenderers.axisValue.AxisValueRenderEvent, org.jCharts.chartText.TextTag)"><B>calculateXVerticalPlot(AxisValueRenderEvent, TextTag)</B></A> - 
Method in class org.jCharts.axisChart.customRenderers.axisValue.renderers.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelRenderer.html">ValueLabelRenderer</A>
<DD>Calculates the label x so that the label is centered on the scale item.
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelRenderer.html#calculateYHorizontalPlot(org.jCharts.axisChart.customRenderers.axisValue.AxisValueRenderEvent, org.jCharts.chartText.TextTag)"><B>calculateYHorizontalPlot(AxisValueRenderEvent, TextTag)</B></A> - 
Method in class org.jCharts.axisChart.customRenderers.axisValue.renderers.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelRenderer.html">ValueLabelRenderer</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelRenderer.html#calculateYVerticalPlot(org.jCharts.axisChart.customRenderers.axisValue.AxisValueRenderEvent, org.jCharts.chartText.TextTag, boolean)"><B>calculateYVerticalPlot(AxisValueRenderEvent, TextTag, boolean)</B></A> - 
Method in class org.jCharts.axisChart.customRenderers.axisValue.renderers.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelRenderer.html">ValueLabelRenderer</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/BarValueGroup.html#centerChart"><B>centerChart</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/BarValueGroup.html">BarValueGroup</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/Legend.html#chart"><B>chart</B></A> - 
Variable in class org.jCharts.<A HREF="org/jCharts/Legend.html">Legend</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/Chart.html"><B>Chart</B></A> - class org.jCharts.<A HREF="org/jCharts/Chart.html">Chart</A>.<DD>Base class of all charts.<DT><A HREF="org/jCharts/Chart.html#Chart(org.jCharts.properties.LegendProperties, org.jCharts.properties.ChartProperties, int, int)"><B>Chart(LegendProperties, ChartProperties, int, int)</B></A> - 
Constructor for class org.jCharts.<A HREF="org/jCharts/Chart.html">Chart</A>
<DD>Constructor
<DT><A HREF="org/jCharts/chartData/ChartDataException.html"><B>ChartDataException</B></A> - exception org.jCharts.chartData.<A HREF="org/jCharts/chartData/ChartDataException.html">ChartDataException</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/chartData/ChartDataException.html#ChartDataException(java.lang.String)"><B>ChartDataException(String)</B></A> - 
Constructor for class org.jCharts.chartData.<A HREF="org/jCharts/chartData/ChartDataException.html">ChartDataException</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/ChartDataException.html#ChartDataException(java.lang.String, java.lang.Throwable)"><B>ChartDataException(String, Throwable)</B></A> - 
Constructor for class org.jCharts.chartData.<A HREF="org/jCharts/chartData/ChartDataException.html">ChartDataException</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/TextTagGroup.html#chartFont"><B>chartFont</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTagGroup.html">TextTagGroup</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/util/ChartFont.html"><B>ChartFont</B></A> - class org.jCharts.properties.util.<A HREF="org/jCharts/properties/util/ChartFont.html">ChartFont</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/properties/util/ChartFont.html#ChartFont(java.awt.Font, java.awt.Paint)"><B>ChartFont(Font, Paint)</B></A> - 
Constructor for class org.jCharts.properties.util.<A HREF="org/jCharts/properties/util/ChartFont.html">ChartFont</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/util/ChartItem.html"><B>ChartItem</B></A> - class org.jCharts.properties.util.<A HREF="org/jCharts/properties/util/ChartItem.html">ChartItem</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/properties/util/ChartItem.html#ChartItem()"><B>ChartItem()</B></A> - 
Constructor for class org.jCharts.properties.util.<A HREF="org/jCharts/properties/util/ChartItem.html">ChartItem</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/util/ChartItem.html#ChartItem(java.awt.Paint)"><B>ChartItem(Paint)</B></A> - 
Constructor for class org.jCharts.properties.util.<A HREF="org/jCharts/properties/util/ChartItem.html">ChartItem</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LegendAreaProperties.html#chartPadding"><B>chartPadding</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendAreaProperties.html">LegendAreaProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/Chart.html#chartProperties"><B>chartProperties</B></A> - 
Variable in class org.jCharts.<A HREF="org/jCharts/Chart.html">Chart</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/ChartProperties.html"><B>ChartProperties</B></A> - class org.jCharts.properties.<A HREF="org/jCharts/properties/ChartProperties.html">ChartProperties</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/properties/ChartProperties.html#ChartProperties()"><B>ChartProperties()</B></A> - 
Constructor for class org.jCharts.properties.<A HREF="org/jCharts/properties/ChartProperties.html">ChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html"><B>ChartScale</B></A> - class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html">ChartScale</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html#ChartScale()"><B>ChartScale()</B></A> - 
Constructor for class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html">ChartScale</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html#ChartScale(double[][])"><B>ChartScale(double[][])</B></A> - 
Constructor for class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html">ChartScale</A>
<DD>Constructor.
<DT><A HREF="org/jCharts/properties/util/ChartStroke.html"><B>ChartStroke</B></A> - class org.jCharts.properties.util.<A HREF="org/jCharts/properties/util/ChartStroke.html">ChartStroke</A>.<DD>Immutable Class to simplify the use of Strokes in Charts<DT><A HREF="org/jCharts/properties/util/ChartStroke.html#ChartStroke(java.awt.Stroke, java.awt.Paint)"><B>ChartStroke(Stroke, Paint)</B></A> - 
Constructor for class org.jCharts.properties.util.<A HREF="org/jCharts/properties/util/ChartStroke.html">ChartStroke</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/HTMLGenerator.html#chartTableEnd()"><B>chartTableEnd()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/HTMLGenerator.html">HTMLGenerator</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/HTMLGenerator.html#chartTableRowEnd()"><B>chartTableRowEnd()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/HTMLGenerator.html">HTMLGenerator</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/HTMLGenerator.html#chartTableRowStart()"><B>chartTableRowStart()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/HTMLGenerator.html">HTMLGenerator</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/HTMLGenerator.html#chartTableStart(java.lang.String, java.lang.String, org.jCharts.imageMap.ImageMap)"><B>chartTableStart(String, String, ImageMap)</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/HTMLGenerator.html">HTMLGenerator</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/ChartTestDriver.html"><B>ChartTestDriver</B></A> - class org.jCharts.test.<A HREF="org/jCharts/test/ChartTestDriver.html">ChartTestDriver</A>.<DD>This file provides examples of how to create all the different chart types provided by
  this package.<DT><A HREF="org/jCharts/test/ChartTestDriver.html#ChartTestDriver()"><B>ChartTestDriver()</B></A> - 
Constructor for class org.jCharts.test.<A HREF="org/jCharts/test/ChartTestDriver.html">ChartTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/PieChartDataSet.html#chartTitle"><B>chartTitle</B></A> - 
Variable in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/PieChartDataSet.html">PieChartDataSet</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/AxisDataSeries.html#chartTitle"><B>chartTitle</B></A> - 
Variable in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/AxisDataSeries.html">AxisDataSeries</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/StockChartDataSet.html#chartType"><B>chartType</B></A> - 
Variable in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/StockChartDataSet.html">StockChartDataSet</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/AxisChartDataSet.html#chartType"><B>chartType</B></A> - 
Variable in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/AxisChartDataSet.html">AxisChartDataSet</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/types/ChartType.html"><B>ChartType</B></A> - class org.jCharts.types.<A HREF="org/jCharts/types/ChartType.html">ChartType</A>.<DD>Chart IntType constants to be used on data sets to specify how they should be plotted.<DT><A HREF="org/jCharts/types/ChartType.html#ChartType(int, boolean)"><B>ChartType(int, boolean)</B></A> - 
Constructor for class org.jCharts.types.<A HREF="org/jCharts/types/ChartType.html">ChartType</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/DataSet.html#chartTypeProperties"><B>chartTypeProperties</B></A> - 
Variable in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/DataSet.html">DataSet</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/ChartTypeProperties.html"><B>ChartTypeProperties</B></A> - class org.jCharts.properties.<A HREF="org/jCharts/properties/ChartTypeProperties.html">ChartTypeProperties</A>.<DD>Common parent for all Chart type specific properties Objects.<DT><A HREF="org/jCharts/properties/ChartTypeProperties.html#ChartTypeProperties()"><B>ChartTypeProperties()</B></A> - 
Constructor for class org.jCharts.properties.<A HREF="org/jCharts/properties/ChartTypeProperties.html">ChartTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/imageMap/AreaShape.html#CIRCLE"><B>CIRCLE</B></A> - 
Static variable in class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/AreaShape.html">AreaShape</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/imageMap/CircleMapArea.html"><B>CircleMapArea</B></A> - class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/CircleMapArea.html">CircleMapArea</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/imageMap/CircleMapArea.html#CircleMapArea(float, float, double, java.lang.String, java.lang.String)"><B>CircleMapArea(float, float, double, String, String)</B></A> - 
Constructor for class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/CircleMapArea.html">CircleMapArea</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/imageMap/CircleMapArea.html#CircleMapArea(float, float, java.awt.geom.Point2D.Double, java.lang.String)"><B>CircleMapArea(float, float, Point2D.Double, String)</B></A> - 
Constructor for class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/CircleMapArea.html">CircleMapArea</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/StockChartDataSet.html#close"><B>close</B></A> - 
Variable in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/StockChartDataSet.html">StockChartDataSet</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/types/StockChartDataType.html#CLOSE"><B>CLOSE</B></A> - 
Static variable in class org.jCharts.types.<A HREF="org/jCharts/types/StockChartDataType.html">StockChartDataType</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/StockChartProperties.html#closeLength"><B>closeLength</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/StockChartProperties.html">StockChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/StockChartProperties.html#closeStroke"><B>closeStroke</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/StockChartProperties.html">StockChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/ClusteredBarChart.html"><B>ClusteredBarChart</B></A> - class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/ClusteredBarChart.html">ClusteredBarChart</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/axisChart/ClusteredBarChart.html#ClusteredBarChart()"><B>ClusteredBarChart()</B></A> - 
Constructor for class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/ClusteredBarChart.html">ClusteredBarChart</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/ClusteredBarChartProperties.html"><B>ClusteredBarChartProperties</B></A> - class org.jCharts.properties.<A HREF="org/jCharts/properties/ClusteredBarChartProperties.html">ClusteredBarChartProperties</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/properties/ClusteredBarChartProperties.html#ClusteredBarChartProperties()"><B>ClusteredBarChartProperties()</B></A> - 
Constructor for class org.jCharts.properties.<A HREF="org/jCharts/properties/ClusteredBarChartProperties.html">ClusteredBarChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/ClusteredBarTestDriver.html"><B>ClusteredBarTestDriver</B></A> - class org.jCharts.test.<A HREF="org/jCharts/test/ClusteredBarTestDriver.html">ClusteredBarTestDriver</A>.<DD>This file provides examples of how to create all the different chart types provided by
  this package.<DT><A HREF="org/jCharts/test/ClusteredBarTestDriver.html#ClusteredBarTestDriver()"><B>ClusteredBarTestDriver()</B></A> - 
Constructor for class org.jCharts.test.<A HREF="org/jCharts/test/ClusteredBarTestDriver.html">ClusteredBarTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LegendAreaProperties.html#columnPadding"><B>columnPadding</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendAreaProperties.html">LegendAreaProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LegendAreaProperties.html#COLUMNS_AS_MANY_AS_NEEDED"><B>COLUMNS_AS_MANY_AS_NEEDED</B></A> - 
Static variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendAreaProperties.html">LegendAreaProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LegendAreaProperties.html#COLUMNS_FIT_TO_IMAGE"><B>COLUMNS_FIT_TO_IMAGE</B></A> - 
Static variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendAreaProperties.html">LegendAreaProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/ComboTestDriver.html"><B>ComboTestDriver</B></A> - class org.jCharts.test.<A HREF="org/jCharts/test/ComboTestDriver.html">ComboTestDriver</A>.<DD>This file provides examples of how to create all the different chart types provided by
  this package.<DT><A HREF="org/jCharts/test/ComboTestDriver.html#ComboTestDriver()"><B>ComboTestDriver()</B></A> - 
Constructor for class org.jCharts.test.<A HREF="org/jCharts/test/ComboTestDriver.html">ComboTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/DataAxis.html#computeAxisCoordinate(double)"><B>computeAxisCoordinate(double)</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/DataAxis.html">DataAxis</A>
<DD><B>Deprecated.</B>&nbsp;Takes a value and determines the screen coordinate it should be drawn at.
<DT><A HREF="org/jCharts/axisChart/axis/YAxis.html#computeAxisCoordinate(float, double, double)"><B>computeAxisCoordinate(float, double, double)</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/YAxis.html">YAxis</A>
<DD>Takes a value and determines the screen coordinate it should be drawn at.
<DT><A HREF="org/jCharts/axisChart/axis/XAxis.html#computeAxisCoordinate(float, double, double)"><B>computeAxisCoordinate(float, double, double)</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/XAxis.html">XAxis</A>
<DD>Takes a value and determines the screen coordinate it should be drawn at.
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#computeAxisTitleDimensions(java.lang.String, org.jCharts.properties.util.ChartFont)"><B>computeAxisTitleDimensions(String, ChartFont)</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/scale/UserDefinedScaleCalculator.html#computeIncrement()"><B>computeIncrement()</B></A> - 
Method in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/UserDefinedScaleCalculator.html">UserDefinedScaleCalculator</A>
<DD>Computes the axis increment WITHOUT taking into account the user specified rounding
 	criteria and sets it to the super class increment variable.
<DT><A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html#computeIncrement()"><B>computeIncrement()</B></A> - 
Method in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html">ScaleCalculator</A>
<DD>Computes the scale increment.
<DT><A HREF="org/jCharts/axisChart/axis/scale/AutomaticScaleCalculator.html#computeIncrement()"><B>computeIncrement()</B></A> - 
Method in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/AutomaticScaleCalculator.html">AutomaticScaleCalculator</A>
<DD>Computes the axis increment taking into account the user specified criteria.
<DT><A HREF="org/jCharts/axisChart/axis/XAxis.html#computeLabelFilter()"><B>computeLabelFilter()</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/XAxis.html">XAxis</A>
<DD>Method to compute the filter to use on the x-axis label display so labels do not overlap
<DT><A HREF="org/jCharts/Legend.html#computeLegendXY(org.jCharts.chartData.interfaces.IAxisDataSeries, float)"><B>computeLegendXY(IAxisDataSeries, float)</B></A> - 
Method in class org.jCharts.<A HREF="org/jCharts/Legend.html">Legend</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/XAxis.html#computeMinimumHeightNeeded(java.lang.String)"><B>computeMinimumHeightNeeded(String)</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/XAxis.html">XAxis</A>
<DD>Computes the minimum pixel height required for the X-Axis.
<DT><A HREF="org/jCharts/axisChart/axis/YAxis.html#computeMinimumWidthNeeded(java.lang.String)"><B>computeMinimumWidthNeeded(String)</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/YAxis.html">YAxis</A>
<DD>Computes the minimum pixel width required for the Y-Axis.
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#computeOneUnitPixelSize(float, double)"><B>computeOneUnitPixelSize(float, double)</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>Computes the relationship of data point values to pixel values so know where along the axis
 	a value is.
<DT><A HREF="org/jCharts/axisChart/BarChart.html#computeScaleHeightOfValue(double, double)"><B>computeScaleHeightOfValue(double, double)</B></A> - 
Static method in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/BarChart.html">BarChart</A>
<DD>Takes a value and determines the number of pixels it should fill on the screen.
<DT><A HREF="org/jCharts/axisChart/axis/DataAxis.html#computeScaleIncrement(org.jCharts.chartData.processors.AxisChartDataProcessor)"><B>computeScaleIncrement(AxisChartDataProcessor)</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/DataAxis.html">DataAxis</A>
<DD><B>Deprecated.</B>&nbsp;Calculates the axis scale increment.
<DT><A HREF="org/jCharts/axisChart/axis/XAxis.html#computeScalePixelWidth()"><B>computeScalePixelWidth()</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/XAxis.html">XAxis</A>
<DD>Computes the number of pixels between each value on the axis.
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#computeScalePixelWidth()"><B>computeScalePixelWidth()</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>Computes the number of pixels between each value on the axis.
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#computeScalePixelWidthDataAxis()"><B>computeScalePixelWidthDataAxis()</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>Computes the number of pixels between each value on the axis.
<DT><A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html#computeScaleValues()"><B>computeScaleValues()</B></A> - 
Method in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html">ScaleCalculator</A>
<DD>Drives the computation of the axis increment and related values taking into account the
 	user specified rounding criteria.
<DT><A HREF="org/jCharts/axisChart/axis/XAxis.html#computeShouldTickStartAtYAxis(org.jCharts.chartData.interfaces.IAxisDataSeries, org.jCharts.properties.AxisTypeProperties)"><B>computeShouldTickStartAtYAxis(IAxisDataSeries, AxisTypeProperties)</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/XAxis.html">XAxis</A>
<DD>Determines if we should start x-axis ticks at the y-axis or space it out a half
 	a scale item width.
<DT><A HREF="org/jCharts/axisChart/axis/XAxis.html#computeTickStart()"><B>computeTickStart()</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/XAxis.html">XAxis</A>
<DD>Computes the screen pixel location of the first tick mark
<DT><A HREF="org/jCharts/axisChart/ScatterPlotAxisChart.html#createAxisChartDataProcessor()"><B>createAxisChartDataProcessor()</B></A> - 
Method in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/ScatterPlotAxisChart.html">ScatterPlotAxisChart</A>
<DD>ScatterPlots create a subclass of AxisChartDataProcessor so we need this method so we can
 	overload it.
<DT><A HREF="org/jCharts/axisChart/AxisChart.html#createAxisChartDataProcessor()"><B>createAxisChartDataProcessor()</B></A> - 
Method in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/AxisChart.html">AxisChart</A>
<DD>ScatterPlots create a subclass of AxisChartDataProcessor so we need this method so we can
 	overload it.
<DT><A HREF="org/jCharts/test/ScatterChartTestBase.html#createAxisChartDataSet(org.jCharts.types.ChartType, org.jCharts.properties.ChartTypeProperties, int, int, int, int)"><B>createAxisChartDataSet(ChartType, ChartTypeProperties, int, int, int, int)</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/ScatterChartTestBase.html">ScatterChartTestBase</A>
<DD>Generates a random MultiDataSet
<DT><A HREF="org/jCharts/test/AxisChartTestBase.html#createAxisChartDataSet(org.jCharts.types.ChartType, org.jCharts.properties.ChartTypeProperties, int, int, int, int)"><B>createAxisChartDataSet(ChartType, ChartTypeProperties, int, int, int, int)</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/AxisChartTestBase.html">AxisChartTestBase</A>
<DD>Generates a random MultiDataSet
<DT><A HREF="org/jCharts/chartText/NumericTagGroup.html#createAxisScaleLabels(org.jCharts.axisChart.axis.scale.ScaleCalculator)"><B>createAxisScaleLabels(ScaleCalculator)</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/NumericTagGroup.html">NumericTagGroup</A>
<DD>Creates the axis labels for the passed ScaleCalculator instance.
<DT><A HREF="org/jCharts/test/ScatterChartTestBase.html#createDataSeries(int)"><B>createDataSeries(int)</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/ScatterChartTestBase.html">ScatterChartTestBase</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/AxisChartTestBase.html#createDataSeries(int)"><B>createDataSeries(int)</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/AxisChartTestBase.html">AxisChartTestBase</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/ScatterPlotDataSet.html#createPoint2DDouble()"><B>createPoint2DDouble()</B></A> - 
Static method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/ScatterPlotDataSet.html">ScatterPlotDataSet</A>
<DD>Take advantage of the face Cloning performs better than creating new for highly used
 	Objects.
<DT><A HREF="org/jCharts/test/ScatterPlotTestDriver.html#createScatterPlotDataSet(int, int, int, int, int, int)"><B>createScatterPlotDataSet(int, int, int, int, int, int)</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/ScatterPlotTestDriver.html">ScatterPlotTestDriver</A>
<DD>Generates a random MultiDataSet
</DL>
<HR>
<A NAME="_D_"><!-- --></A><H2>
<B>D</B></H2>
<DL>
<DT><A HREF="org/jCharts/chartData/ScatterPlotDataSet.html#data"><B>data</B></A> - 
Variable in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/ScatterPlotDataSet.html">ScatterPlotDataSet</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/DataSet.html#data"><B>data</B></A> - 
Variable in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/DataSet.html">DataSet</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/DataAxis.html"><B>DataAxis</B></A> - class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/DataAxis.html">DataAxis</A>.<DD><B>Deprecated.</B>&nbsp;<I>just using the YAxis Object</I><DT><A HREF="org/jCharts/axisChart/axis/DataAxis.html#DataAxis(org.jCharts.axisChart.AxisChart)"><B>DataAxis(AxisChart)</B></A> - 
Constructor for class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/DataAxis.html">DataAxis</A>
<DD><B>Deprecated.</B>&nbsp;<I>this class is no longer used</I>
<DT><A HREF="org/jCharts/properties/DataAxisProperties.html"><B>DataAxisProperties</B></A> - class org.jCharts.properties.<A HREF="org/jCharts/properties/DataAxisProperties.html">DataAxisProperties</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/properties/DataAxisProperties.html#DataAxisProperties()"><B>DataAxisProperties()</B></A> - 
Constructor for class org.jCharts.properties.<A HREF="org/jCharts/properties/DataAxisProperties.html">DataAxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/DataSeries.html"><B>DataSeries</B></A> - class org.jCharts.chartData.<A HREF="org/jCharts/chartData/DataSeries.html">DataSeries</A>.<DD>Collection of all IAxisPlotDataSets to display in an AxisChart<DT><A HREF="org/jCharts/chartData/DataSeries.html#DataSeries(java.lang.String[], java.lang.String, java.lang.String, java.lang.String)"><B>DataSeries(String[], String, String, String)</B></A> - 
Constructor for class org.jCharts.chartData.<A HREF="org/jCharts/chartData/DataSeries.html">DataSeries</A>
<DD>Constructor
<DT><A HREF="org/jCharts/chartData/DataSet.html"><B>DataSet</B></A> - class org.jCharts.chartData.<A HREF="org/jCharts/chartData/DataSet.html">DataSet</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/chartData/DataSet.html#DataSet(double[][], java.lang.String[], java.awt.Paint[], org.jCharts.properties.ChartTypeProperties)"><B>DataSet(double[][], String[], Paint[], ChartTypeProperties)</B></A> - 
Constructor for class org.jCharts.chartData.<A HREF="org/jCharts/chartData/DataSet.html">DataSet</A>
<DD>Constructor
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html#dataSetIndex"><B>dataSetIndex</B></A> - 
Variable in class org.jCharts.axisChart.customRenderers.axisValue.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html">AxisValueRenderEvent</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/AxisDataSeries.html#dataSets"><B>dataSets</B></A> - 
Variable in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/AxisDataSeries.html">AxisDataSeries</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/util/ChartStroke.html#DEFAULT_AXIS"><B>DEFAULT_AXIS</B></A> - 
Static variable in class org.jCharts.properties.util.<A HREF="org/jCharts/properties/util/ChartStroke.html">ChartStroke</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/util/ChartFont.html#DEFAULT_AXIS_SCALE"><B>DEFAULT_AXIS_SCALE</B></A> - 
Static variable in class org.jCharts.properties.util.<A HREF="org/jCharts/properties/util/ChartFont.html">ChartFont</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/util/ChartFont.html#DEFAULT_AXIS_TITLE"><B>DEFAULT_AXIS_TITLE</B></A> - 
Static variable in class org.jCharts.properties.util.<A HREF="org/jCharts/properties/util/ChartFont.html">ChartFont</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/util/ChartFont.html#DEFAULT_AXIS_VALUE"><B>DEFAULT_AXIS_VALUE</B></A> - 
Static variable in class org.jCharts.properties.util.<A HREF="org/jCharts/properties/util/ChartFont.html">ChartFont</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/Properties.html#DEFAULT_BACKGROUND_PAINT"><B>DEFAULT_BACKGROUND_PAINT</B></A> - 
Static variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/Properties.html">Properties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/util/ChartStroke.html#DEFAULT_BAR_OUTLINE"><B>DEFAULT_BAR_OUTLINE</B></A> - 
Static variable in class org.jCharts.properties.util.<A HREF="org/jCharts/properties/util/ChartStroke.html">ChartStroke</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/PieChart2DProperties.html#DEFAULT_BORDER_PAINT"><B>DEFAULT_BORDER_PAINT</B></A> - 
Static variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/PieChart2DProperties.html">PieChart2DProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/PieChart2DProperties.html#DEFAULT_BORDER_STROKE"><B>DEFAULT_BORDER_STROKE</B></A> - 
Static variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/PieChart2DProperties.html">PieChart2DProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/util/ChartStroke.html#DEFAULT_CHART_OUTLINE"><B>DEFAULT_CHART_OUTLINE</B></A> - 
Static variable in class org.jCharts.properties.util.<A HREF="org/jCharts/properties/util/ChartStroke.html">ChartStroke</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/util/ChartFont.html#DEFAULT_CHART_TITLE"><B>DEFAULT_CHART_TITLE</B></A> - 
Static variable in class org.jCharts.properties.util.<A HREF="org/jCharts/properties/util/ChartFont.html">ChartFont</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LegendProperties.html#DEFAULT_FONT"><B>DEFAULT_FONT</B></A> - 
Static variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendProperties.html">LegendProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LegendProperties.html#DEFAULT_FONT_PAINT"><B>DEFAULT_FONT_PAINT</B></A> - 
Static variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendProperties.html">LegendProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/util/ChartStroke.html#DEFAULT_GRIDLINES"><B>DEFAULT_GRIDLINES</B></A> - 
Static variable in class org.jCharts.properties.util.<A HREF="org/jCharts/properties/util/ChartStroke.html">ChartStroke</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LegendProperties.html#DEFAULT_ICON_BORDER_PAINT"><B>DEFAULT_ICON_BORDER_PAINT</B></A> - 
Static variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendProperties.html">LegendProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LegendProperties.html#DEFAULT_ICON_BORDER_STROKE"><B>DEFAULT_ICON_BORDER_STROKE</B></A> - 
Static variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendProperties.html">LegendProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/util/ChartStroke.html#DEFAULT_LEGEND_OUTLINE"><B>DEFAULT_LEGEND_OUTLINE</B></A> - 
Static variable in class org.jCharts.properties.util.<A HREF="org/jCharts/properties/util/ChartStroke.html">ChartStroke</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/ScatterPlotProperties.html#DEFAULT_LINE_STROKE"><B>DEFAULT_LINE_STROKE</B></A> - 
Static variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/ScatterPlotProperties.html">ScatterPlotProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LineChartProperties.html#DEFAULT_LINE_STROKE"><B>DEFAULT_LINE_STROKE</B></A> - 
Static variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/LineChartProperties.html">LineChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/util/ChartItem.html#DEFAULT_PAINT"><B>DEFAULT_PAINT</B></A> - 
Static variable in class org.jCharts.properties.util.<A HREF="org/jCharts/properties/util/ChartItem.html">ChartItem</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/util/ChartFont.html#DEFAULT_PIE_VALUE"><B>DEFAULT_PIE_VALUE</B></A> - 
Static variable in class org.jCharts.properties.util.<A HREF="org/jCharts/properties/util/ChartFont.html">ChartFont</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/PointChartProperties.html#DEFAULT_POINT_BORDER_STROKE"><B>DEFAULT_POINT_BORDER_STROKE</B></A> - 
Static variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/PointChartProperties.html">PointChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/StockChartProperties.html#DEFAULT_STROKE"><B>DEFAULT_STROKE</B></A> - 
Static variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/StockChartProperties.html">StockChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/util/ChartStroke.html#DEFAULT_STROKE"><B>DEFAULT_STROKE</B></A> - 
Static variable in class org.jCharts.properties.util.<A HREF="org/jCharts/properties/util/ChartStroke.html">ChartStroke</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/util/ChartStroke.html#DEFAULT_STROKE_1_5"><B>DEFAULT_STROKE_1_5</B></A> - 
Static variable in class org.jCharts.properties.util.<A HREF="org/jCharts/properties/util/ChartStroke.html">ChartStroke</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/util/ChartStroke.html#DEFAULT_TICKS"><B>DEFAULT_TICKS</B></A> - 
Static variable in class org.jCharts.properties.util.<A HREF="org/jCharts/properties/util/ChartStroke.html">ChartStroke</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/util/ChartStroke.html#DEFAULT_ZERO_LINE"><B>DEFAULT_ZERO_LINE</B></A> - 
Static variable in class org.jCharts.properties.util.<A HREF="org/jCharts/properties/util/ChartStroke.html">ChartStroke</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/ScatterPlotAxisChart.html#deriveAxisValues()"><B>deriveAxisValues()</B></A> - 
Method in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/ScatterPlotAxisChart.html">ScatterPlotAxisChart</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/AxisChart.html#deriveAxisValues()"><B>deriveAxisValues()</B></A> - 
Method in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/AxisChart.html">AxisChart</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelRenderer.html#derivedFont"><B>derivedFont</B></A> - 
Variable in class org.jCharts.axisChart.customRenderers.axisValue.renderers.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelRenderer.html">ValueLabelRenderer</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/TextTag.html#derivedFont"><B>derivedFont</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTag.html">TextTag</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/util/ChartFont.html#deriveFont()"><B>deriveFont()</B></A> - 
Method in class org.jCharts.properties.util.<A HREF="org/jCharts/properties/util/ChartFont.html">ChartFont</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/Legend.html#determineWidthAndHeight(int)"><B>determineWidthAndHeight(int)</B></A> - 
Method in class org.jCharts.<A HREF="org/jCharts/Legend.html">Legend</A>
<DD>Determines the dimensions needed for the Legend and creates the image for it.
<DT><A HREF="org/jCharts/nonAxisChart/PieChart2D.html#diameter"><B>diameter</B></A> - 
Variable in class org.jCharts.nonAxisChart.<A HREF="org/jCharts/nonAxisChart/PieChart2D.html">PieChart2D</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/BackgroundRenderer.html#draw"><B>draw</B></A> - 
Variable in class org.jCharts.axisChart.customRenderers.axisValue.renderers.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/BackgroundRenderer.html">BackgroundRenderer</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/util/ChartStroke.html#draw(java.awt.Graphics2D, java.awt.Shape)"><B>draw(Graphics2D, Shape)</B></A> - 
Method in class org.jCharts.properties.util.<A HREF="org/jCharts/properties/util/ChartStroke.html">ChartStroke</A>
<DD>&nbsp;
</DL>
<HR>
<A NAME="_E_"><!-- --></A><H2>
<B>E</B></H2>
<DL>
<DT><A HREF="org/jCharts/properties/AreaProperties.html#edgePadding"><B>edgePadding</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/AreaProperties.html">AreaProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/encoders/JPEGEncoder13.html#encode(org.jCharts.Chart, float, java.io.OutputStream)"><B>encode(Chart, float, OutputStream)</B></A> - 
Static method in class org.jCharts.encoders.<A HREF="org/jCharts/encoders/JPEGEncoder13.html">JPEGEncoder13</A>
<DD>Encodes the chart to a JPEG format.
<DT><A HREF="org/jCharts/encoders/JPEGEncoder.html#encode(org.jCharts.Chart, float, java.io.OutputStream)"><B>encode(Chart, float, OutputStream)</B></A> - 
Static method in class org.jCharts.encoders.<A HREF="org/jCharts/encoders/JPEGEncoder.html">JPEGEncoder</A>
<DD>Encodes the chart to a JPEG format.
<DT><A HREF="org/jCharts/encoders/SVGEncoder.html#encode(org.jCharts.Chart, java.io.OutputStream)"><B>encode(Chart, OutputStream)</B></A> - 
Static method in class org.jCharts.encoders.<A HREF="org/jCharts/encoders/SVGEncoder.html">SVGEncoder</A>
<DD>Encodes the Chart to an OutputStream which can be a file or any other OutputStream
 implementation.
<DT><A HREF="org/jCharts/encoders/PNGEncoder.html#encode(org.jCharts.Chart, java.io.OutputStream)"><B>encode(Chart, OutputStream)</B></A> - 
Static method in class org.jCharts.encoders.<A HREF="org/jCharts/encoders/PNGEncoder.html">PNGEncoder</A>
<DD>Encodes the Chart to an OutputStream which can be a file or any other OutputStream
 implementation.
<DT><A HREF="org/jCharts/encoders/ServletEncoderHelper.html#encodeJPEG(org.jCharts.Chart, float, javax.servlet.http.HttpServletResponse)"><B>encodeJPEG(Chart, float, HttpServletResponse)</B></A> - 
Static method in class org.jCharts.encoders.<A HREF="org/jCharts/encoders/ServletEncoderHelper.html">ServletEncoderHelper</A>
<DD>Convenience method to call from a Servlet or JSP.
<DT><A HREF="org/jCharts/encoders/ServletEncoderHelper.html#encodeJPEG13(org.jCharts.Chart, float, javax.servlet.http.HttpServletResponse)"><B>encodeJPEG13(Chart, float, HttpServletResponse)</B></A> - 
Static method in class org.jCharts.encoders.<A HREF="org/jCharts/encoders/ServletEncoderHelper.html">ServletEncoderHelper</A>
<DD>Convenience method to call from a Servlet or JSP.
<DT><A HREF="org/jCharts/encoders/ServletEncoderHelper.html#encodePNG(org.jCharts.Chart, javax.servlet.http.HttpServletResponse)"><B>encodePNG(Chart, HttpServletResponse)</B></A> - 
Static method in class org.jCharts.encoders.<A HREF="org/jCharts/encoders/ServletEncoderHelper.html">ServletEncoderHelper</A>
<DD>Convenience method to call from a Servlet or JSP.
<DT><A HREF="org/jCharts/encoders/ServletEncoderHelper.html#encodeServlet(org.jCharts.Chart, javax.servlet.http.HttpServletResponse)"><B>encodeServlet(Chart, HttpServletResponse)</B></A> - 
Static method in class org.jCharts.encoders.<A HREF="org/jCharts/encoders/ServletEncoderHelper.html">ServletEncoderHelper</A>
<DD>Convenience method to call from a Servlet or JSP.
<DT><A HREF="org/jCharts/types/ChartType.html#equals(org.jCharts.types.ChartType)"><B>equals(ChartType)</B></A> - 
Method in class org.jCharts.types.<A HREF="org/jCharts/types/ChartType.html">ChartType</A>
<DD>Returns flag indicating whether passed ChartType is equal to this one
<DT><A HREF="org/jCharts/types/PieLabelType.html#equals(org.jCharts.types.PieLabelType)"><B>equals(PieLabelType)</B></A> - 
Method in class org.jCharts.types.<A HREF="org/jCharts/types/PieLabelType.html">PieLabelType</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelPosition.html#equals(org.jCharts.axisChart.customRenderers.axisValue.renderers.ValueLabelPosition)"><B>equals(ValueLabelPosition)</B></A> - 
Method in class org.jCharts.axisChart.customRenderers.axisValue.renderers.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelPosition.html">ValueLabelPosition</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/SwingTest.html#exitForm(java.awt.event.WindowEvent)"><B>exitForm(WindowEvent)</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/SwingTest.html">SwingTest</A>
<DD>Exit the Application
<DT><A HREF="org/jCharts/test/ChartTestDriver.html#exportImage(org.jCharts.Chart, java.lang.String)"><B>exportImage(Chart, String)</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/ChartTestDriver.html">ChartTestDriver</A>
<DD>Utility method to write the image to file so I do not have to deal with file i/o
  every time I write a test.
<DT><A HREF="org/jCharts/test/ChartTestDriver.html#EXTENSION"><B>EXTENSION</B></A> - 
Static variable in class org.jCharts.test.<A HREF="org/jCharts/test/ChartTestDriver.html">ChartTestDriver</A>
<DD>&nbsp;
</DL>
<HR>
<A NAME="_F_"><!-- --></A><H2>
<B>F</B></H2>
<DL>
<DT><A HREF="org/jCharts/test/HTMLGenerator.html#fileName"><B>fileName</B></A> - 
Variable in class org.jCharts.test.<A HREF="org/jCharts/test/HTMLGenerator.html">HTMLGenerator</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/util/ChartStroke.html#fill(java.awt.Graphics2D, java.awt.Shape)"><B>fill(Graphics2D, Shape)</B></A> - 
Method in class org.jCharts.properties.util.<A HREF="org/jCharts/properties/util/ChartStroke.html">ChartStroke</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/PointChartProperties.html#fillPointFlags"><B>fillPointFlags</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/PointChartProperties.html">PointChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/Legend.html#fillPointsFlags"><B>fillPointsFlags</B></A> - 
Variable in class org.jCharts.<A HREF="org/jCharts/Legend.html">Legend</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisChartTypeProperties.html#firePostRender(org.jCharts.axisChart.customRenderers.axisValue.AxisValueRenderEvent)"><B>firePostRender(AxisValueRenderEvent)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisChartTypeProperties.html">AxisChartTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisChartTypeProperties.html#firePreRender(org.jCharts.axisChart.customRenderers.axisValue.AxisValueRenderEvent)"><B>firePreRender(AxisValueRenderEvent)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisChartTypeProperties.html">AxisChartTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/TextTag.html#font"><B>font</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTag.html">TextTag</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LegendProperties.html#font"><B>font</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendProperties.html">LegendProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/util/ChartFont.html#font"><B>font</B></A> - 
Variable in class org.jCharts.properties.util.<A HREF="org/jCharts/properties/util/ChartFont.html">ChartFont</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/TextTag.html#fontAscent"><B>fontAscent</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTag.html">TextTag</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/TextTag.html#fontDescent"><B>fontDescent</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTag.html">TextTag</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LegendProperties.html#fontPaint"><B>fontPaint</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendProperties.html">LegendProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html#fontRenderContext"><B>fontRenderContext</B></A> - 
Variable in class org.jCharts.axisChart.customRenderers.axisValue.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html">AxisValueRenderEvent</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/TextTagGroup.html#fontRenderContext"><B>fontRenderContext</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTagGroup.html">TextTagGroup</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/BarValueGroup.html#fontRenderContext"><B>fontRenderContext</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/BarValueGroup.html">BarValueGroup</A>
<DD>&nbsp;
</DL>
<HR>
<A NAME="_G_"><!-- --></A><H2>
<B>G</B></H2>
<DL>
<DT><A HREF="org/jCharts/Chart.html#generateImageMap"><B>generateImageMap</B></A> - 
Variable in class org.jCharts.<A HREF="org/jCharts/Chart.html">Chart</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/imageMap/RectMapArea.html#getAreaShape()"><B>getAreaShape()</B></A> - 
Method in class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/RectMapArea.html">RectMapArea</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/imageMap/PolyMapArea.html#getAreaShape()"><B>getAreaShape()</B></A> - 
Method in class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/PolyMapArea.html">PolyMapArea</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/imageMap/ImageMapArea.html#getAreaShape()"><B>getAreaShape()</B></A> - 
Method in class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/ImageMapArea.html">ImageMapArea</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/imageMap/CircleMapArea.html#getAreaShape()"><B>getAreaShape()</B></A> - 
Method in class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/CircleMapArea.html">CircleMapArea</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/TextTag.html#getAttribute(java.lang.String)"><B>getAttribute(String)</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTag.html">TextTag</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#getAxisChart()"><B>getAxisChart()</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>Returns reference to AxisChart Object.
<DT><A HREF="org/jCharts/chartData/DataSeries.html#getAxisLabel(int)"><B>getAxisLabel(int)</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/DataSeries.html">DataSeries</A>
<DD>Returns the x-axis label corresponding to the passed index
<DT><A HREF="org/jCharts/chartData/interfaces/IDataSeries.html#getAxisLabel(int)"><B>getAxisLabel(int)</B></A> - 
Method in interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IDataSeries.html">IDataSeries</A>
<DD>Returns the axis label at the specified index.
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#getAxisLabelsGroup()"><B>getAxisLabelsGroup()</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/AxisChart.html#getAxisProperties()"><B>getAxisProperties()</B></A> - 
Method in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/AxisChart.html">AxisChart</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html#getAxisProperties()"><B>getAxisProperties()</B></A> - 
Method in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html">ChartScale</A>
<DD>* Creates and returns a new AxisProperties object based on the internally calculated values of yStart, yDelta,

	 * segments and rounding.
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#getAxisStroke()"><B>getAxisStroke()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#getAxisTickMarkPixelLength()"><B>getAxisTickMarkPixelLength()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#getAxisTitleChartFont()"><B>getAxisTitleChartFont()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/Properties.html#getBackgroundPaint()"><B>getBackgroundPaint()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/Properties.html">Properties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/BarChartProperties.html#getBarOutlineStroke()"><B>getBarOutlineStroke()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/BarChartProperties.html">BarChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/BarValueGroup.BarValue.html#getBarRect()"><B>getBarRect()</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/BarValueGroup.BarValue.html">BarValueGroup.BarValue</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/BarValueGroup.html#getBarValueAt(int, double)"><B>getBarValueAt(int, double)</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/BarValueGroup.html">BarValueGroup</A>
<DD>Gets the text associated (by the user) for the given bar value.
<DT><A HREF="org/jCharts/chartText/BarValueGroup.html#getBarValueRectangleCoordinates(int, org.jCharts.chartText.BarValueGroup.BarValue)"><B>getBarValueRectangleCoordinates(int, BarValueGroup.BarValue)</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/BarValueGroup.html">BarValueGroup</A>
<DD>Gets the rectangle coords associated (by the user) for the given bar value.
<DT><A HREF="org/jCharts/properties/PieChart2DProperties.html#getBorderPaint()"><B>getBorderPaint()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/PieChart2DProperties.html">PieChart2DProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/PieChart2DProperties.html#getBorderStroke()"><B>getBorderStroke()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/PieChart2DProperties.html">PieChart2DProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AreaProperties.html#getBorderStroke()"><B>getBorderStroke()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AreaProperties.html">AreaProperties</A>
<DD>Returns the border Stroke
<DT><A HREF="org/jCharts/chartText/BarValueGroup.html#getBottom(java.awt.geom.Rectangle2D.Float)"><B>getBottom(Rectangle2D.Float)</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/BarValueGroup.html">BarValueGroup</A>
<DD>Not sure why this was left out of Rectangle2D...
<DT><A HREF="org/jCharts/chartText/TextTag.html#getBottomSide()"><B>getBottomSide()</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTag.html">TextTag</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/Chart.html#getBufferedImage()"><B>getBufferedImage()</B></A> - 
Method in class org.jCharts.<A HREF="org/jCharts/Chart.html">Chart</A>
<DD>Returns the BufferedImage used to generate the ImageMap.
<DT><A HREF="org/jCharts/properties/LegendAreaProperties.html#getChartPadding()"><B>getChartPadding()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendAreaProperties.html">LegendAreaProperties</A>
<DD>Returns the padding between chart plot and the Legend.
<DT><A HREF="org/jCharts/Chart.html#getChartProperties()"><B>getChartProperties()</B></A> - 
Method in class org.jCharts.<A HREF="org/jCharts/Chart.html">Chart</A>
<DD>Returns the general properties Object.
<DT><A HREF="org/jCharts/chartData/PieChartDataSet.html#getChartTitle()"><B>getChartTitle()</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/PieChartDataSet.html">PieChartDataSet</A>
<DD>Returns the chart title.
<DT><A HREF="org/jCharts/chartData/AxisDataSeries.html#getChartTitle()"><B>getChartTitle()</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/AxisDataSeries.html">AxisDataSeries</A>
<DD>Returns the chart title.
<DT><A HREF="org/jCharts/chartData/interfaces/IPieChartDataSet.html#getChartTitle()"><B>getChartTitle()</B></A> - 
Method in interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IPieChartDataSet.html">IPieChartDataSet</A>
<DD>Returns the chart title.
<DT><A HREF="org/jCharts/chartData/interfaces/IAxisDataSeries.html#getChartTitle()"><B>getChartTitle()</B></A> - 
Method in interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IAxisDataSeries.html">IAxisDataSeries</A>
<DD>Returns the chart title.
<DT><A HREF="org/jCharts/chartData/StockChartDataSet.html#getChartType()"><B>getChartType()</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/StockChartDataSet.html">StockChartDataSet</A>
<DD>Returns the type constant that this data set should be plotted as.
<DT><A HREF="org/jCharts/chartData/ScatterPlotDataSet.html#getChartType()"><B>getChartType()</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/ScatterPlotDataSet.html">ScatterPlotDataSet</A>
<DD>Returns the type constant that this data set should be plotted as.
<DT><A HREF="org/jCharts/chartData/AxisChartDataSet.html#getChartType()"><B>getChartType()</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/AxisChartDataSet.html">AxisChartDataSet</A>
<DD>Returns the type constant that this data set should be plotted as.
<DT><A HREF="org/jCharts/chartData/interfaces/IStockChartDataSet.html#getChartType()"><B>getChartType()</B></A> - 
Method in interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IStockChartDataSet.html">IStockChartDataSet</A>
<DD>Returns the type of chart this data is to be plotted on
<DT><A HREF="org/jCharts/chartData/interfaces/IAxisPlotDataSet.html#getChartType()"><B>getChartType()</B></A> - 
Method in interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IAxisPlotDataSet.html">IAxisPlotDataSet</A>
<DD>Returns the type of chart this data is to be plotted on
<DT><A HREF="org/jCharts/chartData/StockChartDataSet.html#getChartTypeProperties()"><B>getChartTypeProperties()</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/StockChartDataSet.html">StockChartDataSet</A>
<DD>Returns the chart specific properties
<DT><A HREF="org/jCharts/chartData/ScatterPlotDataSet.html#getChartTypeProperties()"><B>getChartTypeProperties()</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/ScatterPlotDataSet.html">ScatterPlotDataSet</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/DataSet.html#getChartTypeProperties()"><B>getChartTypeProperties()</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/DataSet.html">DataSet</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/interfaces/IDataSet.html#getChartTypeProperties()"><B>getChartTypeProperties()</B></A> - 
Method in interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IDataSet.html">IDataSet</A>
<DD>Returns ChartTypeProperties Object for the data set which will be typed into the specific
  chart type class.
<DT><A HREF="org/jCharts/test/StockTestDriver.html#getChartTypeProperties(int)"><B>getChartTypeProperties(int)</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/StockTestDriver.html">StockTestDriver</A>
<DD>Separate this so can use for combo chart test
<DT><A HREF="org/jCharts/test/StackedAreaTestDriver.html#getChartTypeProperties(int)"><B>getChartTypeProperties(int)</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/StackedAreaTestDriver.html">StackedAreaTestDriver</A>
<DD>Separate this so can use for combo chart test
<DT><A HREF="org/jCharts/test/PointTestDriver.html#getChartTypeProperties(int)"><B>getChartTypeProperties(int)</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/PointTestDriver.html">PointTestDriver</A>
<DD>Separate this so can use for combo chart test
<DT><A HREF="org/jCharts/test/LineTestDriver.html#getChartTypeProperties(int)"><B>getChartTypeProperties(int)</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/LineTestDriver.html">LineTestDriver</A>
<DD>Separate this so can use for combo chart test
<DT><A HREF="org/jCharts/test/BarTestDriver.html#getChartTypeProperties(int)"><B>getChartTypeProperties(int)</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/BarTestDriver.html">BarTestDriver</A>
<DD>Separate this so can use for combo chart test
<DT><A HREF="org/jCharts/test/AreaTestDriver.html#getChartTypeProperties(int)"><B>getChartTypeProperties(int)</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/AreaTestDriver.html">AreaTestDriver</A>
<DD>Separate this so can use for combo chart test
<DT><A HREF="org/jCharts/properties/StockChartProperties.html#getClosePixelLength()"><B>getClosePixelLength()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/StockChartProperties.html">StockChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/StockChartProperties.html#getCloseStroke()"><B>getCloseStroke()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/StockChartProperties.html">StockChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/StockChartDataSet.html#getCloseValue(int)"><B>getCloseValue(int)</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/StockChartDataSet.html">StockChartDataSet</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/interfaces/IStockChartDataSet.html#getCloseValue(int)"><B>getCloseValue(int)</B></A> - 
Method in interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IStockChartDataSet.html">IStockChartDataSet</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LegendAreaProperties.html#getColumnPadding()"><B>getColumnPadding()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendAreaProperties.html">LegendAreaProperties</A>
<DD>Returns the padding between label columns.
<DT><A HREF="org/jCharts/imageMap/ImageMapArea.html#getCoordinates(java.lang.StringBuffer)"><B>getCoordinates(StringBuffer)</B></A> - 
Method in class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/ImageMapArea.html">ImageMapArea</A>
<DD>Appends the coordinates to the passed html buffer.
<DT><A HREF="org/jCharts/imageMap/CircleMapArea.html#getCoordinates(java.lang.StringBuffer)"><B>getCoordinates(StringBuffer)</B></A> - 
Method in class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/CircleMapArea.html">CircleMapArea</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/StockTestDriver.html#getDataSeries()"><B>getDataSeries()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/StockTestDriver.html">StockTestDriver</A>
<DD>Test for LineChart
<DT><A HREF="org/jCharts/test/StackedBarTestDriver.html#getDataSeries()"><B>getDataSeries()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/StackedBarTestDriver.html">StackedBarTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/StackedAreaTestDriver.html#getDataSeries()"><B>getDataSeries()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/StackedAreaTestDriver.html">StackedAreaTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/ScatterPlotTestDriver.html#getDataSeries()"><B>getDataSeries()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/ScatterPlotTestDriver.html">ScatterPlotTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/ScatterChartTestBase.html#getDataSeries()"><B>getDataSeries()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/ScatterChartTestBase.html">ScatterChartTestBase</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/PointTestDriver.html#getDataSeries()"><B>getDataSeries()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/PointTestDriver.html">PointTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/LineTestDriver.html#getDataSeries()"><B>getDataSeries()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/LineTestDriver.html">LineTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/ComboTestDriver.html#getDataSeries()"><B>getDataSeries()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/ComboTestDriver.html">ComboTestDriver</A>
<DD>Test for LineChart
<DT><A HREF="org/jCharts/test/ClusteredBarTestDriver.html#getDataSeries()"><B>getDataSeries()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/ClusteredBarTestDriver.html">ClusteredBarTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/BarTestDriver.html#getDataSeries()"><B>getDataSeries()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/BarTestDriver.html">BarTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/AxisChartTestBase.html#getDataSeries()"><B>getDataSeries()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/AxisChartTestBase.html">AxisChartTestBase</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/AreaTestDriver.html#getDataSeries()"><B>getDataSeries()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/AreaTestDriver.html">AreaTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html#getDataSetIndex()"><B>getDataSetIndex()</B></A> - 
Method in class org.jCharts.axisChart.customRenderers.axisValue.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html">AxisValueRenderEvent</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AreaProperties.html#getEdgePadding()"><B>getEdgePadding()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AreaProperties.html">AreaProperties</A>
<DD>Returns the number of pixels to pad the edges of the image
<DT><A HREF="org/jCharts/properties/PointChartProperties.html#getFillPointsFlag(int)"><B>getFillPointsFlag(int)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/PointChartProperties.html">PointChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LegendProperties.html#getFont()"><B>getFont()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendProperties.html">LegendProperties</A>
<DD>Returns the Font used by the Legend.
<DT><A HREF="org/jCharts/properties/util/ChartFont.html#getFont()"><B>getFont()</B></A> - 
Method in class org.jCharts.properties.util.<A HREF="org/jCharts/properties/util/ChartFont.html">ChartFont</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/TextTag.html#getFontAscent()"><B>getFontAscent()</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTag.html">TextTag</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/TextTag.html#getFontDescent()"><B>getFontDescent()</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTag.html">TextTag</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LegendProperties.html#getFontPaint()"><B>getFontPaint()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendProperties.html">LegendProperties</A>
<DD>Returns the Font Paint used by the Legend.
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html#getFontRenderContext()"><B>getFontRenderContext()</B></A> - 
Method in class org.jCharts.axisChart.customRenderers.axisValue.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html">AxisValueRenderEvent</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/Chart.html#getGenerateImageMapFlag()"><B>getGenerateImageMapFlag()</B></A> - 
Method in class org.jCharts.<A HREF="org/jCharts/Chart.html">Chart</A>
<DD>Returns flag indicating whether to generate an ImageMap
<DT><A HREF="org/jCharts/Chart.html#getGraphics2D()"><B>getGraphics2D()</B></A> - 
Method in class org.jCharts.<A HREF="org/jCharts/Chart.html">Chart</A>
<DD>Shortcut method to get Graphics2D.
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html#getGraphics2D()"><B>getGraphics2D()</B></A> - 
Method in class org.jCharts.axisChart.customRenderers.axisValue.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html">AxisValueRenderEvent</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#getGridLineChartStroke()"><B>getGridLineChartStroke()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/Legend.html#getHeight()"><B>getHeight()</B></A> - 
Method in class org.jCharts.<A HREF="org/jCharts/Legend.html">Legend</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/TextTag.html#getHeight()"><B>getHeight()</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTag.html">TextTag</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/TextTag.html#getHidden()"><B>getHidden()</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTag.html">TextTag</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/StockChartDataSet.html#getHighValue(int)"><B>getHighValue(int)</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/StockChartDataSet.html">StockChartDataSet</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/interfaces/IStockChartDataSet.html#getHighValue(int)"><B>getHighValue(int)</B></A> - 
Method in interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IStockChartDataSet.html">IStockChartDataSet</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/StockChartProperties.html#getHiLowStroke()"><B>getHiLowStroke()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/StockChartProperties.html">StockChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/AxisChart.html#getIAxisDataSeries()"><B>getIAxisDataSeries()</B></A> - 
Method in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/AxisChart.html">AxisChart</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html#getiAxisPlotDataSet()"><B>getiAxisPlotDataSet()</B></A> - 
Method in class org.jCharts.axisChart.customRenderers.axisValue.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html">AxisValueRenderEvent</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/AxisDataSeries.html#getIAxisPlotDataSet(org.jCharts.types.ChartType)"><B>getIAxisPlotDataSet(ChartType)</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/AxisDataSeries.html">AxisDataSeries</A>
<DD>Returns the IAxisPlotDataSet for the passed chart type constant.
<DT><A HREF="org/jCharts/chartData/interfaces/IAxisDataSeries.html#getIAxisPlotDataSet(org.jCharts.types.ChartType)"><B>getIAxisPlotDataSet(ChartType)</B></A> - 
Method in interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IAxisDataSeries.html">IAxisDataSeries</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/AxisDataSeries.html#getIAxisPlotDataSetIterator()"><B>getIAxisPlotDataSetIterator()</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/AxisDataSeries.html">AxisDataSeries</A>
<DD>Returns an Iterator over a List of IAxisPlotDataSet Objects
<DT><A HREF="org/jCharts/chartData/interfaces/IAxisDataSeries.html#getIAxisPlotDataSetIterator()"><B>getIAxisPlotDataSetIterator()</B></A> - 
Method in interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IAxisDataSeries.html">IAxisDataSeries</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LegendProperties.html#getIconBorderPaint()"><B>getIconBorderPaint()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendProperties.html">LegendProperties</A>
<DD>Returns the Icon border Color used by the Legend.
<DT><A HREF="org/jCharts/properties/LegendProperties.html#getIconBorderStroke()"><B>getIconBorderStroke()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendProperties.html">LegendProperties</A>
<DD>Returns the icon border Stroke
<DT><A HREF="org/jCharts/properties/LegendAreaProperties.html#getIconPadding()"><B>getIconPadding()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendAreaProperties.html">LegendAreaProperties</A>
<DD>Returns the padding between the icon and the Label
<DT><A HREF="org/jCharts/Chart.html#getImageHeight()"><B>getImageHeight()</B></A> - 
Method in class org.jCharts.<A HREF="org/jCharts/Chart.html">Chart</A>
<DD>Returns the BufferedImage height
<DT><A HREF="org/jCharts/Chart.html#getImageMap()"><B>getImageMap()</B></A> - 
Method in class org.jCharts.<A HREF="org/jCharts/Chart.html">Chart</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/Chart.html#getImageWidth()"><B>getImageWidth()</B></A> - 
Method in class org.jCharts.<A HREF="org/jCharts/Chart.html">Chart</A>
<DD>Returns the BufferedImage width
<DT><A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html#getIncrement()"><B>getIncrement()</B></A> - 
Method in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html">ScaleCalculator</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/types/IntType.html#getInt()"><B>getInt()</B></A> - 
Method in class org.jCharts.types.<A HREF="org/jCharts/types/IntType.html">IntType</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/BarValueGroup.BarValue.html#getIsNegative()"><B>getIsNegative()</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/BarValueGroup.BarValue.html">BarValueGroup.BarValue</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/imageMap/ImageMap.html#getIterator()"><B>getIterator()</B></A> - 
Method in class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/ImageMap.html">ImageMap</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/YAxis.html#getLastTickY()"><B>getLastTickY()</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/YAxis.html">YAxis</A>
<DD>Need this value as horizontal plots start from the top of the axis and go down
<DT><A HREF="org/jCharts/Chart.html#getLegend()"><B>getLegend()</B></A> - 
Method in class org.jCharts.<A HREF="org/jCharts/Chart.html">Chart</A>
<DD>Returns the Legend.
<DT><A HREF="org/jCharts/chartData/StockChartDataSet.html#getLegendLabel(int)"><B>getLegendLabel(int)</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/StockChartDataSet.html">StockChartDataSet</A>
<DD>Returns the legend label for the passed index.
<DT><A HREF="org/jCharts/chartData/ScatterPlotDataSet.html#getLegendLabel(int)"><B>getLegendLabel(int)</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/ScatterPlotDataSet.html">ScatterPlotDataSet</A>
<DD>Returns the legend label for the passed index.
<DT><A HREF="org/jCharts/chartData/DataSet.html#getLegendLabel(int)"><B>getLegendLabel(int)</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/DataSet.html">DataSet</A>
<DD>Returns the legend label for the passed index.
<DT><A HREF="org/jCharts/chartData/interfaces/IDataSet.html#getLegendLabel(int)"><B>getLegendLabel(int)</B></A> - 
Method in interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IDataSet.html">IDataSet</A>
<DD>Returns the Legend Label for the passed index.
<DT><A HREF="org/jCharts/Legend.html#getLegendProperties()"><B>getLegendProperties()</B></A> - 
Method in class org.jCharts.<A HREF="org/jCharts/Legend.html">Legend</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/imageMap/ImageMapArea.html#getLengendLabel()"><B>getLengendLabel()</B></A> - 
Method in class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/ImageMapArea.html">ImageMapArea</A>
<DD>Returns the legend label represented by this map area.
<DT><A HREF="org/jCharts/properties/ScatterPlotProperties.html#getLineStrokes()"><B>getLineStrokes()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/ScatterPlotProperties.html">ScatterPlotProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LineChartProperties.html#getLineStrokes()"><B>getLineStrokes()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/LineChartProperties.html">LineChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/StockChartDataSet.html#getLowValue(int)"><B>getLowValue(int)</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/StockChartDataSet.html">StockChartDataSet</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/interfaces/IStockChartDataSet.html#getLowValue(int)"><B>getLowValue(int)</B></A> - 
Method in interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IStockChartDataSet.html">IStockChartDataSet</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html#getMax(double[][])"><B>getMax(double[][])</B></A> - 
Method in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html">ChartScale</A>
<DD>Helper method that finds the largest double in the 2D array of doubles.
<DT><A HREF="org/jCharts/axisChart/axis/DataAxis.html#getMaxValue()"><B>getMaxValue()</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/DataAxis.html">DataAxis</A>
<DD><B>Deprecated.</B>&nbsp;Returns the MAX value plotted by the axis.
<DT><A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html#getMaxValue()"><B>getMaxValue()</B></A> - 
Method in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html">ScaleCalculator</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/processors/AxisChartDataProcessor.html#getMaxValue()"><B>getMaxValue()</B></A> - 
Method in class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/AxisChartDataProcessor.html">AxisChartDataProcessor</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html#getMin(double[][])"><B>getMin(double[][])</B></A> - 
Method in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html">ChartScale</A>
<DD>Helper method that finds the smallest double in the 2D array of doubles.
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#getMinimumHeightNeeded()"><B>getMinimumHeightNeeded()</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#getMinimumWidthNeeded()"><B>getMinimumWidthNeeded()</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/DataAxis.html#getMinValue()"><B>getMinValue()</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/DataAxis.html">DataAxis</A>
<DD><B>Deprecated.</B>&nbsp;Returns the MIN value plotted by the axis.
<DT><A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html#getMinValue()"><B>getMinValue()</B></A> - 
Method in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html">ScaleCalculator</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/processors/AxisChartDataProcessor.html#getMinValue()"><B>getMinValue()</B></A> - 
Method in class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/AxisChartDataProcessor.html">AxisChartDataProcessor</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/NumericTagGroup.html#getNumberFormatInstance(boolean, boolean, boolean, int)"><B>getNumberFormatInstance(boolean, boolean, boolean, int)</B></A> - 
Static method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/NumericTagGroup.html">NumericTagGroup</A>
<DD>Allow use of this logic to not only this class but to the chart label values.
<DT><A HREF="org/jCharts/chartData/DataSeries.html#getNumberOfAxisLabels()"><B>getNumberOfAxisLabels()</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/DataSeries.html">DataSeries</A>
<DD>Returns the number of labels on the x-axis
<DT><A HREF="org/jCharts/chartData/interfaces/IDataSeries.html#getNumberOfAxisLabels()"><B>getNumberOfAxisLabels()</B></A> - 
Method in interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IDataSeries.html">IDataSeries</A>
<DD>Returns the number of labels on the x-axis
<DT><A HREF="org/jCharts/imageMap/ImageMapArea.html#getNumberOfCoordinates()"><B>getNumberOfCoordinates()</B></A> - 
Method in class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/ImageMapArea.html">ImageMapArea</A>
<DD>Returns the number of x,y coordinate pairs stored for the area
<DT><A HREF="org/jCharts/chartData/StockChartDataSet.html#getNumberOfDataItems()"><B>getNumberOfDataItems()</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/StockChartDataSet.html">StockChartDataSet</A>
<DD>Returns the number of elements in the data set.
<DT><A HREF="org/jCharts/chartData/ScatterPlotDataSet.html#getNumberOfDataItems()"><B>getNumberOfDataItems()</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/ScatterPlotDataSet.html">ScatterPlotDataSet</A>
<DD>Returns the number of elements in the data set.
<DT><A HREF="org/jCharts/chartData/DataSet.html#getNumberOfDataItems()"><B>getNumberOfDataItems()</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/DataSet.html">DataSet</A>
<DD>Returns the number of elements in the data set.
<DT><A HREF="org/jCharts/chartData/interfaces/IDataSet.html#getNumberOfDataItems()"><B>getNumberOfDataItems()</B></A> - 
Method in interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IDataSet.html">IDataSet</A>
<DD>Returns the number of elements in the data set.
<DT><A HREF="org/jCharts/chartData/StockChartDataSet.html#getNumberOfDataSets()"><B>getNumberOfDataSets()</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/StockChartDataSet.html">StockChartDataSet</A>
<DD>Returns the number of IAxisChartDataSet Objects in this series
<DT><A HREF="org/jCharts/chartData/ScatterPlotDataSet.html#getNumberOfDataSets()"><B>getNumberOfDataSets()</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/ScatterPlotDataSet.html">ScatterPlotDataSet</A>
<DD>Returns the number of elements in the data set.
<DT><A HREF="org/jCharts/chartData/AxisChartDataSet.html#getNumberOfDataSets()"><B>getNumberOfDataSets()</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/AxisChartDataSet.html">AxisChartDataSet</A>
<DD>Returns the number of IAxisChartDataSet Objects in this series
<DT><A HREF="org/jCharts/chartData/interfaces/IAxisPlotDataSet.html#getNumberOfDataSets()"><B>getNumberOfDataSets()</B></A> - 
Method in interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IAxisPlotDataSet.html">IAxisPlotDataSet</A>
<DD>Returns the number of data sets contained in this Object.
<DT><A HREF="org/jCharts/chartData/processors/AxisChartDataProcessor.html#getNumberOfElementsInADataSet()"><B>getNumberOfElementsInADataSet()</B></A> - 
Method in class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/AxisChartDataProcessor.html">AxisChartDataProcessor</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/StockChartDataSet.html#getNumberOfLegendLabels()"><B>getNumberOfLegendLabels()</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/StockChartDataSet.html">StockChartDataSet</A>
<DD>Returns the number of Legend Labels to display.
<DT><A HREF="org/jCharts/chartData/ScatterPlotDataSet.html#getNumberOfLegendLabels()"><B>getNumberOfLegendLabels()</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/ScatterPlotDataSet.html">ScatterPlotDataSet</A>
<DD>Returns the number of Legend Labels to display.
<DT><A HREF="org/jCharts/chartData/DataSet.html#getNumberOfLegendLabels()"><B>getNumberOfLegendLabels()</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/DataSet.html">DataSet</A>
<DD>Returns the number of Legend Labels to display.
<DT><A HREF="org/jCharts/chartData/interfaces/IDataSet.html#getNumberOfLegendLabels()"><B>getNumberOfLegendLabels()</B></A> - 
Method in interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IDataSet.html">IDataSet</A>
<DD>Returns the number of legend labels in the data set.
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#getNumberOfScaleItems()"><B>getNumberOfScaleItems()</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html#getNumberOfScaleItems()"><B>getNumberOfScaleItems()</B></A> - 
Method in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html">ScaleCalculator</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LegendAreaProperties.html#getNumColumns()"><B>getNumColumns()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendAreaProperties.html">LegendAreaProperties</A>
<DD>Gets the number of text columns the legend should display.
<DT><A HREF="org/jCharts/properties/DataAxisProperties.html#getNumItems()"><B>getNumItems()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/DataAxisProperties.html">DataAxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/DataAxis.html#getOneUnitPixelSize()"><B>getOneUnitPixelSize()</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/DataAxis.html">DataAxis</A>
<DD><B>Deprecated.</B>&nbsp;Returns the number of pixels one value unit occupies.
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#getOneUnitPixelSize()"><B>getOneUnitPixelSize()</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>Returns the number of pixels one value unit occupies.
<DT><A HREF="org/jCharts/properties/StockChartProperties.html#getOpenPixelLength()"><B>getOpenPixelLength()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/StockChartProperties.html">StockChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/StockChartProperties.html#getOpenStroke()"><B>getOpenStroke()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/StockChartProperties.html">StockChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/StockChartDataSet.html#getOpenValue(int)"><B>getOpenValue(int)</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/StockChartDataSet.html">StockChartDataSet</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/interfaces/IStockChartDataSet.html#getOpenValue(int)"><B>getOpenValue(int)</B></A> - 
Method in interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IStockChartDataSet.html">IStockChartDataSet</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#getOrigin()"><B>getOrigin()</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#getPaddingBetweenAxisAndLabels()"><B>getPaddingBetweenAxisAndLabels()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#getPaddingBetweenAxisLabels()"><B>getPaddingBetweenAxisLabels()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#getPaddingBetweenAxisTitleAndLabels()"><B>getPaddingBetweenAxisTitleAndLabels()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#getPaddingBetweenLabelsAndTicks()"><B>getPaddingBetweenLabelsAndTicks()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/util/ChartItem.html#getPaint()"><B>getPaint()</B></A> - 
Method in class org.jCharts.properties.util.<A HREF="org/jCharts/properties/util/ChartItem.html">ChartItem</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/StockChartDataSet.html#getPaint(int)"><B>getPaint(int)</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/StockChartDataSet.html">StockChartDataSet</A>
<DD>Returns the number of IAxisChartDataSet Objects in this series
<DT><A HREF="org/jCharts/chartData/ScatterPlotDataSet.html#getPaint(int)"><B>getPaint(int)</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/ScatterPlotDataSet.html">ScatterPlotDataSet</A>
<DD>Returns the legend label for the passed index.
<DT><A HREF="org/jCharts/chartData/DataSet.html#getPaint(int)"><B>getPaint(int)</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/DataSet.html">DataSet</A>
<DD>Returns the legend label for the passed index.
<DT><A HREF="org/jCharts/chartData/interfaces/IDataSet.html#getPaint(int)"><B>getPaint(int)</B></A> - 
Method in interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IDataSet.html">IDataSet</A>
<DD>Returns the Paint Object for the passed index.
<DT><A HREF="org/jCharts/properties/BarChartProperties.html#getPercentage()"><B>getPercentage()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/BarChartProperties.html">BarChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/processors/PieChartDataProcessor.html#getPercentageOfPie(int)"><B>getPercentageOfPie(int)</B></A> - 
Method in class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/PieChartDataProcessor.html">PieChartDataProcessor</A>
<DD>Returns percentage of pie(360 degrees) data point at specified index.
<DT><A HREF="org/jCharts/test/PieTestDriver.html#getPieChartDataSet(int, int, int)"><B>getPieChartDataSet(int, int, int)</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/PieTestDriver.html">PieTestDriver</A>
<DD>Generates a random NonAxisChartDataSet
<DT><A HREF="org/jCharts/properties/PieChart2DProperties.html#getPieLabelType()"><B>getPieLabelType()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/PieChart2DProperties.html">PieChart2DProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#getPixelLength()"><B>getPixelLength()</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LegendAreaProperties.html#getPlacement()"><B>getPlacement()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendAreaProperties.html">LegendAreaProperties</A>
<DD>Returns where the Legend should be drawn in relation to the Chart.
<DT><A HREF="org/jCharts/properties/PointChartProperties.html#getPointOutlinePaints(int)"><B>getPointOutlinePaints(int)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/PointChartProperties.html">PointChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelPosition.html#getPosition()"><B>getPosition()</B></A> - 
Method in class org.jCharts.axisChart.customRenderers.axisValue.renderers.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelPosition.html">ValueLabelPosition</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/TestDataGenerator.html#getRandomColor()"><B>getRandomColor()</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/TestDataGenerator.html">TestDataGenerator</A>
<DD>Random Color generator.
<DT><A HREF="org/jCharts/test/TestDataGenerator.html#getRandomFont(double, double)"><B>getRandomFont(double, double)</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/TestDataGenerator.html">TestDataGenerator</A>
<DD>Random font generator based on the available Fonts on this machine.
<DT><A HREF="org/jCharts/test/TestDataGenerator.html#getRandomNumber(double)"><B>getRandomNumber(double)</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/TestDataGenerator.html">TestDataGenerator</A>
<DD>Random number generator.
<DT><A HREF="org/jCharts/test/TestDataGenerator.html#getRandomNumber(double, double)"><B>getRandomNumber(double, double)</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/TestDataGenerator.html">TestDataGenerator</A>
<DD>Random number generator in specified range.
<DT><A HREF="org/jCharts/test/TestDataGenerator.html#getRandomNumbers(int, double, double)"><B>getRandomNumbers(int, double, double)</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/TestDataGenerator.html">TestDataGenerator</A>
<DD>Random numbers generator in specified range.
<DT><A HREF="org/jCharts/test/TestDataGenerator.html#getRandomNumbers(int, int, double, double)"><B>getRandomNumbers(int, int, double, double)</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/TestDataGenerator.html">TestDataGenerator</A>
<DD>Random numbers generator in specified range.
<DT><A HREF="org/jCharts/test/TestDataGenerator.html#getRandomPaint()"><B>getRandomPaint()</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/TestDataGenerator.html">TestDataGenerator</A>
<DD>Random Paint generator.
<DT><A HREF="org/jCharts/test/TestDataGenerator.html#getRandomPaints(int)"><B>getRandomPaints(int)</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/TestDataGenerator.html">TestDataGenerator</A>
<DD>Random Color generator.
<DT><A HREF="org/jCharts/test/TestDataGenerator.html#getRandomPoints(int, double, double, double, double)"><B>getRandomPoints(int, double, double, double, double)</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/TestDataGenerator.html">TestDataGenerator</A>
<DD>Random numbers generator in specified range.
<DT><A HREF="org/jCharts/test/TestDataGenerator.html#getRandomString(int, boolean)"><B>getRandomString(int, boolean)</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/TestDataGenerator.html">TestDataGenerator</A>
<DD>Random String generator.
<DT><A HREF="org/jCharts/test/TestDataGenerator.html#getRandomStrings(int, int, boolean)"><B>getRandomStrings(int, int, boolean)</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/TestDataGenerator.html">TestDataGenerator</A>
<DD>Random String generator.
<DT><A HREF="org/jCharts/chartText/TextTag.html#getRectangle()"><B>getRectangle()</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTag.html">TextTag</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/BarValueGroup.html#getRight(java.awt.geom.Rectangle2D.Float)"><B>getRight(Rectangle2D.Float)</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/BarValueGroup.html">BarValueGroup</A>
<DD>Not sure why this was left out of Rectangle2D...
<DT><A HREF="org/jCharts/chartText/TextTag.html#getRightSide()"><B>getRightSide()</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTag.html">TextTag</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html#getRounding()"><B>getRounding()</B></A> - 
Method in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html">ChartScale</A>
<DD>* Accessor for the rounding property.
<DT><A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html#getRoundingPowerOfTen()"><B>getRoundingPowerOfTen()</B></A> - 
Method in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html">ScaleCalculator</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/DataAxisProperties.html#getRoundToNearest()"><B>getRoundToNearest()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/DataAxisProperties.html">DataAxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LegendAreaProperties.html#getRowPadding()"><B>getRowPadding()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendAreaProperties.html">LegendAreaProperties</A>
<DD>Returns the padding between labels in each row.
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#getScaleCalculator()"><B>getScaleCalculator()</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/DataAxisProperties.html#getScaleCalculator()"><B>getScaleCalculator()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/DataAxisProperties.html">DataAxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#getScaleChartFont()"><B>getScaleChartFont()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#getScalePixelWidth()"><B>getScalePixelWidth()</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/ScatterPlotTestDriver.html#getScatterPlotProperties(int)"><B>getScatterPlotProperties(int)</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/ScatterPlotTestDriver.html">ScatterPlotTestDriver</A>
<DD>Separate this so can use for combo chart test
<DT><A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html#getSegments()"><B>getSegments()</B></A> - 
Method in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html">ChartScale</A>
<DD>* Accessor for the segments property.
<DT><A HREF="org/jCharts/properties/PointChartProperties.html#getShape(int)"><B>getShape(int)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/PointChartProperties.html">PointChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/ScatterPlotProperties.html#getShapes()"><B>getShapes()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/ScatterPlotProperties.html">ScatterPlotProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LineChartProperties.html#getShapes()"><B>getShapes()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/LineChartProperties.html">LineChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#getShowEndBorder()"><B>getShowEndBorder()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#getShowGridLines()"><B>getShowGridLines()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/BarChartProperties.html#getShowOutlinesFlag()"><B>getShowOutlinesFlag()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/BarChartProperties.html">BarChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#getShowTicks()"><B>getShowTicks()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LegendProperties.html#getSize()"><B>getSize()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendProperties.html">LegendProperties</A>
<DD>Getter for property size.
<DT><A HREF="org/jCharts/chartData/AxisDataSeries.html#getSizeOfEachDataSet()"><B>getSizeOfEachDataSet()</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/AxisDataSeries.html">AxisDataSeries</A>
<DD>Returns number of elements in each data set dimension, so i can validate a that all
 	IAxisPlotDataSets on a ComboChart have the same number of elements, as well as the
 	number of Axis Labels equal the number of data elements other charts.
<DT><A HREF="org/jCharts/chartText/BarValueGroup.BarValue.html#getStartPosition()"><B>getStartPosition()</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/BarValueGroup.BarValue.html">BarValueGroup.BarValue</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/processors/TextProcessor.html#getTallestLabel()"><B>getTallestLabel()</B></A> - 
Method in class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/TextProcessor.html">TextProcessor</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/TextTagGroup.html#getTallestLabel()"><B>getTallestLabel()</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTagGroup.html">TextTagGroup</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/TextTag.html#getText()"><B>getText()</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTag.html">TextTag</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/BarValueGroup.BarValue.html#getText()"><B>getText()</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/BarValueGroup.BarValue.html">BarValueGroup.BarValue</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/processors/TextProcessor.html#getTextTag(int)"><B>getTextTag(int)</B></A> - 
Method in class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/TextProcessor.html">TextProcessor</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/TextTagGroup.html#getTextTag(int)"><B>getTextTag(int)</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTagGroup.html">TextTagGroup</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#getTickChartStroke()"><B>getTickChartStroke()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/PieChart2DProperties.html#getTickLength()"><B>getTickLength()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/PieChart2DProperties.html">PieChart2DProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#getTickStart()"><B>getTickStart()</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#getTitleChartFont()"><B>getTitleChartFont()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/ChartProperties.html#getTitleFont()"><B>getTitleFont()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/ChartProperties.html">ChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#getTitleHeight()"><B>getTitleHeight()</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/ChartProperties.html#getTitlePadding()"><B>getTitlePadding()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/ChartProperties.html">ChartProperties</A>
<DD>Returns the number of pixels between the Chart Title and the axis plot area
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#getTitleWidth()"><B>getTitleWidth()</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html#getTotalItemAxisArea()"><B>getTotalItemAxisArea()</B></A> - 
Method in class org.jCharts.axisChart.customRenderers.axisValue.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html">AxisValueRenderEvent</A>
<DD>Returns the bounding box of the total axis plot area alotted to the current scale
 	item.
<DT><A HREF="org/jCharts/chartData/processors/TextProcessor.html#getTotalLabelWidths()"><B>getTotalLabelWidths()</B></A> - 
Method in class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/TextProcessor.html">TextProcessor</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/TextTagGroup.html#getTotalLabelWidths()"><B>getTotalLabelWidths()</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTagGroup.html">TextTagGroup</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/AxisDataSeries.html#getTotalNumberOfDataSets()"><B>getTotalNumberOfDataSets()</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/AxisDataSeries.html">AxisDataSeries</A>
<DD>Returns the total number data dimensions in all of the IAxisChartDataSets contained in
  this collection.
<DT><A HREF="org/jCharts/chartData/interfaces/IAxisDataSeries.html#getTotalNumberOfDataSets()"><B>getTotalNumberOfDataSets()</B></A> - 
Method in interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IAxisDataSeries.html">IAxisDataSeries</A>
<DD>Returns the total number data dimensions in all of the IAxisChartDataSets contained in
  this collection.
<DT><A HREF="org/jCharts/types/Type.html#getTypeCode()"><B>getTypeCode()</B></A> - 
Method in class org.jCharts.types.<A HREF="org/jCharts/types/Type.html">Type</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/DataAxisProperties.html#getUserDefinedIncrement()"><B>getUserDefinedIncrement()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/DataAxisProperties.html">DataAxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/DataAxisProperties.html#getUserDefinedMinimumValue()"><B>getUserDefinedMinimumValue()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/DataAxisProperties.html">DataAxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/imageMap/ImageMapArea.html#getValue()"><B>getValue()</B></A> - 
Method in class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/ImageMapArea.html">ImageMapArea</A>
<DD>Returns the data set value represented by this map.
<DT><A HREF="org/jCharts/imageMap/AreaShape.html#getValue()"><B>getValue()</B></A> - 
Method in class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/AreaShape.html">AreaShape</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/PieChartDataSet.html#getValue(int)"><B>getValue(int)</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/PieChartDataSet.html">PieChartDataSet</A>
<DD>Returns the value in the data set at the specified position.
<DT><A HREF="org/jCharts/chartData/interfaces/IPieChartDataSet.html#getValue(int)"><B>getValue(int)</B></A> - 
Method in interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IPieChartDataSet.html">IPieChartDataSet</A>
<DD>Returns the value in the data set at the specified position.
<DT><A HREF="org/jCharts/chartData/ScatterPlotDataSet.html#getValue(int, int)"><B>getValue(int, int)</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/ScatterPlotDataSet.html">ScatterPlotDataSet</A>
<DD>Returns the value in the data set at the specified position.
<DT><A HREF="org/jCharts/chartData/AxisChartDataSet.html#getValue(int, int)"><B>getValue(int, int)</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/AxisChartDataSet.html">AxisChartDataSet</A>
<DD>Returns the value in the data set at the specified position.
<DT><A HREF="org/jCharts/chartData/interfaces/IScatterPlotDataSet.html#getValue(int, int)"><B>getValue(int, int)</B></A> - 
Method in interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IScatterPlotDataSet.html">IScatterPlotDataSet</A>
<DD>Returns the value in the data set at the specified position.
<DT><A HREF="org/jCharts/chartData/interfaces/IAxisChartDataSet.html#getValue(int, int)"><B>getValue(int, int)</B></A> - 
Method in interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IAxisChartDataSet.html">IAxisChartDataSet</A>
<DD>Returns the value in the data set at the specified position.
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html#getValueIndex()"><B>getValueIndex()</B></A> - 
Method in class org.jCharts.axisChart.customRenderers.axisValue.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html">AxisValueRenderEvent</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/PieChart2DProperties.html#getValueLabelFont()"><B>getValueLabelFont()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/PieChart2DProperties.html">PieChart2DProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/PieChart2DProperties.html#getValueLabelRoundingPowerOfTen()"><B>getValueLabelRoundingPowerOfTen()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/PieChart2DProperties.html">PieChart2DProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html#getValueX()"><B>getValueX()</B></A> - 
Method in class org.jCharts.axisChart.customRenderers.axisValue.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html">AxisValueRenderEvent</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html#getValueY()"><B>getValueY()</B></A> - 
Method in class org.jCharts.axisChart.customRenderers.axisValue.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html">AxisValueRenderEvent</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/processors/TextProcessor.html#getWidestLabel()"><B>getWidestLabel()</B></A> - 
Method in class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/TextProcessor.html">TextProcessor</A>
<DD>Calculates the width and height needed by the passed String when rendered

         //	 * @param iDataSeries
         /	 * @param font
         //	 * @param fontRenderContext

         public void processLabels( IDataSeries iDataSeries)	{
         //LOOP
         for( int i = 0; i < iDataSeries.getNumberOfXAxisLabels(); i++ )
         {
         this.axisLabelProcessor.processLabel( iDataSeries.getXAxisLabel( i ), axisLabelFont, fontRenderContext );
         }


         TextLayout textLayout = new TextLayout( label, font, fontRenderContext );

         //---WIDTH
         this.labelWidths[ counter ] = textLayout.getAdvance();
         this.widestLabel = Math.max( this.labelWidths[ counter ], this.widestLabel );
         this.totalLabelWidths += this.labelWidths[ counter ];

         //---HEIGHT
         this.labelHeights[ counter ] = textLayout.getAscent() + textLayout.getDescent();
         this.tallestLabel = Math.max( this.labelHeights[ counter ], this.tallestLabel );

         //---need this to offset font rendering, as rendering is at the baseline not bottom or top,
         this.fontDescent = textLayout.getDescent();

         this.counter++;
         }


         /******************************************************************************************
<DT><A HREF="org/jCharts/chartText/TextTagGroup.html#getWidestLabel()"><B>getWidestLabel()</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTagGroup.html">TextTagGroup</A>
<DD>Calculates the width and height needed by the passed String when rendered

         //	 * @param iDataSeries
         /	 * @param font
         //	 * @param fontRenderContext

         public void processLabels( IDataSeries iDataSeries)	{
         //LOOP
         for( int i = 0; i < iDataSeries.getNumberOfXAxisLabels(); i++ )
         {
         this.axisLabelProcessor.processLabel( iDataSeries.getXAxisLabel( i ), axisLabelFont, fontRenderContext );
         }


         TextLayout textLayout = new TextLayout( label, font, fontRenderContext );

         //---WIDTH
         this.labelWidths[ counter ] = textLayout.getAdvance();
         this.widestLabel = Math.max( this.labelWidths[ counter ], this.widestLabel );
         this.totalLabelWidths += this.labelWidths[ counter ];

         //---HEIGHT
         this.labelHeights[ counter ] = textLayout.getAscent() + textLayout.getDescent();
         this.tallestLabel = Math.max( this.labelHeights[ counter ], this.tallestLabel );

         //---need this to offset font rendering, as rendering is at the baseline not bottom or top,
         this.fontDescent = textLayout.getDescent();

         this.counter++;
         }


         /******************************************************************************************
<DT><A HREF="org/jCharts/Legend.html#getWidth()"><B>getWidth()</B></A> - 
Method in class org.jCharts.<A HREF="org/jCharts/Legend.html">Legend</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/TextTag.html#getWidth()"><B>getWidth()</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTag.html">TextTag</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/AxisChart.html#getXAxis()"><B>getXAxis()</B></A> - 
Method in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/AxisChart.html">AxisChart</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/imageMap/ImageMapArea.html#getXAxisLabel()"><B>getXAxisLabel()</B></A> - 
Method in class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/ImageMapArea.html">ImageMapArea</A>
<DD>Rather than create an AxisChart specifc map area class just for this field, i put it
	here.
<DT><A HREF="org/jCharts/properties/AxisProperties.html#getXAxisProperties()"><B>getXAxisProperties()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisProperties.html">AxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/AxisDataSeries.html#getXAxisTitle()"><B>getXAxisTitle()</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/AxisDataSeries.html">AxisDataSeries</A>
<DD>Returns the x-axis title
<DT><A HREF="org/jCharts/chartData/interfaces/IAxisDataSeries.html#getXAxisTitle()"><B>getXAxisTitle()</B></A> - 
Method in interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IAxisDataSeries.html">IAxisDataSeries</A>
<DD>Returns the x-axis title.
<DT><A HREF="org/jCharts/imageMap/ImageMapArea.html#getXCoordinate(int)"><B>getXCoordinate(int)</B></A> - 
Method in class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/ImageMapArea.html">ImageMapArea</A>
<DD>Returns the x coordinate at the specified index.
<DT><A HREF="org/jCharts/chartText/TextTag.html#getXPosition()"><B>getXPosition()</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTag.html">TextTag</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/AxisChart.html#getYAxis()"><B>getYAxis()</B></A> - 
Method in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/AxisChart.html">AxisChart</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisProperties.html#getYAxisProperties()"><B>getYAxisProperties()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisProperties.html">AxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/AxisDataSeries.html#getYAxisTitle()"><B>getYAxisTitle()</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/AxisDataSeries.html">AxisDataSeries</A>
<DD>Returns the y-axis title
<DT><A HREF="org/jCharts/chartData/interfaces/IAxisDataSeries.html#getYAxisTitle()"><B>getYAxisTitle()</B></A> - 
Method in interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IAxisDataSeries.html">IAxisDataSeries</A>
<DD>Returns the y-axis title.
<DT><A HREF="org/jCharts/imageMap/ImageMapArea.html#getYCoordinate(int)"><B>getYCoordinate(int)</B></A> - 
Method in class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/ImageMapArea.html">ImageMapArea</A>
<DD>Returns the y coordinate at the specified index.
<DT><A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html#getYDelta()"><B>getYDelta()</B></A> - 
Method in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html">ChartScale</A>
<DD>* Accessor for the yDelta property.
<DT><A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html#getYEnd()"><B>getYEnd()</B></A> - 
Method in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html">ChartScale</A>
<DD>* Accessor for the yEnd property.
<DT><A HREF="org/jCharts/chartData/processors/ScatterPlotDataProcessor.html#getyMax()"><B>getyMax()</B></A> - 
Method in class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/ScatterPlotDataProcessor.html">ScatterPlotDataProcessor</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html#getYMax()"><B>getYMax()</B></A> - 
Method in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html">ChartScale</A>
<DD>* Accessor for the yMax property.
<DT><A HREF="org/jCharts/chartData/processors/ScatterPlotDataProcessor.html#getyMin()"><B>getyMin()</B></A> - 
Method in class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/ScatterPlotDataProcessor.html">ScatterPlotDataProcessor</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html#getYMin()"><B>getYMin()</B></A> - 
Method in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html">ChartScale</A>
<DD>* Accessor for the yMin property.
<DT><A HREF="org/jCharts/chartText/TextTag.html#getYPosition()"><B>getYPosition()</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTag.html">TextTag</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html#getYStart()"><B>getYStart()</B></A> - 
Method in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html">ChartScale</A>
<DD>* Accessor for the yStart property.
<DT><A HREF="org/jCharts/properties/PieChart2DProperties.html#getZeroDegreeOffset()"><B>getZeroDegreeOffset()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/PieChart2DProperties.html">PieChart2DProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/DataAxisProperties.html#getZeroLineChartStroke()"><B>getZeroLineChartStroke()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/DataAxisProperties.html">DataAxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/DataAxis.html#getZeroLineCoordinate()"><B>getZeroLineCoordinate()</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/DataAxis.html">DataAxis</A>
<DD><B>Deprecated.</B>&nbsp;Returns the screen coordinate of the zero line.
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#getZeroLineCoordinate()"><B>getZeroLineCoordinate()</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>Returns the screen coordinate of the zero line.
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html#getZeroLineCoordinate()"><B>getZeroLineCoordinate()</B></A> - 
Method in class org.jCharts.axisChart.customRenderers.axisValue.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html">AxisValueRenderEvent</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/Chart.html#graphics2D"><B>graphics2D</B></A> - 
Variable in class org.jCharts.<A HREF="org/jCharts/Chart.html">Chart</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html#graphics2D"><B>graphics2D</B></A> - 
Variable in class org.jCharts.axisChart.customRenderers.axisValue.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html">AxisValueRenderEvent</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#GRID_LINES_ALL"><B>GRID_LINES_ALL</B></A> - 
Static variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#GRID_LINES_NONE"><B>GRID_LINES_NONE</B></A> - 
Static variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#GRID_LINES_ONLY_WITH_LABELS"><B>GRID_LINES_ONLY_WITH_LABELS</B></A> - 
Static variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#gridLineChartStroke"><B>gridLineChartStroke</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
</DL>
<HR>
<A NAME="_H_"><!-- --></A><H2>
<B>H</B></H2>
<DL>
<DT><A HREF="org/jCharts/chartData/StockChartDataSet.html#hasCloseValues()"><B>hasCloseValues()</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/StockChartDataSet.html">StockChartDataSet</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/interfaces/IStockChartDataSet.html#hasCloseValues()"><B>hasCloseValues()</B></A> - 
Method in interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IStockChartDataSet.html">IStockChartDataSet</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/Chart.html#hasLegend()"><B>hasLegend()</B></A> - 
Method in class org.jCharts.<A HREF="org/jCharts/Chart.html">Chart</A>
<DD>Returns flag indicating if there is a Legend.
<DT><A HREF="org/jCharts/chartData/StockChartDataSet.html#hasOpenValues()"><B>hasOpenValues()</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/StockChartDataSet.html">StockChartDataSet</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/interfaces/IStockChartDataSet.html#hasOpenValues()"><B>hasOpenValues()</B></A> - 
Method in interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IStockChartDataSet.html">IStockChartDataSet</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/DataAxisProperties.html#hasUserDefinedScale()"><B>hasUserDefinedScale()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/DataAxisProperties.html">DataAxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/Legend.html#height"><B>height</B></A> - 
Variable in class org.jCharts.<A HREF="org/jCharts/Legend.html">Legend</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/Chart.html#height"><B>height</B></A> - 
Variable in class org.jCharts.<A HREF="org/jCharts/Chart.html">Chart</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/TextTag.html#height"><B>height</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTag.html">TextTag</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/StockChartDataSet.html#high"><B>high</B></A> - 
Variable in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/StockChartDataSet.html">StockChartDataSet</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/types/StockChartDataType.html#HIGH"><B>HIGH</B></A> - 
Static variable in class org.jCharts.types.<A HREF="org/jCharts/types/StockChartDataType.html">StockChartDataType</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/StockChartProperties.html#hiLowStroke"><B>hiLowStroke</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/StockChartProperties.html">StockChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/BarValueGroup.html#horizontalPadding"><B>horizontalPadding</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/BarValueGroup.html">BarValueGroup</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/BarChart.html#horizontalPlot(org.jCharts.axisChart.AxisChart, org.jCharts.chartData.interfaces.IAxisChartDataSet, org.jCharts.properties.BarChartProperties, org.jCharts.properties.DataAxisProperties, java.awt.Graphics2D, java.awt.geom.Rectangle2D.Float, float)"><B>horizontalPlot(AxisChart, IAxisChartDataSet, BarChartProperties, DataAxisProperties, Graphics2D, Rectangle2D.Float, float)</B></A> - 
Static method in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/BarChart.html">BarChart</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/ClusteredBarChart.html#horizontalPlot(org.jCharts.axisChart.AxisChart, org.jCharts.chartData.interfaces.IAxisChartDataSet, org.jCharts.properties.ClusteredBarChartProperties, org.jCharts.properties.DataAxisProperties, java.awt.Graphics2D, java.awt.geom.Rectangle2D.Float, float, float, float)"><B>horizontalPlot(AxisChart, IAxisChartDataSet, ClusteredBarChartProperties, DataAxisProperties, Graphics2D, Rectangle2D.Float, float, float, float)</B></A> - 
Static method in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/ClusteredBarChart.html">ClusteredBarChart</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/StackedBarChart.html#horizontalPlot(org.jCharts.axisChart.AxisChart, org.jCharts.chartData.interfaces.IAxisChartDataSet, org.jCharts.properties.StackedBarChartProperties, org.jCharts.properties.DataAxisProperties, java.awt.Graphics2D, java.awt.geom.Rectangle2D.Float, float)"><B>horizontalPlot(AxisChart, IAxisChartDataSet, StackedBarChartProperties, DataAxisProperties, Graphics2D, Rectangle2D.Float, float)</B></A> - 
Static method in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/StackedBarChart.html">StackedBarChart</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/HTMLChartTestable.html"><B>HTMLChartTestable</B></A> - interface org.jCharts.test.<A HREF="org/jCharts/test/HTMLChartTestable.html">HTMLChartTestable</A>.<DD>Interface class for Chart Objects that can be displayed in a jCharts test.<DT><A HREF="org/jCharts/test/HTMLGenerator.html"><B>HTMLGenerator</B></A> - class org.jCharts.test.<A HREF="org/jCharts/test/HTMLGenerator.html">HTMLGenerator</A>.<DD>Utility class for viewing a series of tests.<DT><A HREF="org/jCharts/test/HTMLGenerator.html#HTMLGenerator(java.lang.String)"><B>HTMLGenerator(String)</B></A> - 
Constructor for class org.jCharts.test.<A HREF="org/jCharts/test/HTMLGenerator.html">HTMLGenerator</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/HTMLTestable.html"><B>HTMLTestable</B></A> - interface org.jCharts.test.<A HREF="org/jCharts/test/HTMLTestable.html">HTMLTestable</A>.<DD>Interface class for Objects that can be displayed in a jCharts test.</DL>
<HR>
<A NAME="_I_"><!-- --></A><H2>
<B>I</B></H2>
<DL>
<DT><A HREF="org/jCharts/chartData/interfaces/IAxisChartDataSet.html"><B>IAxisChartDataSet</B></A> - interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IAxisChartDataSet.html">IAxisChartDataSet</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/axisChart/AxisChart.html#iAxisDataSeries"><B>iAxisDataSeries</B></A> - 
Variable in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/AxisChart.html">AxisChart</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/interfaces/IAxisDataSeries.html"><B>IAxisDataSeries</B></A> - interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IAxisDataSeries.html">IAxisDataSeries</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html#iAxisPlotDataSet"><B>iAxisPlotDataSet</B></A> - 
Variable in class org.jCharts.axisChart.customRenderers.axisValue.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html">AxisValueRenderEvent</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/interfaces/IAxisPlotDataSet.html"><B>IAxisPlotDataSet</B></A> - interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IAxisPlotDataSet.html">IAxisPlotDataSet</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/properties/LegendProperties.html#iconBorderPaint"><B>iconBorderPaint</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendProperties.html">LegendProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LegendProperties.html#iconBorderStroke"><B>iconBorderStroke</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendProperties.html">LegendProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LegendAreaProperties.html#iconPadding"><B>iconPadding</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendAreaProperties.html">LegendAreaProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/Legend.html#iconSide"><B>iconSide</B></A> - 
Variable in class org.jCharts.<A HREF="org/jCharts/Legend.html">Legend</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/interfaces/IData.html"><B>IData</B></A> - interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IData.html">IData</A>.<DD>Provides a common base class for all data structures.<DT><A HREF="org/jCharts/chartData/interfaces/IDataSeries.html"><B>IDataSeries</B></A> - interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IDataSeries.html">IDataSeries</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/chartData/interfaces/IDataSet.html"><B>IDataSet</B></A> - interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IDataSet.html">IDataSet</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/Chart.html#imageMap"><B>imageMap</B></A> - 
Variable in class org.jCharts.<A HREF="org/jCharts/Chart.html">Chart</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/imageMap/ImageMap.html"><B>ImageMap</B></A> - class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/ImageMap.html">ImageMap</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/imageMap/ImageMap.html#ImageMap(int)"><B>ImageMap(int)</B></A> - 
Constructor for class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/ImageMap.html">ImageMap</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/imageMap/ImageMapArea.html"><B>ImageMapArea</B></A> - class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/ImageMapArea.html">ImageMapArea</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/imageMap/ImageMapArea.html#ImageMapArea(int, double, java.lang.String, java.lang.String)"><B>ImageMapArea(int, double, String, String)</B></A> - 
Constructor for class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/ImageMapArea.html">ImageMapArea</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/imageMap/ImageMapArea.html#ImageMapArea(int, java.awt.geom.Point2D.Double, java.lang.String)"><B>ImageMapArea(int, Point2D.Double, String)</B></A> - 
Constructor for class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/ImageMapArea.html">ImageMapArea</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/imageMap/ImageMapNotSupportedException.html"><B>ImageMapNotSupportedException</B></A> - exception org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/ImageMapNotSupportedException.html">ImageMapNotSupportedException</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/imageMap/ImageMapNotSupportedException.html#ImageMapNotSupportedException(java.lang.String)"><B>ImageMapNotSupportedException(String)</B></A> - 
Constructor for class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/ImageMapNotSupportedException.html">ImageMapNotSupportedException</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/DataAxis.html#increment"><B>increment</B></A> - 
Variable in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/DataAxis.html">DataAxis</A>
<DD><B>Deprecated.</B>&nbsp;&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html#increment"><B>increment</B></A> - 
Variable in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html">ScaleCalculator</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/SwingTest.html#initComponents()"><B>initComponents()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/SwingTest.html">SwingTest</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/HTMLGenerator.html#innerTableRowEnd()"><B>innerTableRowEnd()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/HTMLGenerator.html">HTMLGenerator</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/HTMLGenerator.html#innerTableRowStart()"><B>innerTableRowStart()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/HTMLGenerator.html">HTMLGenerator</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/types/IntType.html"><B>IntType</B></A> - class org.jCharts.types.<A HREF="org/jCharts/types/IntType.html">IntType</A>.<DD>Provides a common base class for all types.<DT><A HREF="org/jCharts/types/IntType.html#IntType(int)"><B>IntType(int)</B></A> - 
Constructor for class org.jCharts.types.<A HREF="org/jCharts/types/IntType.html">IntType</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/processors/PieChartDataProcessor.html#iPieChartDataSet"><B>iPieChartDataSet</B></A> - 
Variable in class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/PieChartDataProcessor.html">PieChartDataProcessor</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/nonAxisChart/PieChart2D.html#iPieChartDataSet"><B>iPieChartDataSet</B></A> - 
Variable in class org.jCharts.nonAxisChart.<A HREF="org/jCharts/nonAxisChart/PieChart2D.html">PieChart2D</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/interfaces/IPieChartDataSet.html"><B>IPieChartDataSet</B></A> - interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IPieChartDataSet.html">IPieChartDataSet</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/chartData/interfaces/IScatterPlotDataSeries.html"><B>IScatterPlotDataSeries</B></A> - interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IScatterPlotDataSeries.html">IScatterPlotDataSeries</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/chartData/interfaces/IScatterPlotDataSet.html"><B>IScatterPlotDataSet</B></A> - interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IScatterPlotDataSet.html">IScatterPlotDataSet</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/properties/PieChart2DProperties.html#isCurrency"><B>isCurrency</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/PieChart2DProperties.html">PieChart2DProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/TextTag.html#isDerived"><B>isDerived</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTag.html">TextTag</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/TextTag.html#isHidden"><B>isHidden</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTag.html">TextTag</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelRenderer.html#isLabelVertical"><B>isLabelVertical</B></A> - 
Variable in class org.jCharts.axisChart.customRenderers.axisValue.renderers.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelRenderer.html">ValueLabelRenderer</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/BarValueGroup.BarValue.html#isNegative"><B>isNegative</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/BarValueGroup.BarValue.html">BarValueGroup.BarValue</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisProperties.html#isPlotHorizontal"><B>isPlotHorizontal</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisProperties.html">AxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisProperties.html#isPlotHorizontal()"><B>isPlotHorizontal()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisProperties.html">AxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/types/ChartType.html#isStacked()"><B>isStacked()</B></A> - 
Method in class org.jCharts.types.<A HREF="org/jCharts/types/ChartType.html">ChartType</A>
<DD>Returns flag indicating whether chart type has stacked data
<DT><A HREF="org/jCharts/chartData/interfaces/IStockChartDataSet.html"><B>IStockChartDataSet</B></A> - interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IStockChartDataSet.html">IStockChartDataSet</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/chartText/BarValueGroup.html#isVertical"><B>isVertical</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/BarValueGroup.html">BarValueGroup</A>
<DD>&nbsp;
</DL>
<HR>
<A NAME="_J_"><!-- --></A><H2>
<B>J</B></H2>
<DL>
<DT><A HREF="org/jCharts/encoders/JPEGEncoder.html#JPEG"><B>JPEG</B></A> - 
Static variable in class org.jCharts.encoders.<A HREF="org/jCharts/encoders/JPEGEncoder.html">JPEGEncoder</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/ChartTestDriver.html#JPEG"><B>JPEG</B></A> - 
Static variable in class org.jCharts.test.<A HREF="org/jCharts/test/ChartTestDriver.html">ChartTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/ChartTestDriver.html#JPEG_LEGACY"><B>JPEG_LEGACY</B></A> - 
Static variable in class org.jCharts.test.<A HREF="org/jCharts/test/ChartTestDriver.html">ChartTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/encoders/ServletEncoderHelper.html#JPEG_MIME_TYPE"><B>JPEG_MIME_TYPE</B></A> - 
Static variable in class org.jCharts.encoders.<A HREF="org/jCharts/encoders/ServletEncoderHelper.html">ServletEncoderHelper</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/encoders/JPEGEncoder.html"><B>JPEGEncoder</B></A> - class org.jCharts.encoders.<A HREF="org/jCharts/encoders/JPEGEncoder.html">JPEGEncoder</A>.<DD>This class REQUIRES the jdk 1.4<DT><A HREF="org/jCharts/encoders/JPEGEncoder.html#JPEGEncoder()"><B>JPEGEncoder()</B></A> - 
Constructor for class org.jCharts.encoders.<A HREF="org/jCharts/encoders/JPEGEncoder.html">JPEGEncoder</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/encoders/JPEGEncoder13.html"><B>JPEGEncoder13</B></A> - class org.jCharts.encoders.<A HREF="org/jCharts/encoders/JPEGEncoder13.html">JPEGEncoder13</A>.<DD>Provided for backwards compatibility for jdk 1.3<DT><A HREF="org/jCharts/encoders/JPEGEncoder13.html#JPEGEncoder13()"><B>JPEGEncoder13()</B></A> - 
Constructor for class org.jCharts.encoders.<A HREF="org/jCharts/encoders/JPEGEncoder13.html">JPEGEncoder13</A>
<DD>&nbsp;
</DL>
<HR>
<A NAME="_L_"><!-- --></A><H2>
<B>L</B></H2>
<DL>
<DT><A HREF="org/jCharts/axisChart/axis/LabelAxis.html"><B>LabelAxis</B></A> - class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/LabelAxis.html">LabelAxis</A>.<DD><B>Deprecated.</B>&nbsp;<I>just using the Axis Object</I><DT><A HREF="org/jCharts/axisChart/axis/LabelAxis.html#LabelAxis(org.jCharts.axisChart.AxisChart)"><B>LabelAxis(AxisChart)</B></A> - 
Constructor for class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/LabelAxis.html">LabelAxis</A>
<DD><B>Deprecated.</B>&nbsp;<I>this class is no longer used</I>
<DT><A HREF="org/jCharts/properties/LabelAxisProperties.html"><B>LabelAxisProperties</B></A> - class org.jCharts.properties.<A HREF="org/jCharts/properties/LabelAxisProperties.html">LabelAxisProperties</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/properties/LabelAxisProperties.html#LabelAxisProperties()"><B>LabelAxisProperties()</B></A> - 
Constructor for class org.jCharts.properties.<A HREF="org/jCharts/properties/LabelAxisProperties.html">LabelAxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/Legend.html#labels"><B>labels</B></A> - 
Variable in class org.jCharts.<A HREF="org/jCharts/Legend.html">Legend</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/YAxis.html#lastTickY"><B>lastTickY</B></A> - 
Variable in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/YAxis.html">YAxis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LegendAreaProperties.html#LEFT"><B>LEFT</B></A> - 
Static variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendAreaProperties.html">LegendAreaProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/Chart.html#legend"><B>legend</B></A> - 
Variable in class org.jCharts.<A HREF="org/jCharts/Chart.html">Chart</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/Legend.html"><B>Legend</B></A> - class org.jCharts.<A HREF="org/jCharts/Legend.html">Legend</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/types/PieLabelType.html#LEGEND_LABELS"><B>LEGEND_LABELS</B></A> - 
Static variable in class org.jCharts.types.<A HREF="org/jCharts/types/PieLabelType.html">PieLabelType</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/Legend.html#Legend(org.jCharts.Chart)"><B>Legend(Chart)</B></A> - 
Constructor for class org.jCharts.<A HREF="org/jCharts/Legend.html">Legend</A>
<DD><B>Deprecated.</B>&nbsp;<I></I>&nbsp;
<DT><A HREF="org/jCharts/Legend.html#Legend(org.jCharts.Chart, org.jCharts.properties.LegendProperties)"><B>Legend(Chart, LegendProperties)</B></A> - 
Constructor for class org.jCharts.<A HREF="org/jCharts/Legend.html">Legend</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LegendAreaProperties.html"><B>LegendAreaProperties</B></A> - class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendAreaProperties.html">LegendAreaProperties</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/properties/LegendAreaProperties.html#LegendAreaProperties()"><B>LegendAreaProperties()</B></A> - 
Constructor for class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendAreaProperties.html">LegendAreaProperties</A>
<DD>Constructor for those desiring auto-calculation of the Legend width based on the number
  of columns.
<DT><A HREF="org/jCharts/imageMap/ImageMapArea.html#legendLabel"><B>legendLabel</B></A> - 
Variable in class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/ImageMapArea.html">ImageMapArea</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/StockChartDataSet.html#legendLabels"><B>legendLabels</B></A> - 
Variable in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/StockChartDataSet.html">StockChartDataSet</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/ScatterPlotDataSet.html#legendLabels"><B>legendLabels</B></A> - 
Variable in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/ScatterPlotDataSet.html">ScatterPlotDataSet</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/DataSet.html#legendLabels"><B>legendLabels</B></A> - 
Variable in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/DataSet.html">DataSet</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/Legend.html#legendProperties"><B>legendProperties</B></A> - 
Variable in class org.jCharts.<A HREF="org/jCharts/Legend.html">Legend</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LegendProperties.html"><B>LegendProperties</B></A> - class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendProperties.html">LegendProperties</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/properties/LegendProperties.html#LegendProperties()"><B>LegendProperties()</B></A> - 
Constructor for class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendProperties.html">LegendProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/HTMLGenerator.html#legendTableEnd()"><B>legendTableEnd()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/HTMLGenerator.html">HTMLGenerator</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/HTMLGenerator.html#legendTableStart()"><B>legendTableStart()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/HTMLGenerator.html">HTMLGenerator</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/types/ChartType.html#LINE"><B>LINE</B></A> - 
Static variable in class org.jCharts.types.<A HREF="org/jCharts/types/ChartType.html">ChartType</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/LineChart.html"><B>LineChart</B></A> - class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/LineChart.html">LineChart</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/axisChart/LineChart.html#LineChart()"><B>LineChart()</B></A> - 
Constructor for class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/LineChart.html">LineChart</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LineChartProperties.html"><B>LineChartProperties</B></A> - class org.jCharts.properties.<A HREF="org/jCharts/properties/LineChartProperties.html">LineChartProperties</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/properties/LineChartProperties.html#LineChartProperties(java.awt.Stroke[], java.awt.Shape[])"><B>LineChartProperties(Stroke[], Shape[])</B></A> - 
Constructor for class org.jCharts.properties.<A HREF="org/jCharts/properties/LineChartProperties.html">LineChartProperties</A>
<DD>Constructor
<DT><A HREF="org/jCharts/properties/ScatterPlotProperties.html#lineStrokes"><B>lineStrokes</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/ScatterPlotProperties.html">ScatterPlotProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LineChartProperties.html#lineStrokes"><B>lineStrokes</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/LineChartProperties.html">LineChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/LineTestDriver.html"><B>LineTestDriver</B></A> - class org.jCharts.test.<A HREF="org/jCharts/test/LineTestDriver.html">LineTestDriver</A>.<DD>This file provides examples of how to create all the different chart types provided by
  this package.<DT><A HREF="org/jCharts/test/LineTestDriver.html#LineTestDriver()"><B>LineTestDriver()</B></A> - 
Constructor for class org.jCharts.test.<A HREF="org/jCharts/test/LineTestDriver.html">LineTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/StockChartDataSet.html#low"><B>low</B></A> - 
Variable in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/StockChartDataSet.html">StockChartDataSet</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/types/StockChartDataType.html#LOW"><B>LOW</B></A> - 
Static variable in class org.jCharts.types.<A HREF="org/jCharts/types/StockChartDataType.html">StockChartDataType</A>
<DD>&nbsp;
</DL>
<HR>
<A NAME="_M_"><!-- --></A><H2>
<B>M</B></H2>
<DL>
<DT><A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html#main(java.lang.String[])"><B>main(String[])</B></A> - 
Static method in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html">ChartScale</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/SwingTest.html#main(java.lang.String[])"><B>main(String[])</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/SwingTest.html">SwingTest</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/StackedBarTestDriver.html#main(java.lang.String[])"><B>main(String[])</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/StackedBarTestDriver.html">StackedBarTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/ScatterPlotTestDriver.html#main(java.lang.String[])"><B>main(String[])</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/ScatterPlotTestDriver.html">ScatterPlotTestDriver</A>
<DD>DataSeries getDataSeries() throws ChartDataException
         {
         String[] xAxisLabels={"1", "2", "3", "4", "5"};
         DataSeries dataSeries=new DataSeries( xAxisLabels, "numbers", "numbers", "Bug #559177" );
         AxisChartDataSet axisChartDataSet;

         double[][] data={{1, 2, 3, 4, 5},
         {7, 8, Double.NaN, Double.NaN, Double.NaN},
         {Double.NaN, Double.NaN, Double.NaN, Double.NaN, 2}};

         String[] legendLabels={"set 1", "set 2", "set 3"};
         Paint[] paints={Color.blue, Color.red, Color.green};

         axisChartDataSet=new AxisChartDataSet( data,
         legendLabels,
         paints,
         ChartType.LINE,
         this.getChartTypeProperties( 3 ) );

         dataSeries.addIAxisPlotDataSet( axisChartDataSet );

         return dataSeries;

         }
<DT><A HREF="org/jCharts/test/PointTestDriver.html#main(java.lang.String[])"><B>main(String[])</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/PointTestDriver.html">PointTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/PieTestDriver.html#main(java.lang.String[])"><B>main(String[])</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/PieTestDriver.html">PieTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/LineTestDriver.html#main(java.lang.String[])"><B>main(String[])</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/LineTestDriver.html">LineTestDriver</A>
<DD>DataSeries getDataSeries() throws ChartDataException
         {
         String[] xAxisLabels={"1", "2", "3", "4", "5"};
         DataSeries dataSeries=new DataSeries( xAxisLabels, "numbers", "numbers", "Bug #559177" );
         AxisChartDataSet axisChartDataSet;

         double[][] data={{1, 2, 3, 4, 5},
         {7, 8, Double.NaN, Double.NaN, Double.NaN},
         {Double.NaN, Double.NaN, Double.NaN, Double.NaN, 2}};

         String[] legendLabels={"set 1", "set 2", "set 3"};
         Paint[] paints={Color.blue, Color.red, Color.green};

         axisChartDataSet=new AxisChartDataSet( data,
         legendLabels,
         paints,
         ChartType.LINE,
         this.getChartTypeProperties( 3 ) );

         dataSeries.addIAxisPlotDataSet( axisChartDataSet );

         return dataSeries;

         }
<DT><A HREF="org/jCharts/test/ClusteredBarTestDriver.html#main(java.lang.String[])"><B>main(String[])</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/ClusteredBarTestDriver.html">ClusteredBarTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/ChartTestDriver.html#main(java.lang.String[])"><B>main(String[])</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/ChartTestDriver.html">ChartTestDriver</A>
<DD>Main method so can run as command line.
<DT><A HREF="org/jCharts/test/BarTestDriver.html#main(java.lang.String[])"><B>main(String[])</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/BarTestDriver.html">BarTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/AreaTestDriver.html#main(java.lang.String[])"><B>main(String[])</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/AreaTestDriver.html">AreaTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/processors/AxisChartDataProcessor.html#max"><B>max</B></A> - 
Variable in class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/AxisChartDataProcessor.html">AxisChartDataProcessor</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/DataAxis.html#maxValue"><B>maxValue</B></A> - 
Variable in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/DataAxis.html">DataAxis</A>
<DD><B>Deprecated.</B>&nbsp;&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html#maxValue"><B>maxValue</B></A> - 
Variable in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html">ScaleCalculator</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/processors/AxisChartDataProcessor.html#min"><B>min</B></A> - 
Variable in class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/AxisChartDataProcessor.html">AxisChartDataProcessor</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#minimumHeightNeeded"><B>minimumHeightNeeded</B></A> - 
Variable in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#minimumWidthNeeded"><B>minimumWidthNeeded</B></A> - 
Variable in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/DataAxis.html#minValue"><B>minValue</B></A> - 
Variable in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/DataAxis.html">DataAxis</A>
<DD><B>Deprecated.</B>&nbsp;&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html#minValue"><B>minValue</B></A> - 
Variable in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html">ScaleCalculator</A>
<DD>&nbsp;
</DL>
<HR>
<A NAME="_N_"><!-- --></A><H2>
<B>N</B></H2>
<DL>
<DT><A HREF="org/jCharts/types/PieLabelType.html#NO_LABELS"><B>NO_LABELS</B></A> - 
Static variable in class org.jCharts.types.<A HREF="org/jCharts/types/PieLabelType.html">PieLabelType</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/processors/NonStackedDataProcessor.html"><B>NonStackedDataProcessor</B></A> - class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/NonStackedDataProcessor.html">NonStackedDataProcessor</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/chartData/processors/NonStackedDataProcessor.html#NonStackedDataProcessor()"><B>NonStackedDataProcessor()</B></A> - 
Constructor for class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/NonStackedDataProcessor.html">NonStackedDataProcessor</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelRenderer.html#numberFormat"><B>numberFormat</B></A> - 
Variable in class org.jCharts.axisChart.customRenderers.axisValue.renderers.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelRenderer.html">ValueLabelRenderer</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/NumericTagGroup.html#numberFormat"><B>numberFormat</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/NumericTagGroup.html">NumericTagGroup</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/BarValueGroup.html#numberFormat"><B>numberFormat</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/BarValueGroup.html">BarValueGroup</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/StockChartDataSet.html#numberOfDataSets"><B>numberOfDataSets</B></A> - 
Variable in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/StockChartDataSet.html">StockChartDataSet</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/processors/AxisChartDataProcessor.html#numberOfElementsInADataSet"><B>numberOfElementsInADataSet</B></A> - 
Variable in class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/AxisChartDataProcessor.html">AxisChartDataProcessor</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#numberOfScaleItems"><B>numberOfScaleItems</B></A> - 
Variable in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html#numberOfScaleItems"><B>numberOfScaleItems</B></A> - 
Variable in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html">ScaleCalculator</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/Legend.html#numColumns"><B>numColumns</B></A> - 
Variable in class org.jCharts.<A HREF="org/jCharts/Legend.html">Legend</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LegendAreaProperties.html#numColumns"><B>numColumns</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendAreaProperties.html">LegendAreaProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/ScatterPlotDataSet.html#numDataItems"><B>numDataItems</B></A> - 
Variable in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/ScatterPlotDataSet.html">ScatterPlotDataSet</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/NumericTagGroup.html"><B>NumericTagGroup</B></A> - class org.jCharts.chartText.<A HREF="org/jCharts/chartText/NumericTagGroup.html">NumericTagGroup</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/chartText/NumericTagGroup.html#NumericTagGroup(org.jCharts.properties.util.ChartFont, java.awt.font.FontRenderContext, boolean, boolean, boolean, int)"><B>NumericTagGroup(ChartFont, FontRenderContext, boolean, boolean, boolean, int)</B></A> - 
Constructor for class org.jCharts.chartText.<A HREF="org/jCharts/chartText/NumericTagGroup.html">NumericTagGroup</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/DataAxisProperties.html#numItems"><B>numItems</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/DataAxisProperties.html">DataAxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/Legend.html#numRows"><B>numRows</B></A> - 
Variable in class org.jCharts.<A HREF="org/jCharts/Legend.html">Legend</A>
<DD>&nbsp;
</DL>
<HR>
<A NAME="_O_"><!-- --></A><H2>
<B>O</B></H2>
<DL>
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelPosition.html#ON_TOP"><B>ON_TOP</B></A> - 
Static variable in class org.jCharts.axisChart.customRenderers.axisValue.renderers.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelPosition.html">ValueLabelPosition</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#oneUnitPixelSize"><B>oneUnitPixelSize</B></A> - 
Variable in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/StockChartDataSet.html#open"><B>open</B></A> - 
Variable in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/StockChartDataSet.html">StockChartDataSet</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/types/StockChartDataType.html#OPEN"><B>OPEN</B></A> - 
Static variable in class org.jCharts.types.<A HREF="org/jCharts/types/StockChartDataType.html">StockChartDataType</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/StockChartProperties.html#openLength"><B>openLength</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/StockChartProperties.html">StockChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/StockChartProperties.html#openStroke"><B>openStroke</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/StockChartProperties.html">StockChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/package-summary.html"><B>org.jCharts</B></A> - package org.jCharts<DD>&nbsp;<DT><A HREF="org/jCharts/axisChart/package-summary.html"><B>org.jCharts.axisChart</B></A> - package org.jCharts.axisChart<DD>&nbsp;<DT><A HREF="org/jCharts/axisChart/axis/package-summary.html"><B>org.jCharts.axisChart.axis</B></A> - package org.jCharts.axisChart.axis<DD>&nbsp;<DT><A HREF="org/jCharts/axisChart/axis/scale/package-summary.html"><B>org.jCharts.axisChart.axis.scale</B></A> - package org.jCharts.axisChart.axis.scale<DD>&nbsp;<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/package-summary.html"><B>org.jCharts.axisChart.customRenderers.axisValue</B></A> - package org.jCharts.axisChart.customRenderers.axisValue<DD>&nbsp;<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/package-summary.html"><B>org.jCharts.axisChart.customRenderers.axisValue.renderers</B></A> - package org.jCharts.axisChart.customRenderers.axisValue.renderers<DD>&nbsp;<DT><A HREF="org/jCharts/chartData/package-summary.html"><B>org.jCharts.chartData</B></A> - package org.jCharts.chartData<DD>&nbsp;<DT><A HREF="org/jCharts/chartData/interfaces/package-summary.html"><B>org.jCharts.chartData.interfaces</B></A> - package org.jCharts.chartData.interfaces<DD>&nbsp;<DT><A HREF="org/jCharts/chartData/processors/package-summary.html"><B>org.jCharts.chartData.processors</B></A> - package org.jCharts.chartData.processors<DD>&nbsp;<DT><A HREF="org/jCharts/chartText/package-summary.html"><B>org.jCharts.chartText</B></A> - package org.jCharts.chartText<DD>&nbsp;<DT><A HREF="org/jCharts/encoders/package-summary.html"><B>org.jCharts.encoders</B></A> - package org.jCharts.encoders<DD>&nbsp;<DT><A HREF="org/jCharts/imageMap/package-summary.html"><B>org.jCharts.imageMap</B></A> - package org.jCharts.imageMap<DD>&nbsp;<DT><A HREF="org/jCharts/nonAxisChart/package-summary.html"><B>org.jCharts.nonAxisChart</B></A> - package org.jCharts.nonAxisChart<DD>&nbsp;<DT><A HREF="org/jCharts/properties/package-summary.html"><B>org.jCharts.properties</B></A> - package org.jCharts.properties<DD>&nbsp;<DT><A HREF="org/jCharts/properties/util/package-summary.html"><B>org.jCharts.properties.util</B></A> - package org.jCharts.properties.util<DD>&nbsp;<DT><A HREF="org/jCharts/test/package-summary.html"><B>org.jCharts.test</B></A> - package org.jCharts.test<DD>&nbsp;<DT><A HREF="org/jCharts/types/package-summary.html"><B>org.jCharts.types</B></A> - package org.jCharts.types<DD>&nbsp;<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#origin"><B>origin</B></A> - 
Variable in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/PointChartProperties.html#outlinePaints"><B>outlinePaints</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/PointChartProperties.html">PointChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/ChartTestDriver.html#OUTPUT_PATH"><B>OUTPUT_PATH</B></A> - 
Static variable in class org.jCharts.test.<A HREF="org/jCharts/test/ChartTestDriver.html">ChartTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/ScatterPlotAxisChart.html#overlayCharts()"><B>overlayCharts()</B></A> - 
Method in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/ScatterPlotAxisChart.html">ScatterPlotAxisChart</A>
<DD>Draws the charts over the axis.
<DT><A HREF="org/jCharts/axisChart/AxisChart.html#overlayCharts()"><B>overlayCharts()</B></A> - 
Method in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/AxisChart.html">AxisChart</A>
<DD>Draws the charts over the axis.
</DL>
<HR>
<A NAME="_P_"><!-- --></A><H2>
<B>P</B></H2>
<DL>
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#paddingBetweenAxisAndLabels"><B>paddingBetweenAxisAndLabels</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#paddingBetweenAxisLabels"><B>paddingBetweenAxisLabels</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#paddingBetweenAxisTitleAndLabels"><B>paddingBetweenAxisTitleAndLabels</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#paddingBetweenLabelsAndTicks"><B>paddingBetweenLabelsAndTicks</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/BackgroundRenderer.html#paint"><B>paint</B></A> - 
Variable in class org.jCharts.axisChart.customRenderers.axisValue.renderers.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/BackgroundRenderer.html">BackgroundRenderer</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/util/ChartItem.html#paint"><B>paint</B></A> - 
Variable in class org.jCharts.properties.util.<A HREF="org/jCharts/properties/util/ChartItem.html">ChartItem</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/Legend.html#paints"><B>paints</B></A> - 
Variable in class org.jCharts.<A HREF="org/jCharts/Legend.html">Legend</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/StockChartDataSet.html#paints"><B>paints</B></A> - 
Variable in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/StockChartDataSet.html">StockChartDataSet</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/ScatterPlotDataSet.html#paints"><B>paints</B></A> - 
Variable in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/ScatterPlotDataSet.html">ScatterPlotDataSet</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/DataSet.html#paints"><B>paints</B></A> - 
Variable in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/DataSet.html">DataSet</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/SwingTest.html#panel"><B>panel</B></A> - 
Variable in class org.jCharts.test.<A HREF="org/jCharts/test/SwingTest.html">SwingTest</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/nonAxisChart/PieChart2D.html"><B>PieChart2D</B></A> - class org.jCharts.nonAxisChart.<A HREF="org/jCharts/nonAxisChart/PieChart2D.html">PieChart2D</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/nonAxisChart/PieChart2D.html#PieChart2D(org.jCharts.chartData.interfaces.IPieChartDataSet, org.jCharts.properties.LegendProperties, org.jCharts.properties.ChartProperties, int, int)"><B>PieChart2D(IPieChartDataSet, LegendProperties, ChartProperties, int, int)</B></A> - 
Constructor for class org.jCharts.nonAxisChart.<A HREF="org/jCharts/nonAxisChart/PieChart2D.html">PieChart2D</A>
<DD>Constructor
<DT><A HREF="org/jCharts/properties/PieChart2DProperties.html"><B>PieChart2DProperties</B></A> - class org.jCharts.properties.<A HREF="org/jCharts/properties/PieChart2DProperties.html">PieChart2DProperties</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/properties/PieChart2DProperties.html#PieChart2DProperties()"><B>PieChart2DProperties()</B></A> - 
Constructor for class org.jCharts.properties.<A HREF="org/jCharts/properties/PieChart2DProperties.html">PieChart2DProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/nonAxisChart/PieChart2D.html#pieChartDataProcessor"><B>pieChartDataProcessor</B></A> - 
Variable in class org.jCharts.nonAxisChart.<A HREF="org/jCharts/nonAxisChart/PieChart2D.html">PieChart2D</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/processors/PieChartDataProcessor.html"><B>PieChartDataProcessor</B></A> - class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/PieChartDataProcessor.html">PieChartDataProcessor</A>.<DD>Utility class to process the PieChartDataSet<DT><A HREF="org/jCharts/chartData/processors/PieChartDataProcessor.html#PieChartDataProcessor(org.jCharts.chartData.interfaces.IPieChartDataSet)"><B>PieChartDataProcessor(IPieChartDataSet)</B></A> - 
Constructor for class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/PieChartDataProcessor.html">PieChartDataProcessor</A>
<DD>Constructor
<DT><A HREF="org/jCharts/chartData/PieChartDataSet.html"><B>PieChartDataSet</B></A> - class org.jCharts.chartData.<A HREF="org/jCharts/chartData/PieChartDataSet.html">PieChartDataSet</A>.<DD>Implementation of the IPieChartDataSet Interface for use with the PieChart2D Object.<DT><A HREF="org/jCharts/chartData/PieChartDataSet.html#PieChartDataSet(java.lang.String, double[], java.lang.String[], java.awt.Paint[], org.jCharts.properties.PieChart2DProperties)"><B>PieChartDataSet(String, double[], String[], Paint[], PieChart2DProperties)</B></A> - 
Constructor for class org.jCharts.chartData.<A HREF="org/jCharts/chartData/PieChartDataSet.html">PieChartDataSet</A>
<DD>Constructor
<DT><A HREF="org/jCharts/properties/PieChart2DProperties.html#pieLabelType"><B>pieLabelType</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/PieChart2DProperties.html">PieChart2DProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/types/PieLabelType.html"><B>PieLabelType</B></A> - class org.jCharts.types.<A HREF="org/jCharts/types/PieLabelType.html">PieLabelType</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/types/PieLabelType.html#PieLabelType(int)"><B>PieLabelType(int)</B></A> - 
Constructor for class org.jCharts.types.<A HREF="org/jCharts/types/PieLabelType.html">PieLabelType</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/PieTestDriver.html"><B>PieTestDriver</B></A> - class org.jCharts.test.<A HREF="org/jCharts/test/PieTestDriver.html">PieTestDriver</A>.<DD>This file provides examples of how to create all the different chart types provided by
  this package.<DT><A HREF="org/jCharts/test/PieTestDriver.html#PieTestDriver()"><B>PieTestDriver()</B></A> - 
Constructor for class org.jCharts.test.<A HREF="org/jCharts/test/PieTestDriver.html">PieTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/nonAxisChart/PieChart2D.html#pieX"><B>pieX</B></A> - 
Variable in class org.jCharts.nonAxisChart.<A HREF="org/jCharts/nonAxisChart/PieChart2D.html">PieChart2D</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/nonAxisChart/PieChart2D.html#pieY"><B>pieY</B></A> - 
Variable in class org.jCharts.nonAxisChart.<A HREF="org/jCharts/nonAxisChart/PieChart2D.html">PieChart2D</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#pixelLength"><B>pixelLength</B></A> - 
Variable in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelRenderer.html#pixelValuePadding"><B>pixelValuePadding</B></A> - 
Variable in class org.jCharts.axisChart.customRenderers.axisValue.renderers.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelRenderer.html">ValueLabelRenderer</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LegendAreaProperties.html#placement"><B>placement</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendAreaProperties.html">LegendAreaProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/encoders/PNGEncoder.html#PNG"><B>PNG</B></A> - 
Static variable in class org.jCharts.encoders.<A HREF="org/jCharts/encoders/PNGEncoder.html">PNGEncoder</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/ChartTestDriver.html#PNG"><B>PNG</B></A> - 
Static variable in class org.jCharts.test.<A HREF="org/jCharts/test/ChartTestDriver.html">ChartTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/encoders/ServletEncoderHelper.html#PNG_MIME_TYPE"><B>PNG_MIME_TYPE</B></A> - 
Static variable in class org.jCharts.encoders.<A HREF="org/jCharts/encoders/ServletEncoderHelper.html">ServletEncoderHelper</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/encoders/PNGEncoder.html"><B>PNGEncoder</B></A> - class org.jCharts.encoders.<A HREF="org/jCharts/encoders/PNGEncoder.html">PNGEncoder</A>.<DD>This class REQUIRES the jdk 1.4<DT><A HREF="org/jCharts/encoders/PNGEncoder.html#PNGEncoder()"><B>PNGEncoder()</B></A> - 
Constructor for class org.jCharts.encoders.<A HREF="org/jCharts/encoders/PNGEncoder.html">PNGEncoder</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/ScatterPlotDataSet.html#POINT"><B>POINT</B></A> - 
Static variable in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/ScatterPlotDataSet.html">ScatterPlotDataSet</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/types/ChartType.html#POINT"><B>POINT</B></A> - 
Static variable in class org.jCharts.types.<A HREF="org/jCharts/types/ChartType.html">ChartType</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/PointChart.html"><B>PointChart</B></A> - class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/PointChart.html">PointChart</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/axisChart/PointChart.html#PointChart()"><B>PointChart()</B></A> - 
Constructor for class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/PointChart.html">PointChart</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/PointChartProperties.html"><B>PointChartProperties</B></A> - class org.jCharts.properties.<A HREF="org/jCharts/properties/PointChartProperties.html">PointChartProperties</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/properties/PointChartProperties.html#PointChartProperties(java.awt.Shape[], boolean[], java.awt.Paint[])"><B>PointChartProperties(Shape[], boolean[], Paint[])</B></A> - 
Constructor for class org.jCharts.properties.<A HREF="org/jCharts/properties/PointChartProperties.html">PointChartProperties</A>
<DD>Constructor
<DT><A HREF="org/jCharts/Legend.html#pointOutlinePaints"><B>pointOutlinePaints</B></A> - 
Variable in class org.jCharts.<A HREF="org/jCharts/Legend.html">Legend</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/PointTestDriver.html"><B>PointTestDriver</B></A> - class org.jCharts.test.<A HREF="org/jCharts/test/PointTestDriver.html">PointTestDriver</A>.<DD>This file provides examples of how to create all the different chart types provided by
  this package.<DT><A HREF="org/jCharts/test/PointTestDriver.html#PointTestDriver()"><B>PointTestDriver()</B></A> - 
Constructor for class org.jCharts.test.<A HREF="org/jCharts/test/PointTestDriver.html">PointTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/imageMap/AreaShape.html#POLYGON"><B>POLYGON</B></A> - 
Static variable in class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/AreaShape.html">AreaShape</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/imageMap/PolyMapArea.html"><B>PolyMapArea</B></A> - class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/PolyMapArea.html">PolyMapArea</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/imageMap/PolyMapArea.html#PolyMapArea(int, double, java.lang.String, java.lang.String)"><B>PolyMapArea(int, double, String, String)</B></A> - 
Constructor for class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/PolyMapArea.html">PolyMapArea</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelPosition.html#position"><B>position</B></A> - 
Variable in class org.jCharts.axisChart.customRenderers.axisValue.renderers.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelPosition.html">ValueLabelPosition</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/PostAxisValueRenderListener.html"><B>PostAxisValueRenderListener</B></A> - interface org.jCharts.axisChart.customRenderers.axisValue.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/PostAxisValueRenderListener.html">PostAxisValueRenderListener</A>.<DD>This Class is used to recieve callbacks from the chart renderers after they render
 	their value to the chart, with value meaning their bar, point, line, etc...<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/PostAxisValueRenderListener.html#postRender(org.jCharts.axisChart.customRenderers.axisValue.AxisValueRenderEvent)"><B>postRender(AxisValueRenderEvent)</B></A> - 
Method in interface org.jCharts.axisChart.customRenderers.axisValue.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/PostAxisValueRenderListener.html">PostAxisValueRenderListener</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelRenderer.html#postRender(org.jCharts.axisChart.customRenderers.axisValue.AxisValueRenderEvent)"><B>postRender(AxisValueRenderEvent)</B></A> - 
Method in class org.jCharts.axisChart.customRenderers.axisValue.renderers.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelRenderer.html">ValueLabelRenderer</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisChartTypeProperties.html#postRenderEventListeners"><B>postRenderEventListeners</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisChartTypeProperties.html">AxisChartTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/PreAxisValueRenderListener.html"><B>PreAxisValueRenderListener</B></A> - interface org.jCharts.axisChart.customRenderers.axisValue.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/PreAxisValueRenderListener.html">PreAxisValueRenderListener</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/PreAxisValueRenderListener.html#preRender(org.jCharts.axisChart.customRenderers.axisValue.AxisValueRenderEvent)"><B>preRender(AxisValueRenderEvent)</B></A> - 
Method in interface org.jCharts.axisChart.customRenderers.axisValue.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/PreAxisValueRenderListener.html">PreAxisValueRenderListener</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/BackgroundRenderer.html#preRender(org.jCharts.axisChart.customRenderers.axisValue.AxisValueRenderEvent)"><B>preRender(AxisValueRenderEvent)</B></A> - 
Method in class org.jCharts.axisChart.customRenderers.axisValue.renderers.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/BackgroundRenderer.html">BackgroundRenderer</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisChartTypeProperties.html#preRenderEventListeners"><B>preRenderEventListeners</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisChartTypeProperties.html">AxisChartTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/processors/PieChartDataProcessor.html#processData()"><B>processData()</B></A> - 
Method in class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/PieChartDataProcessor.html">PieChartDataProcessor</A>
<DD>This method should do a single pass through the data set and calculate all needed values,
  such as: min, max, sum, etc...
<DT><A HREF="org/jCharts/chartData/processors/ScatterPlotDataProcessor.html#processData(org.jCharts.axisChart.AxisChart, java.awt.font.FontRenderContext)"><B>processData(AxisChart, FontRenderContext)</B></A> - 
Method in class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/ScatterPlotDataProcessor.html">ScatterPlotDataProcessor</A>
<DD>Method to perform all chart data processing.
<DT><A HREF="org/jCharts/chartData/processors/AxisChartDataProcessor.html#processData(org.jCharts.axisChart.AxisChart, java.awt.font.FontRenderContext)"><B>processData(AxisChart, FontRenderContext)</B></A> - 
Method in class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/AxisChartDataProcessor.html">AxisChartDataProcessor</A>
<DD>Method to perform all chart data processing.
<DT><A HREF="org/jCharts/chartData/processors/StackedDataProcessor.html#processData(org.jCharts.chartData.interfaces.IAxisChartDataSet, org.jCharts.chartData.processors.AxisChartDataProcessor)"><B>processData(IAxisChartDataSet, AxisChartDataProcessor)</B></A> - 
Static method in class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/StackedDataProcessor.html">StackedDataProcessor</A>
<DD>This method should do a single pass through the data set and calculate all needed values,
  such as: min, max, sum, etc...
<DT><A HREF="org/jCharts/chartData/processors/NonStackedDataProcessor.html#processData(org.jCharts.chartData.interfaces.IAxisChartDataSet, org.jCharts.chartData.processors.AxisChartDataProcessor)"><B>processData(IAxisChartDataSet, AxisChartDataProcessor)</B></A> - 
Static method in class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/NonStackedDataProcessor.html">NonStackedDataProcessor</A>
<DD>Does a single pass through the data set and calculates the  min, max, and label dimensions.
<DT><A HREF="org/jCharts/Legend.html#processData(org.jCharts.chartData.interfaces.IAxisDataSeries)"><B>processData(IAxisDataSeries)</B></A> - 
Method in class org.jCharts.<A HREF="org/jCharts/Legend.html">Legend</A>
<DD>Central method for processing data; try to minimize looping.
<DT><A HREF="org/jCharts/Legend.html#processData(org.jCharts.chartData.interfaces.IPieChartDataSet)"><B>processData(IPieChartDataSet)</B></A> - 
Method in class org.jCharts.<A HREF="org/jCharts/Legend.html">Legend</A>
<DD>Central method for processing data; try to minimize looping.
<DT><A HREF="org/jCharts/chartData/processors/StockDataProcessor.html#processData(org.jCharts.chartData.interfaces.IStockChartDataSet, org.jCharts.chartData.processors.AxisChartDataProcessor)"><B>processData(IStockChartDataSet, AxisChartDataProcessor)</B></A> - 
Static method in class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/StockDataProcessor.html">StockDataProcessor</A>
<DD>Only need to loop through the 'high' to find MAX and 'low' to find MIN.
<DT><A HREF="org/jCharts/chartData/processors/AxisChartDataProcessor.html#processDataSet(org.jCharts.chartData.interfaces.IDataSeries)"><B>processDataSet(IDataSeries)</B></A> - 
Method in class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/AxisChartDataProcessor.html">AxisChartDataProcessor</A>
<DD>Processes the numeric values in the chart data.
<DT><A HREF="org/jCharts/chartData/processors/ScatterPlotDataProcessor.html#processDataSet(org.jCharts.chartData.interfaces.IScatterPlotDataSeries)"><B>processDataSet(IScatterPlotDataSeries)</B></A> - 
Method in class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/ScatterPlotDataProcessor.html">ScatterPlotDataProcessor</A>
<DD>Processes the numeric values in the chart data.
<DT><A HREF="org/jCharts/Legend.html#processLegendLabels(org.jCharts.chartData.interfaces.IAxisPlotDataSet)"><B>processLegendLabels(IAxisPlotDataSet)</B></A> - 
Method in class org.jCharts.<A HREF="org/jCharts/Legend.html">Legend</A>
<DD>Method for processing data for AxisPlot datasets; try to minimize
 looping.
<DT><A HREF="org/jCharts/Legend.html#processLegendLabels(org.jCharts.chartData.interfaces.IPieChartDataSet)"><B>processLegendLabels(IPieChartDataSet)</B></A> - 
Method in class org.jCharts.<A HREF="org/jCharts/Legend.html">Legend</A>
<DD>Method for processing data for PieCharts; try to minimize looping.
<DT><A HREF="org/jCharts/properties/Properties.html"><B>Properties</B></A> - class org.jCharts.properties.<A HREF="org/jCharts/properties/Properties.html">Properties</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/properties/Properties.html#Properties()"><B>Properties()</B></A> - 
Constructor for class org.jCharts.properties.<A HREF="org/jCharts/properties/Properties.html">Properties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/HTMLGenerator.html#propertiesTableEnd()"><B>propertiesTableEnd()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/HTMLGenerator.html">HTMLGenerator</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/HTMLGenerator.html#propertiesTableRowEnd()"><B>propertiesTableRowEnd()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/HTMLGenerator.html">HTMLGenerator</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/HTMLGenerator.html#propertiesTableRowStart()"><B>propertiesTableRowStart()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/HTMLGenerator.html">HTMLGenerator</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/HTMLGenerator.html#propertiesTableStart(java.lang.String)"><B>propertiesTableStart(String)</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/HTMLGenerator.html">HTMLGenerator</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/PropertyException.html"><B>PropertyException</B></A> - exception org.jCharts.properties.<A HREF="org/jCharts/properties/PropertyException.html">PropertyException</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/properties/PropertyException.html#PropertyException(java.lang.String)"><B>PropertyException(String)</B></A> - 
Constructor for class org.jCharts.properties.<A HREF="org/jCharts/properties/PropertyException.html">PropertyException</A>
<DD>&nbsp;
</DL>
<HR>
<A NAME="_R_"><!-- --></A><H2>
<B>R</B></H2>
<DL>
<DT><A HREF="org/jCharts/imageMap/CircleMapArea.html#radius"><B>radius</B></A> - 
Variable in class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/CircleMapArea.html">CircleMapArea</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/TestDataGenerator.html#randomizeAxisProperties(org.jCharts.properties.AxisProperties)"><B>randomizeAxisProperties(AxisProperties)</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/TestDataGenerator.html">TestDataGenerator</A>
<DD>Takes the passed AxisProperties and randomizes it.
<DT><A HREF="org/jCharts/test/TestDataGenerator.html#randomizeLegend(org.jCharts.properties.LegendProperties)"><B>randomizeLegend(LegendProperties)</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/TestDataGenerator.html">TestDataGenerator</A>
<DD>Takes the passed Legend and randomizes it.
<DT><A HREF="org/jCharts/imageMap/AreaShape.html#RECTANGLE"><B>RECTANGLE</B></A> - 
Static variable in class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/AreaShape.html">AreaShape</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/imageMap/RectMapArea.html"><B>RectMapArea</B></A> - class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/RectMapArea.html">RectMapArea</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/imageMap/RectMapArea.html#RectMapArea(java.awt.geom.Rectangle2D.Float, double, java.lang.String, java.lang.String)"><B>RectMapArea(Rectangle2D.Float, double, String, String)</B></A> - 
Constructor for class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/RectMapArea.html">RectMapArea</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/Legend.html#render()"><B>render()</B></A> - 
Method in class org.jCharts.<A HREF="org/jCharts/Legend.html">Legend</A>
<DD>Renders the legend.
<DT><A HREF="org/jCharts/Chart.html#render()"><B>render()</B></A> - 
Method in class org.jCharts.<A HREF="org/jCharts/Chart.html">Chart</A>
<DD>Call this to kick off rendering of the chart
<DT><A HREF="org/jCharts/axisChart/StackedBarChart.html#render(org.jCharts.axisChart.AxisChart, org.jCharts.chartData.interfaces.IAxisChartDataSet)"><B>render(AxisChart, IAxisChartDataSet)</B></A> - 
Static method in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/StackedBarChart.html">StackedBarChart</A>
<DD>Draws the chart
<DT><A HREF="org/jCharts/axisChart/StackedAreaChart.html#render(org.jCharts.axisChart.AxisChart, org.jCharts.chartData.interfaces.IAxisChartDataSet)"><B>render(AxisChart, IAxisChartDataSet)</B></A> - 
Static method in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/StackedAreaChart.html">StackedAreaChart</A>
<DD>Draws the chart
<DT><A HREF="org/jCharts/axisChart/PointChart.html#render(org.jCharts.axisChart.AxisChart, org.jCharts.chartData.interfaces.IAxisChartDataSet)"><B>render(AxisChart, IAxisChartDataSet)</B></A> - 
Static method in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/PointChart.html">PointChart</A>
<DD>Draws the chart
<DT><A HREF="org/jCharts/axisChart/LineChart.html#render(org.jCharts.axisChart.AxisChart, org.jCharts.chartData.interfaces.IAxisChartDataSet)"><B>render(AxisChart, IAxisChartDataSet)</B></A> - 
Static method in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/LineChart.html">LineChart</A>
<DD>Draws the chart
<DT><A HREF="org/jCharts/axisChart/ClusteredBarChart.html#render(org.jCharts.axisChart.AxisChart, org.jCharts.chartData.interfaces.IAxisChartDataSet)"><B>render(AxisChart, IAxisChartDataSet)</B></A> - 
Static method in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/ClusteredBarChart.html">ClusteredBarChart</A>
<DD>Draws the chart
 uses Rectangle2D......keep having rounding problems.
<DT><A HREF="org/jCharts/axisChart/BarChart.html#render(org.jCharts.axisChart.AxisChart, org.jCharts.chartData.interfaces.IAxisChartDataSet)"><B>render(AxisChart, IAxisChartDataSet)</B></A> - 
Static method in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/BarChart.html">BarChart</A>
<DD>Draws the chart
 uses Rectangle2D......keep having rounding problems.
<DT><A HREF="org/jCharts/axisChart/AreaChart.html#render(org.jCharts.axisChart.AxisChart, org.jCharts.chartData.interfaces.IAxisChartDataSet)"><B>render(AxisChart, IAxisChartDataSet)</B></A> - 
Static method in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/AreaChart.html">AreaChart</A>
<DD>Draws the chart
<DT><A HREF="org/jCharts/axisChart/StockChart.html#render(org.jCharts.axisChart.AxisChart, org.jCharts.chartData.interfaces.IStockChartDataSet)"><B>render(AxisChart, IStockChartDataSet)</B></A> - 
Static method in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/StockChart.html">StockChart</A>
<DD>Draws the chart
<DT><A HREF="org/jCharts/encoders/BinaryEncoderUtil.html#render(org.jCharts.Chart)"><B>render(Chart)</B></A> - 
Static method in class org.jCharts.encoders.<A HREF="org/jCharts/encoders/BinaryEncoderUtil.html">BinaryEncoderUtil</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/BarValueGroup.html#render(java.awt.Graphics2D)"><B>render(Graphics2D)</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/BarValueGroup.html">BarValueGroup</A>
<DD>renders any barValues
<DT><A HREF="org/jCharts/axisChart/axis/YAxis.html#render(java.awt.Graphics2D, org.jCharts.properties.AxisProperties, java.lang.String)"><B>render(Graphics2D, AxisProperties, String)</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/YAxis.html">YAxis</A>
<DD>Renders the YAxis on the passes Graphics2D object
<DT><A HREF="org/jCharts/axisChart/axis/XAxis.html#render(java.awt.Graphics2D, org.jCharts.properties.AxisProperties, java.lang.String)"><B>render(Graphics2D, AxisProperties, String)</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/XAxis.html">XAxis</A>
<DD>Renders the YAxis on the passes Graphics2D object
<DT><A HREF="org/jCharts/chartText/TextTag.html#render(java.awt.Graphics2D, float, float)"><B>render(Graphics2D, float, float)</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTag.html">TextTag</A>
<DD>Renders the text, at the position - renders from the top (instead of baseline)
<DT><A HREF="org/jCharts/axisChart/axis/LabelAxis.html#render(java.awt.Graphics2D, org.jCharts.chartData.interfaces.IDataSeries)"><B>render(Graphics2D, IDataSeries)</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/LabelAxis.html">LabelAxis</A>
<DD><B>Deprecated.</B>&nbsp;Renders the axis on the passed Graphics2D object
<DT><A HREF="org/jCharts/axisChart/axis/DataAxis.html#render(java.awt.Graphics2D, org.jCharts.chartData.interfaces.IDataSeries)"><B>render(Graphics2D, IDataSeries)</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/DataAxis.html">DataAxis</A>
<DD><B>Deprecated.</B>&nbsp;Renders the DataAxis on the passes Graphics2D object
<DT><A HREF="org/jCharts/chartText/TextTag.html#render(java.awt.Graphics2D, java.awt.Paint)"><B>render(Graphics2D, Paint)</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTag.html">TextTag</A>
<DD>Renders the text, at the position - renders from the top (instead of baseline)
<DT><A HREF="org/jCharts/chartText/TextTagGroup.html#render(int, java.awt.Graphics2D, float, float)"><B>render(int, Graphics2D, float, float)</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTagGroup.html">TextTagGroup</A>
<DD>Renders the text, at the position - renders from the top (instead of baseline)
<DT><A HREF="org/jCharts/nonAxisChart/PieChart2D.html#render(org.jCharts.nonAxisChart.PieChart2D)"><B>render(PieChart2D)</B></A> - 
Static method in class org.jCharts.nonAxisChart.<A HREF="org/jCharts/nonAxisChart/PieChart2D.html">PieChart2D</A>
<DD>Implement the method to render the Chart.
<DT><A HREF="org/jCharts/axisChart/ScatterPlotChart.html#render(org.jCharts.axisChart.ScatterPlotAxisChart, org.jCharts.chartData.interfaces.IScatterPlotDataSet)"><B>render(ScatterPlotAxisChart, IScatterPlotDataSet)</B></A> - 
Static method in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/ScatterPlotChart.html">ScatterPlotChart</A>
<DD>Draws the chart
<DT><A HREF="org/jCharts/axisChart/axis/YAxis.html#renderAxisTitle(java.lang.String, java.awt.Graphics2D, org.jCharts.properties.AxisTypeProperties)"><B>renderAxisTitle(String, Graphics2D, AxisTypeProperties)</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/YAxis.html">YAxis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/XAxis.html#renderAxisTitle(java.lang.String, java.awt.Graphics2D, org.jCharts.properties.AxisTypeProperties)"><B>renderAxisTitle(String, Graphics2D, AxisTypeProperties)</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/XAxis.html">XAxis</A>
<DD>Computes the number of pixels between each value on the axis.
<DT><A HREF="org/jCharts/Chart.html#renderChart()"><B>renderChart()</B></A> - 
Method in class org.jCharts.<A HREF="org/jCharts/Chart.html">Chart</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/AxisChart.html#renderChart()"><B>renderChart()</B></A> - 
Method in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/AxisChart.html">AxisChart</A>
<DD>Implement the method to render the Axis based chart
<DT><A HREF="org/jCharts/nonAxisChart/PieChart2D.html#renderChart()"><B>renderChart()</B></A> - 
Method in class org.jCharts.nonAxisChart.<A HREF="org/jCharts/nonAxisChart/PieChart2D.html">PieChart2D</A>
<DD>Draws the chart
<DT><A HREF="org/jCharts/Chart.html#renderChartTitle(java.lang.String, java.awt.font.FontRenderContext)"><B>renderChartTitle(String, FontRenderContext)</B></A> - 
Method in class org.jCharts.<A HREF="org/jCharts/Chart.html">Chart</A>
<DD>Displays the chart title and returns the height of the title PLUS title padding.
<DT><A HREF="org/jCharts/Chart.html#renderWithImageMap()"><B>renderWithImageMap()</B></A> - 
Method in class org.jCharts.<A HREF="org/jCharts/Chart.html">Chart</A>
<DD>Renders the chart into a BufferedImage so that we can calculate all the Image Map
	coordinates.
<DT><A HREF="org/jCharts/chartText/TextTagGroup.html#reverse()"><B>reverse()</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTagGroup.html">TextTagGroup</A>
<DD>Horizontal plots render the data from top down so rendering alogorithm needs to get the
 	labels in reverse order to make things easier.
<DT><A HREF="org/jCharts/properties/LegendAreaProperties.html#RIGHT"><B>RIGHT</B></A> - 
Static variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendAreaProperties.html">LegendAreaProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/DataAxis.html#round(double, double)"><B>round(double, double)</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/DataAxis.html">DataAxis</A>
<DD><B>Deprecated.</B>&nbsp;Rounds the scale increment up by the power of ten specified in the properties.
<DT><A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html#round(double, double)"><B>round(double, double)</B></A> - 
Method in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html">ScaleCalculator</A>
<DD>Rounds the passed value by the power of ten specified
<DT><A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html#rounding"><B>rounding</B></A> - 
Variable in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html">ChartScale</A>
<DD>* The suggested value for the rounding of the data.
<DT><A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html#roundingPowerOfTen"><B>roundingPowerOfTen</B></A> - 
Variable in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html">ScaleCalculator</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/PieChart2DProperties.html#roundingPowerOfTen"><B>roundingPowerOfTen</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/PieChart2DProperties.html">PieChart2DProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/DataAxis.html#roundTheIncrement(double)"><B>roundTheIncrement(double)</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/DataAxis.html">DataAxis</A>
<DD><B>Deprecated.</B>&nbsp;Rounds the scale increment up by the power of ten specified in the properties.
<DT><A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html#roundTheIncrement(double)"><B>roundTheIncrement(double)</B></A> - 
Method in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html">ScaleCalculator</A>
<DD>Rounds the scale increment up by the power of ten specified in the properties.
<DT><A HREF="org/jCharts/properties/DataAxisProperties.html#roundToNearest"><B>roundToNearest</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/DataAxisProperties.html">DataAxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LegendAreaProperties.html#rowPadding"><B>rowPadding</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendAreaProperties.html">LegendAreaProperties</A>
<DD>&nbsp;
</DL>
<HR>
<A NAME="_S_"><!-- --></A><H2>
<B>S</B></H2>
<DL>
<DT><A HREF="org/jCharts/test/HTMLGenerator.html#saveFile()"><B>saveFile()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/HTMLGenerator.html">HTMLGenerator</A>
<DD>Writes the file.
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#scaleCalculator"><B>scaleCalculator</B></A> - 
Variable in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/DataAxisProperties.html#scaleCalculator"><B>scaleCalculator</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/DataAxisProperties.html">DataAxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html"><B>ScaleCalculator</B></A> - class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html">ScaleCalculator</A>.<DD>Base class for the logic used to compute the scale on the charts.<DT><A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html#ScaleCalculator()"><B>ScaleCalculator()</B></A> - 
Constructor for class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html">ScaleCalculator</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#scaleChartFont"><B>scaleChartFont</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#scalePixelWidth"><B>scalePixelWidth</B></A> - 
Variable in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/types/ChartType.html#SCATTER_PLOT"><B>SCATTER_PLOT</B></A> - 
Static variable in class org.jCharts.types.<A HREF="org/jCharts/types/ChartType.html">ChartType</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/ScatterChartTestBase.html"><B>ScatterChartTestBase</B></A> - class org.jCharts.test.<A HREF="org/jCharts/test/ScatterChartTestBase.html">ScatterChartTestBase</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/test/ScatterChartTestBase.html#ScatterChartTestBase()"><B>ScatterChartTestBase()</B></A> - 
Constructor for class org.jCharts.test.<A HREF="org/jCharts/test/ScatterChartTestBase.html">ScatterChartTestBase</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/ScatterPlotAxisChart.html"><B>ScatterPlotAxisChart</B></A> - class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/ScatterPlotAxisChart.html">ScatterPlotAxisChart</A>.<DD>This Class is used to create all axis chart types.<DT><A HREF="org/jCharts/axisChart/ScatterPlotAxisChart.html#ScatterPlotAxisChart(org.jCharts.chartData.interfaces.IScatterPlotDataSeries, org.jCharts.properties.ChartProperties, org.jCharts.properties.AxisProperties, org.jCharts.properties.LegendProperties, int, int)"><B>ScatterPlotAxisChart(IScatterPlotDataSeries, ChartProperties, AxisProperties, LegendProperties, int, int)</B></A> - 
Constructor for class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/ScatterPlotAxisChart.html">ScatterPlotAxisChart</A>
<DD>Constructor
<DT><A HREF="org/jCharts/axisChart/ScatterPlotChart.html"><B>ScatterPlotChart</B></A> - class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/ScatterPlotChart.html">ScatterPlotChart</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/axisChart/ScatterPlotChart.html#ScatterPlotChart()"><B>ScatterPlotChart()</B></A> - 
Constructor for class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/ScatterPlotChart.html">ScatterPlotChart</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/processors/ScatterPlotDataProcessor.html"><B>ScatterPlotDataProcessor</B></A> - class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/ScatterPlotDataProcessor.html">ScatterPlotDataProcessor</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/chartData/processors/ScatterPlotDataProcessor.html#ScatterPlotDataProcessor()"><B>ScatterPlotDataProcessor()</B></A> - 
Constructor for class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/ScatterPlotDataProcessor.html">ScatterPlotDataProcessor</A>
<DD>Constructor
<DT><A HREF="org/jCharts/chartData/ScatterPlotDataSeries.html"><B>ScatterPlotDataSeries</B></A> - class org.jCharts.chartData.<A HREF="org/jCharts/chartData/ScatterPlotDataSeries.html">ScatterPlotDataSeries</A>.<DD>Collection of all IAxisPlotDataSets to display in an AxisChart<DT><A HREF="org/jCharts/chartData/ScatterPlotDataSeries.html#ScatterPlotDataSeries(org.jCharts.chartData.interfaces.IScatterPlotDataSet, java.lang.String, java.lang.String, java.lang.String)"><B>ScatterPlotDataSeries(IScatterPlotDataSet, String, String, String)</B></A> - 
Constructor for class org.jCharts.chartData.<A HREF="org/jCharts/chartData/ScatterPlotDataSeries.html">ScatterPlotDataSeries</A>
<DD>Constructor
<DT><A HREF="org/jCharts/chartData/ScatterPlotDataSet.html"><B>ScatterPlotDataSet</B></A> - class org.jCharts.chartData.<A HREF="org/jCharts/chartData/ScatterPlotDataSet.html">ScatterPlotDataSet</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/chartData/ScatterPlotDataSet.html#ScatterPlotDataSet(org.jCharts.properties.ScatterPlotProperties)"><B>ScatterPlotDataSet(ScatterPlotProperties)</B></A> - 
Constructor for class org.jCharts.chartData.<A HREF="org/jCharts/chartData/ScatterPlotDataSet.html">ScatterPlotDataSet</A>
<DD>Constructor
<DT><A HREF="org/jCharts/chartData/ScatterPlotDataSet.html#scatterPlotProperties"><B>scatterPlotProperties</B></A> - 
Variable in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/ScatterPlotDataSet.html">ScatterPlotDataSet</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/ScatterPlotProperties.html"><B>ScatterPlotProperties</B></A> - class org.jCharts.properties.<A HREF="org/jCharts/properties/ScatterPlotProperties.html">ScatterPlotProperties</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/properties/ScatterPlotProperties.html#ScatterPlotProperties(java.awt.Stroke[], java.awt.Shape[])"><B>ScatterPlotProperties(Stroke[], Shape[])</B></A> - 
Constructor for class org.jCharts.properties.<A HREF="org/jCharts/properties/ScatterPlotProperties.html">ScatterPlotProperties</A>
<DD>Constructor
<DT><A HREF="org/jCharts/test/ScatterPlotTestDriver.html"><B>ScatterPlotTestDriver</B></A> - class org.jCharts.test.<A HREF="org/jCharts/test/ScatterPlotTestDriver.html">ScatterPlotTestDriver</A>.<DD>This file provides examples of how to create all the different chart types provided by
  this package.<DT><A HREF="org/jCharts/test/ScatterPlotTestDriver.html#ScatterPlotTestDriver()"><B>ScatterPlotTestDriver()</B></A> - 
Constructor for class org.jCharts.test.<A HREF="org/jCharts/test/ScatterPlotTestDriver.html">ScatterPlotTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html#segments"><B>segments</B></A> - 
Variable in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html">ChartScale</A>
<DD>* The number of segments that the suggested yStart, yEnd and yDelta produce.
<DT><A HREF="org/jCharts/encoders/ServletEncoderHelper.html"><B>ServletEncoderHelper</B></A> - class org.jCharts.encoders.<A HREF="org/jCharts/encoders/ServletEncoderHelper.html">ServletEncoderHelper</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/encoders/ServletEncoderHelper.html#ServletEncoderHelper()"><B>ServletEncoderHelper()</B></A> - 
Constructor for class org.jCharts.encoders.<A HREF="org/jCharts/encoders/ServletEncoderHelper.html">ServletEncoderHelper</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#setAxisLabelsGroup(org.jCharts.chartText.TextTagGroup)"><B>setAxisLabelsGroup(TextTagGroup)</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#setAxisStroke(org.jCharts.properties.util.ChartStroke)"><B>setAxisStroke(ChartStroke)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#setAxisTickMarkPixelLength(float)"><B>setAxisTickMarkPixelLength(float)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#setAxisTitleChartFont(org.jCharts.properties.util.ChartFont)"><B>setAxisTitleChartFont(ChartFont)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/Properties.html#setBackgroundPaint(java.awt.Paint)"><B>setBackgroundPaint(Paint)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/Properties.html">Properties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/BarChartProperties.html#setBarOutlineStroke(org.jCharts.properties.util.ChartStroke)"><B>setBarOutlineStroke(ChartStroke)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/BarChartProperties.html">BarChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/BarValueGroup.html#setBarValuePosition(org.jCharts.chartText.BarValueGroup.BarValue, java.awt.geom.Rectangle2D.Float)"><B>setBarValuePosition(BarValueGroup.BarValue, Rectangle2D.Float)</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/BarValueGroup.html">BarValueGroup</A>
<DD>Gets the rectangle associated (by the user) for the given bar value.
<DT><A HREF="org/jCharts/properties/PieChart2DProperties.html#setBorderPaint(java.awt.Paint)"><B>setBorderPaint(Paint)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/PieChart2DProperties.html">PieChart2DProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AreaProperties.html#setBorderStroke(org.jCharts.properties.util.ChartStroke)"><B>setBorderStroke(ChartStroke)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AreaProperties.html">AreaProperties</A>
<DD>Sets the border Stroke.
<DT><A HREF="org/jCharts/properties/PieChart2DProperties.html#setBorderStroke(java.awt.Stroke)"><B>setBorderStroke(Stroke)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/PieChart2DProperties.html">PieChart2DProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LegendAreaProperties.html#setChartPadding(int)"><B>setChartPadding(int)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendAreaProperties.html">LegendAreaProperties</A>
<DD>Sets the padding between chart plot and the Legend.
<DT><A HREF="org/jCharts/properties/StockChartProperties.html#setClosePixelLength(int)"><B>setClosePixelLength(int)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/StockChartProperties.html">StockChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/StockChartProperties.html#setCloseStroke(java.awt.Stroke)"><B>setCloseStroke(Stroke)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/StockChartProperties.html">StockChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/StockChartDataSet.html#setCloseValues(double[], java.lang.String, java.awt.Paint)"><B>setCloseValues(double[], String, Paint)</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/StockChartDataSet.html">StockChartDataSet</A>
<DD>Sets the 'Close' values
<DT><A HREF="org/jCharts/properties/LegendAreaProperties.html#setColumnPadding(int)"><B>setColumnPadding(int)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendAreaProperties.html">LegendAreaProperties</A>
<DD>Sets the padding between label columns, in pixels.
<DT><A HREF="org/jCharts/properties/PieChart2DProperties.html#setCurrency(boolean)"><B>setCurrency(boolean)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/PieChart2DProperties.html">PieChart2DProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html#setDataSetIndex(int)"><B>setDataSetIndex(int)</B></A> - 
Method in class org.jCharts.axisChart.customRenderers.axisValue.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html">AxisValueRenderEvent</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AreaProperties.html#setEdgePadding(float)"><B>setEdgePadding(float)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AreaProperties.html">AreaProperties</A>
<DD>Sets the number of pixels to pad the edges of the image
<DT><A HREF="org/jCharts/properties/LegendProperties.html#setFont(java.awt.Font)"><B>setFont(Font)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendProperties.html">LegendProperties</A>
<DD>Sets the Font used by the Legend.
<DT><A HREF="org/jCharts/properties/LegendProperties.html#setFontPaint(java.awt.Paint)"><B>setFontPaint(Paint)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendProperties.html">LegendProperties</A>
<DD>Sets the Font color used by the Legend.
<DT><A HREF="org/jCharts/Chart.html#setGraphics2D(java.awt.Graphics2D)"><B>setGraphics2D(Graphics2D)</B></A> - 
Method in class org.jCharts.<A HREF="org/jCharts/Chart.html">Chart</A>
<DD>Sets the graphics object to render the chart on by the encoder.
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#setGridLineChartStroke(org.jCharts.properties.util.ChartStroke)"><B>setGridLineChartStroke(ChartStroke)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/TextTag.html#setHidden(boolean)"><B>setHidden(boolean)</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTag.html">TextTag</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/StockChartProperties.html#setHiLowStroke(java.awt.Stroke)"><B>setHiLowStroke(Stroke)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/StockChartProperties.html">StockChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LegendProperties.html#setIconBorderPaint(java.awt.Paint)"><B>setIconBorderPaint(Paint)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendProperties.html">LegendProperties</A>
<DD>Sets the Icon border color used by the Legend.
<DT><A HREF="org/jCharts/properties/LegendProperties.html#setIconBorderStroke(java.awt.Stroke)"><B>setIconBorderStroke(Stroke)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendProperties.html">LegendProperties</A>
<DD>Sets the icon border Stroke.
<DT><A HREF="org/jCharts/properties/LegendAreaProperties.html#setIconPadding(int)"><B>setIconPadding(int)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendAreaProperties.html">LegendAreaProperties</A>
<DD>Sets the padding between the icon and the Label, in pixels.
<DT><A HREF="org/jCharts/Chart.html#setImageMap(org.jCharts.imageMap.ImageMap)"><B>setImageMap(ImageMap)</B></A> - 
Method in class org.jCharts.<A HREF="org/jCharts/Chart.html">Chart</A>
<DD>To optimze performance of the ImageMap Object, we create it once we know how many data
  elements are in the chart which is dependent on the AxisChart or PieChart2D
<DT><A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html#setMaxValue(double)"><B>setMaxValue(double)</B></A> - 
Method in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html">ScaleCalculator</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/processors/AxisChartDataProcessor.html#setMaxValue(double)"><B>setMaxValue(double)</B></A> - 
Method in class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/AxisChartDataProcessor.html">AxisChartDataProcessor</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#setMinimumHeightNeeded(float)"><B>setMinimumHeightNeeded(float)</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#setMinimumWidthNeeded(float)"><B>setMinimumWidthNeeded(float)</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html#setMinValue(double)"><B>setMinValue(double)</B></A> - 
Method in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html">ScaleCalculator</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/processors/AxisChartDataProcessor.html#setMinValue(double)"><B>setMinValue(double)</B></A> - 
Method in class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/AxisChartDataProcessor.html">AxisChartDataProcessor</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html#setNumberOfScaleItems(int)"><B>setNumberOfScaleItems(int)</B></A> - 
Method in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html">ScaleCalculator</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LegendAreaProperties.html#setNumColumns(int)"><B>setNumColumns(int)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendAreaProperties.html">LegendAreaProperties</A>
<DD>Sets the number of text columns the legend should display.
<DT><A HREF="org/jCharts/properties/DataAxisProperties.html#setNumItems(int)"><B>setNumItems(int)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/DataAxisProperties.html">DataAxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#setOneUnitPixelSize(double)"><B>setOneUnitPixelSize(double)</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/StockChartProperties.html#setOpenPixelLength(int)"><B>setOpenPixelLength(int)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/StockChartProperties.html">StockChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/StockChartProperties.html#setOpenStroke(java.awt.Stroke)"><B>setOpenStroke(Stroke)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/StockChartProperties.html">StockChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/StockChartDataSet.html#setOpenValues(double[], java.lang.String, java.awt.Paint)"><B>setOpenValues(double[], String, Paint)</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/StockChartDataSet.html">StockChartDataSet</A>
<DD>Sets the 'Open' values
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#setOrigin(float)"><B>setOrigin(float)</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#setPaddingBetweenAxisAndLabels(float)"><B>setPaddingBetweenAxisAndLabels(float)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#setPaddingBetweenAxisTitleAndLabels(float)"><B>setPaddingBetweenAxisTitleAndLabels(float)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#setPaddingBetweenLabelsAndTicks(float)"><B>setPaddingBetweenLabelsAndTicks(float)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#setPaddingBetweenXAxisLabels(float)"><B>setPaddingBetweenXAxisLabels(float)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/PieChart2DProperties.html#setPieLabelType(org.jCharts.types.PieLabelType)"><B>setPieLabelType(PieLabelType)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/PieChart2DProperties.html">PieChart2DProperties</A>
<DD>Sets the type of label to draw on the PieChart.
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#setPixelLength(float)"><B>setPixelLength(float)</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelRenderer.html#setPixelValuePadding(int)"><B>setPixelValuePadding(int)</B></A> - 
Method in class org.jCharts.axisChart.customRenderers.axisValue.renderers.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelRenderer.html">ValueLabelRenderer</A>
<DD>The pixel padding between the label and the data point.
<DT><A HREF="org/jCharts/properties/LegendAreaProperties.html#setPlacement(int)"><B>setPlacement(int)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendAreaProperties.html">LegendAreaProperties</A>
<DD>Sets where the Legend should be drawn in relation to the Chart.
<DT><A HREF="org/jCharts/chartText/TextTag.html#setPosition(float, float)"><B>setPosition(float, float)</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTag.html">TextTag</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/imageMap/CircleMapArea.html#setRadius(int)"><B>setRadius(int)</B></A> - 
Method in class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/CircleMapArea.html">CircleMapArea</A>
<DD>Allows user to specify the radius for each circle
<DT><A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html#setRoundingPowerOfTen(int)"><B>setRoundingPowerOfTen(int)</B></A> - 
Method in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html">ScaleCalculator</A>
<DD>Sets the exponent power of ten to round values to.
<DT><A HREF="org/jCharts/properties/PieChart2DProperties.html#setRoundingPowerOfTen(int)"><B>setRoundingPowerOfTen(int)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/PieChart2DProperties.html">PieChart2DProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/DataAxisProperties.html#setRoundToNearest(int)"><B>setRoundToNearest(int)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/DataAxisProperties.html">DataAxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LegendAreaProperties.html#setRowPadding(int)"><B>setRowPadding(int)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendAreaProperties.html">LegendAreaProperties</A>
<DD>Sets the padding between labels in each row, in pixels.
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#setScaleCalculator(org.jCharts.axisChart.axis.scale.ScaleCalculator)"><B>setScaleCalculator(ScaleCalculator)</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/DataAxisProperties.html#setScaleCalculator(org.jCharts.axisChart.axis.scale.ScaleCalculator)"><B>setScaleCalculator(ScaleCalculator)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/DataAxisProperties.html">DataAxisProperties</A>
<DD>You do not have to explicitly set a ScaleCalculator implementation as jCharts will
 	create one, but if you do not like the way Scale ranges are created, you could
 	create your own implementation of ScaleCalculator and jCharts will use it!
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#setScaleChartFont(org.jCharts.properties.util.ChartFont)"><B>setScaleChartFont(ChartFont)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#setScalePixelWidth(float)"><B>setScalePixelWidth(float)</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#setShowAxisLabels(boolean)"><B>setShowAxisLabels(boolean)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#setShowEndBorder(boolean)"><B>setShowEndBorder(boolean)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#setShowGridLines(int)"><B>setShowGridLines(int)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/PieChart2DProperties.html#setShowGrouping(boolean)"><B>setShowGrouping(boolean)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/PieChart2DProperties.html">PieChart2DProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/BarChartProperties.html#setShowOutlinesFlag(boolean)"><B>setShowOutlinesFlag(boolean)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/BarChartProperties.html">BarChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#setShowTicks(int)"><B>setShowTicks(int)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/DataAxisProperties.html#setShowZeroLine(boolean)"><B>setShowZeroLine(boolean)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/DataAxisProperties.html">DataAxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LegendProperties.html#setSize(java.awt.Dimension)"><B>setSize(Dimension)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendProperties.html">LegendProperties</A>
<DD>Setter for property size.
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#setTickChartStroke(org.jCharts.properties.util.ChartStroke)"><B>setTickChartStroke(ChartStroke)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/PieChart2DProperties.html#setTickLength(float)"><B>setTickLength(float)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/PieChart2DProperties.html">PieChart2DProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#setTickStart(float)"><B>setTickStart(float)</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#setTitleChartFont(org.jCharts.properties.util.ChartFont)"><B>setTitleChartFont(ChartFont)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/ChartProperties.html#setTitleFont(org.jCharts.properties.util.ChartFont)"><B>setTitleFont(ChartFont)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/ChartProperties.html">ChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/ChartProperties.html#setTitlePadding(float)"><B>setTitlePadding(float)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/ChartProperties.html">ChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/ScatterPlotAxisChart.html#setupAxis(org.jCharts.chartData.processors.AxisChartDataProcessor, java.awt.font.FontRenderContext)"><B>setupAxis(AxisChartDataProcessor, FontRenderContext)</B></A> - 
Method in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/ScatterPlotAxisChart.html">ScatterPlotAxisChart</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/AxisChart.html#setupAxis(org.jCharts.chartData.processors.AxisChartDataProcessor, java.awt.font.FontRenderContext)"><B>setupAxis(AxisChartDataProcessor, FontRenderContext)</B></A> - 
Method in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/AxisChart.html">AxisChart</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/ScatterPlotAxisChart.html#setupDataAxisProperties(org.jCharts.axisChart.axis.Axis, org.jCharts.properties.DataAxisProperties, org.jCharts.chartData.processors.AxisChartDataProcessor, java.awt.font.FontRenderContext)"><B>setupDataAxisProperties(Axis, DataAxisProperties, AxisChartDataProcessor, FontRenderContext)</B></A> - 
Method in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/ScatterPlotAxisChart.html">ScatterPlotAxisChart</A>
<DD>Once we determine which axis is the data axis, the logic to set it up is the same whether it
 	is a horizontal or vertical plot.
<DT><A HREF="org/jCharts/axisChart/AxisChart.html#setupDataAxisProperties(org.jCharts.axisChart.axis.Axis, org.jCharts.properties.DataAxisProperties, org.jCharts.chartData.processors.AxisChartDataProcessor, java.awt.font.FontRenderContext)"><B>setupDataAxisProperties(Axis, DataAxisProperties, AxisChartDataProcessor, FontRenderContext)</B></A> - 
Method in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/AxisChart.html">AxisChart</A>
<DD>Once we determine which axis is the data axis, the logic to set it up is the same whether it
 	is a horizontal or vertical plot.
<DT><A HREF="org/jCharts/properties/util/ChartStroke.html#setupGraphics2D(java.awt.Graphics2D)"><B>setupGraphics2D(Graphics2D)</B></A> - 
Method in class org.jCharts.properties.util.<A HREF="org/jCharts/properties/util/ChartStroke.html">ChartStroke</A>
<DD>Sets the Paint and Stroke implementations on the Graphics2D Object
<DT><A HREF="org/jCharts/properties/util/ChartItem.html#setupGraphics2D(java.awt.Graphics2D)"><B>setupGraphics2D(Graphics2D)</B></A> - 
Method in class org.jCharts.properties.util.<A HREF="org/jCharts/properties/util/ChartItem.html">ChartItem</A>
<DD>Sets the Paint and Stroke implementations on the Graphics2D Object
<DT><A HREF="org/jCharts/properties/util/ChartFont.html#setupGraphics2D(java.awt.Graphics2D)"><B>setupGraphics2D(Graphics2D)</B></A> - 
Method in class org.jCharts.properties.util.<A HREF="org/jCharts/properties/util/ChartFont.html">ChartFont</A>
<DD>Sets the Paint and Stroke implementations on the Graphics2D Object
<DT><A HREF="org/jCharts/properties/DataAxisProperties.html#setUseCommas(boolean)"><B>setUseCommas(boolean)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/DataAxisProperties.html">DataAxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/DataAxisProperties.html#setUseDollarSigns(boolean)"><B>setUseDollarSigns(boolean)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/DataAxisProperties.html">DataAxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/DataAxisProperties.html#setUsePercentSigns(boolean)"><B>setUsePercentSigns(boolean)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/DataAxisProperties.html">DataAxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/DataAxisProperties.html#setUserDefinedScale(double, double)"><B>setUserDefinedScale(double, double)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/DataAxisProperties.html">DataAxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/ChartProperties.html#setValidate(boolean)"><B>setValidate(boolean)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/ChartProperties.html">ChartProperties</A>
<DD>Toggles the validation of data and properties for the charts.
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelRenderer.html#setValueChartFont(org.jCharts.properties.util.ChartFont)"><B>setValueChartFont(ChartFont)</B></A> - 
Method in class org.jCharts.axisChart.customRenderers.axisValue.renderers.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelRenderer.html">ValueLabelRenderer</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html#setValueIndex(int)"><B>setValueIndex(int)</B></A> - 
Method in class org.jCharts.axisChart.customRenderers.axisValue.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html">AxisValueRenderEvent</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/PieChart2DProperties.html#setValueLabelFont(org.jCharts.properties.util.ChartFont)"><B>setValueLabelFont(ChartFont)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/PieChart2DProperties.html">PieChart2DProperties</A>
<DD>Sets the ChartFont used to draw the chart value labels.
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelRenderer.html#setValueLabelPosition(org.jCharts.axisChart.customRenderers.axisValue.renderers.ValueLabelPosition)"><B>setValueLabelPosition(ValueLabelPosition)</B></A> - 
Method in class org.jCharts.axisChart.customRenderers.axisValue.renderers.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelRenderer.html">ValueLabelRenderer</A>
<DD>Sets where you would like to position the label
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html#setValueX(float)"><B>setValueX(float)</B></A> - 
Method in class org.jCharts.axisChart.customRenderers.axisValue.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html">AxisValueRenderEvent</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html#setValueY(float)"><B>setValueY(float)</B></A> - 
Method in class org.jCharts.axisChart.customRenderers.axisValue.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html">AxisValueRenderEvent</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/BarChartProperties.html#setWidthPercentage(float)"><B>setWidthPercentage(float)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/BarChartProperties.html">BarChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/Legend.html#setX(float)"><B>setX(float)</B></A> - 
Method in class org.jCharts.<A HREF="org/jCharts/Legend.html">Legend</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisProperties.html#setXAxisLabelsAreVertical(boolean)"><B>setXAxisLabelsAreVertical(boolean)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisProperties.html">AxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/TextTag.html#setXPosition(float)"><B>setXPosition(float)</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTag.html">TextTag</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/Legend.html#setY(float)"><B>setY(float)</B></A> - 
Method in class org.jCharts.<A HREF="org/jCharts/Legend.html">Legend</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/processors/ScatterPlotDataProcessor.html#setyMax(double)"><B>setyMax(double)</B></A> - 
Method in class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/ScatterPlotDataProcessor.html">ScatterPlotDataProcessor</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/processors/ScatterPlotDataProcessor.html#setyMin(double)"><B>setyMin(double)</B></A> - 
Method in class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/ScatterPlotDataProcessor.html">ScatterPlotDataProcessor</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/TextTag.html#setYPosition(float)"><B>setYPosition(float)</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTag.html">TextTag</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/PieChart2DProperties.html#setZeroDegreeOffset(float)"><B>setZeroDegreeOffset(float)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/PieChart2DProperties.html">PieChart2DProperties</A>
<DD>The offset from zero degrees which the first slice of pie is drawn.
<DT><A HREF="org/jCharts/properties/DataAxisProperties.html#setZeroLineChartStroke(org.jCharts.properties.util.ChartStroke)"><B>setZeroLineChartStroke(ChartStroke)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/DataAxisProperties.html">DataAxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#setZeroLineCoordinate(float)"><B>setZeroLineCoordinate(float)</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>Sets the screen coordinate of the zero line.
<DT><A HREF="org/jCharts/properties/PointChartProperties.html#SHAPE_CIRCLE"><B>SHAPE_CIRCLE</B></A> - 
Static variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/PointChartProperties.html">PointChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/PointChartProperties.html#SHAPE_DIAMOND"><B>SHAPE_DIAMOND</B></A> - 
Static variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/PointChartProperties.html">PointChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/PointChartProperties.html#SHAPE_SQUARE"><B>SHAPE_SQUARE</B></A> - 
Static variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/PointChartProperties.html">PointChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/PointChartProperties.html#SHAPE_TRIANGLE"><B>SHAPE_TRIANGLE</B></A> - 
Static variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/PointChartProperties.html">PointChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/Legend.html#shapes"><B>shapes</B></A> - 
Variable in class org.jCharts.<A HREF="org/jCharts/Legend.html">Legend</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/ScatterPlotProperties.html#shapes"><B>shapes</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/ScatterPlotProperties.html">ScatterPlotProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/PointChartProperties.html#shapes"><B>shapes</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/PointChartProperties.html">PointChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LineChartProperties.html#shapes"><B>shapes</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/LineChartProperties.html">LineChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#showAxisLabels"><B>showAxisLabels</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#showAxisLabels()"><B>showAxisLabels()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/BarValueGroup.html#showBarValues"><B>showBarValues</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/BarValueGroup.html">BarValueGroup</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#showEndBorder"><B>showEndBorder</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#showGridLines"><B>showGridLines</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/PieChart2DProperties.html#showGrouping"><B>showGrouping</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/PieChart2DProperties.html">PieChart2DProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/BarChartProperties.html#showOutlines"><B>showOutlines</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/BarChartProperties.html">BarChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#showTicks"><B>showTicks</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/PieChart2DProperties.html#showValueLabelCurrency()"><B>showValueLabelCurrency()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/PieChart2DProperties.html">PieChart2DProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/PieChart2DProperties.html#showValueLabelGrouping()"><B>showValueLabelGrouping()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/PieChart2DProperties.html">PieChart2DProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/DataAxisProperties.html#showZeroLine"><B>showZeroLine</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/DataAxisProperties.html">DataAxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/DataAxisProperties.html#showZeroLine()"><B>showZeroLine()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/DataAxisProperties.html">DataAxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/LegendProperties.html#size"><B>size</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendProperties.html">LegendProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/AxisDataSeries.html#size()"><B>size()</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/AxisDataSeries.html">AxisDataSeries</A>
<DD>Returns the number of IAxisPlotDataSet Objects in this series
<DT><A HREF="org/jCharts/chartData/interfaces/IAxisDataSeries.html#size()"><B>size()</B></A> - 
Method in interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IAxisDataSeries.html">IAxisDataSeries</A>
<DD>Returns the number of IAxisPlotDataSet Objects in this series
<DT><A HREF="org/jCharts/chartData/processors/TextProcessor.html#size()"><B>size()</B></A> - 
Method in class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/TextProcessor.html">TextProcessor</A>
<DD>Returns the number of labels
<DT><A HREF="org/jCharts/chartText/TextTagGroup.html#size()"><B>size()</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTagGroup.html">TextTagGroup</A>
<DD>Returns the number of labels
<DT><A HREF="org/jCharts/axisChart/AxisChart.html#sizeAndPositionAxis(float, float, float)"><B>sizeAndPositionAxis(float, float, float)</B></A> - 
Method in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/AxisChart.html">AxisChart</A>
<DD>Finalizes the size of both Axis and sets the origin position
<DT><A HREF="org/jCharts/chartData/AxisDataSeries.html#sizeOfEachDataSet"><B>sizeOfEachDataSet</B></A> - 
Variable in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/AxisDataSeries.html">AxisDataSeries</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/StackedAreaChart.html"><B>StackedAreaChart</B></A> - class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/StackedAreaChart.html">StackedAreaChart</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/axisChart/StackedAreaChart.html#StackedAreaChart()"><B>StackedAreaChart()</B></A> - 
Constructor for class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/StackedAreaChart.html">StackedAreaChart</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/StackedAreaChartProperties.html"><B>StackedAreaChartProperties</B></A> - class org.jCharts.properties.<A HREF="org/jCharts/properties/StackedAreaChartProperties.html">StackedAreaChartProperties</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/properties/StackedAreaChartProperties.html#StackedAreaChartProperties()"><B>StackedAreaChartProperties()</B></A> - 
Constructor for class org.jCharts.properties.<A HREF="org/jCharts/properties/StackedAreaChartProperties.html">StackedAreaChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/StackedAreaTestDriver.html"><B>StackedAreaTestDriver</B></A> - class org.jCharts.test.<A HREF="org/jCharts/test/StackedAreaTestDriver.html">StackedAreaTestDriver</A>.<DD>This file provides examples of how to create all the different chart types provided by
  this package.<DT><A HREF="org/jCharts/test/StackedAreaTestDriver.html#StackedAreaTestDriver()"><B>StackedAreaTestDriver()</B></A> - 
Constructor for class org.jCharts.test.<A HREF="org/jCharts/test/StackedAreaTestDriver.html">StackedAreaTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/StackedBarChart.html"><B>StackedBarChart</B></A> - class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/StackedBarChart.html">StackedBarChart</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/axisChart/StackedBarChart.html#StackedBarChart()"><B>StackedBarChart()</B></A> - 
Constructor for class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/StackedBarChart.html">StackedBarChart</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/StackedBarChartProperties.html"><B>StackedBarChartProperties</B></A> - class org.jCharts.properties.<A HREF="org/jCharts/properties/StackedBarChartProperties.html">StackedBarChartProperties</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/properties/StackedBarChartProperties.html#StackedBarChartProperties()"><B>StackedBarChartProperties()</B></A> - 
Constructor for class org.jCharts.properties.<A HREF="org/jCharts/properties/StackedBarChartProperties.html">StackedBarChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/StackedBarTestDriver.html"><B>StackedBarTestDriver</B></A> - class org.jCharts.test.<A HREF="org/jCharts/test/StackedBarTestDriver.html">StackedBarTestDriver</A>.<DD>This file provides examples of how to create all the different chart types provided by
  this package.<DT><A HREF="org/jCharts/test/StackedBarTestDriver.html#StackedBarTestDriver()"><B>StackedBarTestDriver()</B></A> - 
Constructor for class org.jCharts.test.<A HREF="org/jCharts/test/StackedBarTestDriver.html">StackedBarTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/types/ChartType.html#stackedData"><B>stackedData</B></A> - 
Variable in class org.jCharts.types.<A HREF="org/jCharts/types/ChartType.html">ChartType</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/processors/StackedDataProcessor.html"><B>StackedDataProcessor</B></A> - class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/StackedDataProcessor.html">StackedDataProcessor</A>.<DD>Notes:
  1) Stacked data cannot have any negative values.<DT><A HREF="org/jCharts/chartData/processors/StackedDataProcessor.html#StackedDataProcessor()"><B>StackedDataProcessor()</B></A> - 
Constructor for class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/StackedDataProcessor.html">StackedDataProcessor</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/StopWatch.html#start"><B>start</B></A> - 
Variable in class org.jCharts.test.<A HREF="org/jCharts/test/StopWatch.html">StopWatch</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/StopWatch.html#start()"><B>start()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/StopWatch.html">StopWatch</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/BarValueGroup.BarValue.html#startPosition"><B>startPosition</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/BarValueGroup.BarValue.html">BarValueGroup.BarValue</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/XAxis.html#startTicksAtAxis"><B>startTicksAtAxis</B></A> - 
Variable in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/XAxis.html">XAxis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/types/ChartType.html#STOCK"><B>STOCK</B></A> - 
Static variable in class org.jCharts.types.<A HREF="org/jCharts/types/ChartType.html">ChartType</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/StockChart.html"><B>StockChart</B></A> - class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/StockChart.html">StockChart</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/axisChart/StockChart.html#StockChart()"><B>StockChart()</B></A> - 
Constructor for class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/StockChart.html">StockChart</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/StockChartDataSet.html"><B>StockChartDataSet</B></A> - class org.jCharts.chartData.<A HREF="org/jCharts/chartData/StockChartDataSet.html">StockChartDataSet</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/chartData/StockChartDataSet.html#StockChartDataSet(double[], java.lang.String, double[], java.lang.String, java.awt.Paint, org.jCharts.properties.StockChartProperties)"><B>StockChartDataSet(double[], String, double[], String, Paint, StockChartProperties)</B></A> - 
Constructor for class org.jCharts.chartData.<A HREF="org/jCharts/chartData/StockChartDataSet.html">StockChartDataSet</A>
<DD>Constructor
<DT><A HREF="org/jCharts/types/StockChartDataType.html"><B>StockChartDataType</B></A> - class org.jCharts.types.<A HREF="org/jCharts/types/StockChartDataType.html">StockChartDataType</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/types/StockChartDataType.html#StockChartDataType(int)"><B>StockChartDataType(int)</B></A> - 
Constructor for class org.jCharts.types.<A HREF="org/jCharts/types/StockChartDataType.html">StockChartDataType</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/StockChartDataSet.html#stockChartProperties"><B>stockChartProperties</B></A> - 
Variable in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/StockChartDataSet.html">StockChartDataSet</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/StockChartProperties.html"><B>StockChartProperties</B></A> - class org.jCharts.properties.<A HREF="org/jCharts/properties/StockChartProperties.html">StockChartProperties</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/properties/StockChartProperties.html#StockChartProperties()"><B>StockChartProperties()</B></A> - 
Constructor for class org.jCharts.properties.<A HREF="org/jCharts/properties/StockChartProperties.html">StockChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/StockChartProperties.html#StockChartProperties(java.awt.Stroke, java.awt.Stroke, int, java.awt.Stroke, int)"><B>StockChartProperties(Stroke, Stroke, int, Stroke, int)</B></A> - 
Constructor for class org.jCharts.properties.<A HREF="org/jCharts/properties/StockChartProperties.html">StockChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/processors/StockDataProcessor.html"><B>StockDataProcessor</B></A> - class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/StockDataProcessor.html">StockDataProcessor</A>.<DD>Custom processor for the Stock Chart as data is semi-processed by default.<DT><A HREF="org/jCharts/chartData/processors/StockDataProcessor.html#StockDataProcessor()"><B>StockDataProcessor()</B></A> - 
Constructor for class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/StockDataProcessor.html">StockDataProcessor</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/StockTestDriver.html"><B>StockTestDriver</B></A> - class org.jCharts.test.<A HREF="org/jCharts/test/StockTestDriver.html">StockTestDriver</A>.<DD>This file provides examples of how to create all the different chart types provided by
  this package.<DT><A HREF="org/jCharts/test/StockTestDriver.html#StockTestDriver()"><B>StockTestDriver()</B></A> - 
Constructor for class org.jCharts.test.<A HREF="org/jCharts/test/StockTestDriver.html">StockTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/StopWatch.html#stop"><B>stop</B></A> - 
Variable in class org.jCharts.test.<A HREF="org/jCharts/test/StopWatch.html">StopWatch</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/StopWatch.html#stop()"><B>stop()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/StopWatch.html">StopWatch</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/StopWatch.html"><B>StopWatch</B></A> - class org.jCharts.test.<A HREF="org/jCharts/test/StopWatch.html">StopWatch</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/test/StopWatch.html#StopWatch()"><B>StopWatch()</B></A> - 
Constructor for class org.jCharts.test.<A HREF="org/jCharts/test/StopWatch.html">StopWatch</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/HTMLGenerator.html#stringBuffer"><B>stringBuffer</B></A> - 
Variable in class org.jCharts.test.<A HREF="org/jCharts/test/HTMLGenerator.html">HTMLGenerator</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/util/ChartStroke.html#stroke"><B>stroke</B></A> - 
Variable in class org.jCharts.properties.util.<A HREF="org/jCharts/properties/util/ChartStroke.html">ChartStroke</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/processors/PieChartDataProcessor.html#sumOfData"><B>sumOfData</B></A> - 
Variable in class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/PieChartDataProcessor.html">PieChartDataProcessor</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/StockTestDriver.html#supportsImageMap()"><B>supportsImageMap()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/StockTestDriver.html">StockTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/StackedBarTestDriver.html#supportsImageMap()"><B>supportsImageMap()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/StackedBarTestDriver.html">StackedBarTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/StackedAreaTestDriver.html#supportsImageMap()"><B>supportsImageMap()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/StackedAreaTestDriver.html">StackedAreaTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/ScatterPlotTestDriver.html#supportsImageMap()"><B>supportsImageMap()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/ScatterPlotTestDriver.html">ScatterPlotTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/ScatterChartTestBase.html#supportsImageMap()"><B>supportsImageMap()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/ScatterChartTestBase.html">ScatterChartTestBase</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/PointTestDriver.html#supportsImageMap()"><B>supportsImageMap()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/PointTestDriver.html">PointTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/LineTestDriver.html#supportsImageMap()"><B>supportsImageMap()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/LineTestDriver.html">LineTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/ComboTestDriver.html#supportsImageMap()"><B>supportsImageMap()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/ComboTestDriver.html">ComboTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/ClusteredBarTestDriver.html#supportsImageMap()"><B>supportsImageMap()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/ClusteredBarTestDriver.html">ClusteredBarTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/BarTestDriver.html#supportsImageMap()"><B>supportsImageMap()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/BarTestDriver.html">BarTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/AxisChartTestBase.html#supportsImageMap()"><B>supportsImageMap()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/AxisChartTestBase.html">AxisChartTestBase</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/AreaTestDriver.html#supportsImageMap()"><B>supportsImageMap()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/AreaTestDriver.html">AreaTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/ChartTestDriver.html#SVG"><B>SVG</B></A> - 
Static variable in class org.jCharts.test.<A HREF="org/jCharts/test/ChartTestDriver.html">ChartTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/encoders/ServletEncoderHelper.html#SVG_MIME_TYPE"><B>SVG_MIME_TYPE</B></A> - 
Static variable in class org.jCharts.encoders.<A HREF="org/jCharts/encoders/ServletEncoderHelper.html">ServletEncoderHelper</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/encoders/SVGEncoder.html"><B>SVGEncoder</B></A> - class org.jCharts.encoders.<A HREF="org/jCharts/encoders/SVGEncoder.html">SVGEncoder</A>.<DD>This class REQUIRES the Apache XML Batik libraries to run.<DT><A HREF="org/jCharts/encoders/SVGEncoder.html#SVGEncoder()"><B>SVGEncoder()</B></A> - 
Constructor for class org.jCharts.encoders.<A HREF="org/jCharts/encoders/SVGEncoder.html">SVGEncoder</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/SwingTest.html"><B>SwingTest</B></A> - class org.jCharts.test.<A HREF="org/jCharts/test/SwingTest.html">SwingTest</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/test/SwingTest.html#SwingTest()"><B>SwingTest()</B></A> - 
Constructor for class org.jCharts.test.<A HREF="org/jCharts/test/SwingTest.html">SwingTest</A>
<DD>&nbsp;
</DL>
<HR>
<A NAME="_T_"><!-- --></A><H2>
<B>T</B></H2>
<DL>
<DT><A HREF="org/jCharts/chartData/processors/TextProcessor.html#tallestLabel"><B>tallestLabel</B></A> - 
Variable in class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/TextProcessor.html">TextProcessor</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/TextTagGroup.html#tallestLabel"><B>tallestLabel</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTagGroup.html">TextTagGroup</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/PieTestDriver.html#test()"><B>test()</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/PieTestDriver.html">PieTestDriver</A>
<DD>Test for PieChart2D
<DT><A HREF="org/jCharts/test/ChartTestDriver.html#testAxisScale()"><B>testAxisScale()</B></A> - 
Static method in class org.jCharts.test.<A HREF="org/jCharts/test/ChartTestDriver.html">ChartTestDriver</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/TestDataGenerator.html"><B>TestDataGenerator</B></A> - class org.jCharts.test.<A HREF="org/jCharts/test/TestDataGenerator.html">TestDataGenerator</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/test/TestDataGenerator.html#TestDataGenerator()"><B>TestDataGenerator()</B></A> - 
Constructor for class org.jCharts.test.<A HREF="org/jCharts/test/TestDataGenerator.html">TestDataGenerator</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/TextTag.html#text"><B>text</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTag.html">TextTag</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/BarValueGroup.BarValue.html#text"><B>text</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/BarValueGroup.BarValue.html">BarValueGroup.BarValue</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/TextTag.html#textLayout"><B>textLayout</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTag.html">TextTag</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/Legend.html#textProcessor"><B>textProcessor</B></A> - 
Variable in class org.jCharts.<A HREF="org/jCharts/Legend.html">Legend</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/processors/TextProcessor.html"><B>TextProcessor</B></A> - class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/TextProcessor.html">TextProcessor</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/chartData/processors/TextProcessor.html#TextProcessor()"><B>TextProcessor()</B></A> - 
Constructor for class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/TextProcessor.html">TextProcessor</A>
<DD>Constructor
<DT><A HREF="org/jCharts/chartText/TextTag.html"><B>TextTag</B></A> - class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTag.html">TextTag</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/chartText/TextTag.html#TextTag(java.lang.String, java.awt.Font, java.awt.Font, java.awt.font.FontRenderContext)"><B>TextTag(String, Font, Font, FontRenderContext)</B></A> - 
Constructor for class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTag.html">TextTag</A>
<DD>Constructor when using transformed (derived) fonts

 The need for this arises because the java metrics classes return either 0 or very strange
 values for the width and height of a string (TextLayout, LineMetrics, etc..) when
 the font is derived
<DT><A HREF="org/jCharts/chartText/TextTag.html#TextTag(java.lang.String, java.awt.Font, java.awt.font.FontRenderContext)"><B>TextTag(String, Font, FontRenderContext)</B></A> - 
Constructor for class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTag.html">TextTag</A>
<DD>Default constructor - for untransformed fonts.
<DT><A HREF="org/jCharts/nonAxisChart/PieChart2D.html#textTagGroup"><B>textTagGroup</B></A> - 
Variable in class org.jCharts.nonAxisChart.<A HREF="org/jCharts/nonAxisChart/PieChart2D.html">PieChart2D</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/TextTagGroup.html"><B>TextTagGroup</B></A> - class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTagGroup.html">TextTagGroup</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/chartText/TextTagGroup.html#TextTagGroup(org.jCharts.properties.util.ChartFont, java.awt.font.FontRenderContext)"><B>TextTagGroup(ChartFont, FontRenderContext)</B></A> - 
Constructor for class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTagGroup.html">TextTagGroup</A>
<DD>Constructor
<DT><A HREF="org/jCharts/chartText/BarValueGroup.html#textTagList"><B>textTagList</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/BarValueGroup.html">BarValueGroup</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/processors/TextProcessor.html#textTags"><B>textTags</B></A> - 
Variable in class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/TextProcessor.html">TextProcessor</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/TextTagGroup.html#textTags"><B>textTags</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTagGroup.html">TextTagGroup</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/ChartDataException.html#throwable"><B>throwable</B></A> - 
Variable in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/ChartDataException.html">ChartDataException</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#tickChartStroke"><B>tickChartStroke</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/PieChart2DProperties.html#tickLength"><B>tickLength</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/PieChart2DProperties.html">PieChart2DProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#TICKS_ALL"><B>TICKS_ALL</B></A> - 
Static variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#TICKS_NONE"><B>TICKS_NONE</B></A> - 
Static variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#TICKS_ONLY_WITH_LABELS"><B>TICKS_ONLY_WITH_LABELS</B></A> - 
Static variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#tickStart"><B>tickStart</B></A> - 
Variable in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/ChartProperties.html#titleChartFont"><B>titleChartFont</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/ChartProperties.html">ChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#titleChartFont"><B>titleChartFont</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#titleHeight"><B>titleHeight</B></A> - 
Variable in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/ChartProperties.html#titlePadding"><B>titlePadding</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/ChartProperties.html">ChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#titleWidth"><B>titleWidth</B></A> - 
Variable in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/imageMap/ImageMap.html#toHTML()"><B>toHTML()</B></A> - 
Method in class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/ImageMap.html">ImageMap</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/Legend.html#toHTML(org.jCharts.test.HTMLGenerator)"><B>toHTML(HTMLGenerator)</B></A> - 
Method in class org.jCharts.<A HREF="org/jCharts/Legend.html">Legend</A>
<DD>Enables the testing routines to display the contents of this Object.
<DT><A HREF="org/jCharts/axisChart/axis/YAxis.html#toHTML(org.jCharts.test.HTMLGenerator)"><B>toHTML(HTMLGenerator)</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/YAxis.html">YAxis</A>
<DD>Enables the testing routines to display the contents of this Object.
<DT><A HREF="org/jCharts/axisChart/axis/XAxis.html#toHTML(org.jCharts.test.HTMLGenerator)"><B>toHTML(HTMLGenerator)</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/XAxis.html">XAxis</A>
<DD>Enables the testing routines to display the contents of this Object.
<DT><A HREF="org/jCharts/axisChart/axis/LabelAxis.html#toHTML(org.jCharts.test.HTMLGenerator)"><B>toHTML(HTMLGenerator)</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/LabelAxis.html">LabelAxis</A>
<DD><B>Deprecated.</B>&nbsp;Enables the testing routines to display the contents of this Object.
<DT><A HREF="org/jCharts/axisChart/axis/DataAxis.html#toHTML(org.jCharts.test.HTMLGenerator)"><B>toHTML(HTMLGenerator)</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/DataAxis.html">DataAxis</A>
<DD><B>Deprecated.</B>&nbsp;Enables the testing routines to display the contents of this Object.
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#toHTML(org.jCharts.test.HTMLGenerator)"><B>toHTML(HTMLGenerator)</B></A> - 
Method in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>Enables the testing routines to display the contents of this Object.
<DT><A HREF="org/jCharts/chartData/StockChartDataSet.html#toHTML(org.jCharts.test.HTMLGenerator)"><B>toHTML(HTMLGenerator)</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/StockChartDataSet.html">StockChartDataSet</A>
<DD>Enables the testing routines to display the contents of this Object.
<DT><A HREF="org/jCharts/chartData/ScatterPlotDataSet.html#toHTML(org.jCharts.test.HTMLGenerator)"><B>toHTML(HTMLGenerator)</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/ScatterPlotDataSet.html">ScatterPlotDataSet</A>
<DD>Enables the testing routines to display the contents of this Object.
<DT><A HREF="org/jCharts/chartData/ScatterPlotDataSeries.html#toHTML(org.jCharts.test.HTMLGenerator)"><B>toHTML(HTMLGenerator)</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/ScatterPlotDataSeries.html">ScatterPlotDataSeries</A>
<DD>Returns the total number data dimensions in all of the IAxisChartDataSets contained in
  this collection.
<DT><A HREF="org/jCharts/chartData/DataSet.html#toHTML(org.jCharts.test.HTMLGenerator)"><B>toHTML(HTMLGenerator)</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/DataSet.html">DataSet</A>
<DD>Enables the testing routines to display the contents of this Object.
<DT><A HREF="org/jCharts/chartData/DataSeries.html#toHTML(org.jCharts.test.HTMLGenerator)"><B>toHTML(HTMLGenerator)</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/DataSeries.html">DataSeries</A>
<DD>Enables the testing routines to display the contents of this Object.
<DT><A HREF="org/jCharts/chartData/AxisDataSeries.html#toHTML(org.jCharts.test.HTMLGenerator)"><B>toHTML(HTMLGenerator)</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/AxisDataSeries.html">AxisDataSeries</A>
<DD>Enables the testing routines to display the contents of this Object.
<DT><A HREF="org/jCharts/chartData/AxisChartDataSet.html#toHTML(org.jCharts.test.HTMLGenerator)"><B>toHTML(HTMLGenerator)</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/AxisChartDataSet.html">AxisChartDataSet</A>
<DD>Enables the testing routines to display the contents of this Object.
<DT><A HREF="org/jCharts/chartText/TextTagGroup.html#toHTML(org.jCharts.test.HTMLGenerator)"><B>toHTML(HTMLGenerator)</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTagGroup.html">TextTagGroup</A>
<DD>Renders all the text in this group.
<DT><A HREF="org/jCharts/chartText/TextTag.html#toHTML(org.jCharts.test.HTMLGenerator)"><B>toHTML(HTMLGenerator)</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTag.html">TextTag</A>
<DD>Enables the testing routines to display the contents of this Object.
<DT><A HREF="org/jCharts/properties/StockChartProperties.html#toHTML(org.jCharts.test.HTMLGenerator)"><B>toHTML(HTMLGenerator)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/StockChartProperties.html">StockChartProperties</A>
<DD>Enables the testing routines to display the contents of this Object.
<DT><A HREF="org/jCharts/properties/ScatterPlotProperties.html#toHTML(org.jCharts.test.HTMLGenerator)"><B>toHTML(HTMLGenerator)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/ScatterPlotProperties.html">ScatterPlotProperties</A>
<DD>Enables the testing routines to display the contents of this Object.
<DT><A HREF="org/jCharts/properties/Properties.html#toHTML(org.jCharts.test.HTMLGenerator)"><B>toHTML(HTMLGenerator)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/Properties.html">Properties</A>
<DD>Enables the testing routines to display the contents of this Object.
<DT><A HREF="org/jCharts/properties/PointChartProperties.html#toHTML(org.jCharts.test.HTMLGenerator)"><B>toHTML(HTMLGenerator)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/PointChartProperties.html">PointChartProperties</A>
<DD>Enables the testing routines to display the contents of this Object.
<DT><A HREF="org/jCharts/properties/PieChart2DProperties.html#toHTML(org.jCharts.test.HTMLGenerator)"><B>toHTML(HTMLGenerator)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/PieChart2DProperties.html">PieChart2DProperties</A>
<DD>Enables the testing routines to display the contents of this Object.
<DT><A HREF="org/jCharts/properties/LineChartProperties.html#toHTML(org.jCharts.test.HTMLGenerator)"><B>toHTML(HTMLGenerator)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/LineChartProperties.html">LineChartProperties</A>
<DD>Enables the testing routines to display the contents of this Object.
<DT><A HREF="org/jCharts/properties/LegendProperties.html#toHTML(org.jCharts.test.HTMLGenerator)"><B>toHTML(HTMLGenerator)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendProperties.html">LegendProperties</A>
<DD>Enables the testing routines to display the contents of this Object.
<DT><A HREF="org/jCharts/properties/LegendAreaProperties.html#toHTML(org.jCharts.test.HTMLGenerator)"><B>toHTML(HTMLGenerator)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendAreaProperties.html">LegendAreaProperties</A>
<DD>Enables the testing routines to display the contents of this Object.
<DT><A HREF="org/jCharts/properties/DataAxisProperties.html#toHTML(org.jCharts.test.HTMLGenerator)"><B>toHTML(HTMLGenerator)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/DataAxisProperties.html">DataAxisProperties</A>
<DD>Enables the testing routines to display the contents of this Object.
<DT><A HREF="org/jCharts/properties/ChartProperties.html#toHTML(org.jCharts.test.HTMLGenerator)"><B>toHTML(HTMLGenerator)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/ChartProperties.html">ChartProperties</A>
<DD>Enables the testing routines to display the contents of this Object.
<DT><A HREF="org/jCharts/properties/BarChartProperties.html#toHTML(org.jCharts.test.HTMLGenerator)"><B>toHTML(HTMLGenerator)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/BarChartProperties.html">BarChartProperties</A>
<DD>Enables the testing routines to display the contents of this Object.
<DT><A HREF="org/jCharts/properties/AxisTypeProperties.html#toHTML(org.jCharts.test.HTMLGenerator)"><B>toHTML(HTMLGenerator)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisTypeProperties.html">AxisTypeProperties</A>
<DD>Enables the testing routines to display the contents of this Object.
<DT><A HREF="org/jCharts/properties/AxisProperties.html#toHTML(org.jCharts.test.HTMLGenerator)"><B>toHTML(HTMLGenerator)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisProperties.html">AxisProperties</A>
<DD>Enables the testing routines to display the contents of this Object.
<DT><A HREF="org/jCharts/properties/AreaProperties.html#toHTML(org.jCharts.test.HTMLGenerator)"><B>toHTML(HTMLGenerator)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AreaProperties.html">AreaProperties</A>
<DD>Enables the testing routines to display the contents of this Object.
<DT><A HREF="org/jCharts/properties/AreaChartProperties.html#toHTML(org.jCharts.test.HTMLGenerator)"><B>toHTML(HTMLGenerator)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AreaChartProperties.html">AreaChartProperties</A>
<DD>Enables the testing routines to display the contents of this Object.
<DT><A HREF="org/jCharts/test/HTMLTestable.html#toHTML(org.jCharts.test.HTMLGenerator)"><B>toHTML(HTMLGenerator)</B></A> - 
Method in interface org.jCharts.test.<A HREF="org/jCharts/test/HTMLTestable.html">HTMLTestable</A>
<DD>Enables the testing routines to display the contents of this Object.
<DT><A HREF="org/jCharts/nonAxisChart/PieChart2D.html#toHTML(org.jCharts.test.HTMLGenerator, java.lang.String)"><B>toHTML(HTMLGenerator, String)</B></A> - 
Method in class org.jCharts.nonAxisChart.<A HREF="org/jCharts/nonAxisChart/PieChart2D.html">PieChart2D</A>
<DD>Enables the testing routines to display the contents of this Object.
<DT><A HREF="org/jCharts/Chart.html#toHTML(org.jCharts.test.HTMLGenerator, java.lang.String, org.jCharts.imageMap.ImageMap)"><B>toHTML(HTMLGenerator, String, ImageMap)</B></A> - 
Method in class org.jCharts.<A HREF="org/jCharts/Chart.html">Chart</A>
<DD>Enables the testing routines to display the contents of this Object.
<DT><A HREF="org/jCharts/axisChart/ScatterPlotAxisChart.html#toHTML(org.jCharts.test.HTMLGenerator, java.lang.String, org.jCharts.imageMap.ImageMap)"><B>toHTML(HTMLGenerator, String, ImageMap)</B></A> - 
Method in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/ScatterPlotAxisChart.html">ScatterPlotAxisChart</A>
<DD>Enables the testing routines to display the contents of this Object.
<DT><A HREF="org/jCharts/axisChart/AxisChart.html#toHTML(org.jCharts.test.HTMLGenerator, java.lang.String, org.jCharts.imageMap.ImageMap)"><B>toHTML(HTMLGenerator, String, ImageMap)</B></A> - 
Method in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/AxisChart.html">AxisChart</A>
<DD>Enables the testing routines to display the contents of this Object.
<DT><A HREF="org/jCharts/test/HTMLChartTestable.html#toHTML(org.jCharts.test.HTMLGenerator, java.lang.String, org.jCharts.imageMap.ImageMap)"><B>toHTML(HTMLGenerator, String, ImageMap)</B></A> - 
Method in interface org.jCharts.test.<A HREF="org/jCharts/test/HTMLChartTestable.html">HTMLChartTestable</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/imageMap/ImageMapArea.html#toHTML(java.lang.String)"><B>toHTML(String)</B></A> - 
Method in class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/ImageMapArea.html">ImageMapArea</A>
<DD>Returns a 
<DT><A HREF="org/jCharts/properties/LegendAreaProperties.html#TOP"><B>TOP</B></A> - 
Static variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/LegendAreaProperties.html">LegendAreaProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html#toString()"><B>toString()</B></A> - 
Method in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ScaleCalculator.html">ScaleCalculator</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/processors/ScatterPlotDataProcessor.html#toString()"><B>toString()</B></A> - 
Method in class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/ScatterPlotDataProcessor.html">ScatterPlotDataProcessor</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/TextTag.html#toString()"><B>toString()</B></A> - 
Method in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTag.html">TextTag</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/test/StopWatch.html#toString()"><B>toString()</B></A> - 
Method in class org.jCharts.test.<A HREF="org/jCharts/test/StopWatch.html">StopWatch</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/BarValueGroup.html#totalDataValue"><B>totalDataValue</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/BarValueGroup.html">BarValueGroup</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html#totalItemAxisArea"><B>totalItemAxisArea</B></A> - 
Variable in class org.jCharts.axisChart.customRenderers.axisValue.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html">AxisValueRenderEvent</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/processors/TextProcessor.html#totalLabelWidths"><B>totalLabelWidths</B></A> - 
Variable in class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/TextProcessor.html">TextProcessor</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/TextTagGroup.html#totalLabelWidths"><B>totalLabelWidths</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTagGroup.html">TextTagGroup</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/AxisDataSeries.html#totalNumberOfDataSets"><B>totalNumberOfDataSets</B></A> - 
Variable in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/AxisDataSeries.html">AxisDataSeries</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/types/IntType.html#type"><B>type</B></A> - 
Variable in class org.jCharts.types.<A HREF="org/jCharts/types/IntType.html">IntType</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/types/Type.html"><B>Type</B></A> - class org.jCharts.types.<A HREF="org/jCharts/types/Type.html">Type</A>.<DD>Provides a common base class for all types.<DT><A HREF="org/jCharts/types/Type.html#Type(int)"><B>Type(int)</B></A> - 
Constructor for class org.jCharts.types.<A HREF="org/jCharts/types/Type.html">Type</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/types/Type.html#typeCode"><B>typeCode</B></A> - 
Variable in class org.jCharts.types.<A HREF="org/jCharts/types/Type.html">Type</A>
<DD>&nbsp;
</DL>
<HR>
<A NAME="_U_"><!-- --></A><H2>
<B>U</B></H2>
<DL>
<DT><A HREF="org/jCharts/properties/DataAxisProperties.html#useCommas"><B>useCommas</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/DataAxisProperties.html">DataAxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/DataAxisProperties.html#useCommas()"><B>useCommas()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/DataAxisProperties.html">DataAxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/DataAxisProperties.html#useDollarSigns"><B>useDollarSigns</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/DataAxisProperties.html">DataAxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/DataAxisProperties.html#useDollarSigns()"><B>useDollarSigns()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/DataAxisProperties.html">DataAxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/DataAxisProperties.html#usePercentSigns"><B>usePercentSigns</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/DataAxisProperties.html">DataAxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/DataAxisProperties.html#usePercentSigns()"><B>usePercentSigns()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/DataAxisProperties.html">DataAxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/scale/UserDefinedScaleCalculator.html#userDefinedIncrement"><B>userDefinedIncrement</B></A> - 
Variable in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/UserDefinedScaleCalculator.html">UserDefinedScaleCalculator</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/DataAxisProperties.html#userDefinedIncrement"><B>userDefinedIncrement</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/DataAxisProperties.html">DataAxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/scale/UserDefinedScaleCalculator.html#userDefinedMinimum"><B>userDefinedMinimum</B></A> - 
Variable in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/UserDefinedScaleCalculator.html">UserDefinedScaleCalculator</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/DataAxisProperties.html#userDefinedMinimumValue"><B>userDefinedMinimumValue</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/DataAxisProperties.html">DataAxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/DataAxisProperties.html#userDefinedScale"><B>userDefinedScale</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/DataAxisProperties.html">DataAxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/scale/UserDefinedScaleCalculator.html"><B>UserDefinedScaleCalculator</B></A> - class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/UserDefinedScaleCalculator.html">UserDefinedScaleCalculator</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/axisChart/axis/scale/UserDefinedScaleCalculator.html#UserDefinedScaleCalculator(double, double)"><B>UserDefinedScaleCalculator(double, double)</B></A> - 
Constructor for class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/UserDefinedScaleCalculator.html">UserDefinedScaleCalculator</A>
<DD>It would seem to make sense to pass in the min and the max, but we want to allow
 	people to use custom implementations which will be created when the AxisChart
 	constructor gets called and we will not have looped the data to find the min
 	and max yet.
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelRenderer.html#useVerticalLabels(boolean)"><B>useVerticalLabels(boolean)</B></A> - 
Method in class org.jCharts.axisChart.customRenderers.axisValue.renderers.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelRenderer.html">ValueLabelRenderer</A>
<DD>&nbsp;
</DL>
<HR>
<A NAME="_V_"><!-- --></A><H2>
<B>V</B></H2>
<DL>
<DT><A HREF="org/jCharts/properties/ChartProperties.html#validate"><B>validate</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/ChartProperties.html">ChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/StockChartDataSet.html#validate()"><B>validate()</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/StockChartDataSet.html">StockChartDataSet</A>
<DD>Performs a limited validation of data passed to Constructor.
<DT><A HREF="org/jCharts/chartData/ScatterPlotDataSet.html#validate()"><B>validate()</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/ScatterPlotDataSet.html">ScatterPlotDataSet</A>
<DD>Performs a limited validation of data.
<DT><A HREF="org/jCharts/chartData/DataSeries.html#validate()"><B>validate()</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/DataSeries.html">DataSeries</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/AxisDataSeries.html#validate()"><B>validate()</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/AxisDataSeries.html">AxisDataSeries</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/AxisChartDataSet.html#validate()"><B>validate()</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/AxisChartDataSet.html">AxisChartDataSet</A>
<DD>Performs a limited validation of data.
<DT><A HREF="org/jCharts/chartData/interfaces/IAxisPlotDataSet.html#validate()"><B>validate()</B></A> - 
Method in interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IAxisPlotDataSet.html">IAxisPlotDataSet</A>
<DD>Allows validations to be performed on the data structures
<DT><A HREF="org/jCharts/chartData/interfaces/IAxisDataSeries.html#validate()"><B>validate()</B></A> - 
Method in interface org.jCharts.chartData.interfaces.<A HREF="org/jCharts/chartData/interfaces/IAxisDataSeries.html">IAxisDataSeries</A>
<DD>Validates the DataSeries implementation.
<DT><A HREF="org/jCharts/properties/ChartProperties.html#validate()"><B>validate()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/ChartProperties.html">ChartProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/PieChart2DProperties.html#validate(org.jCharts.Chart)"><B>validate(Chart)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/PieChart2DProperties.html">PieChart2DProperties</A>
<DD>Validates the properties.
<DT><A HREF="org/jCharts/properties/StockChartProperties.html#validate(org.jCharts.chartData.interfaces.IAxisPlotDataSet)"><B>validate(IAxisPlotDataSet)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/StockChartProperties.html">StockChartProperties</A>
<DD>Validates the properties.
<DT><A HREF="org/jCharts/properties/ScatterPlotProperties.html#validate(org.jCharts.chartData.interfaces.IAxisPlotDataSet)"><B>validate(IAxisPlotDataSet)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/ScatterPlotProperties.html">ScatterPlotProperties</A>
<DD>Validates the properties.
<DT><A HREF="org/jCharts/properties/PointChartProperties.html#validate(org.jCharts.chartData.interfaces.IAxisPlotDataSet)"><B>validate(IAxisPlotDataSet)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/PointChartProperties.html">PointChartProperties</A>
<DD>Validates the properties.
<DT><A HREF="org/jCharts/properties/LineChartProperties.html#validate(org.jCharts.chartData.interfaces.IAxisPlotDataSet)"><B>validate(IAxisPlotDataSet)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/LineChartProperties.html">LineChartProperties</A>
<DD>Validates the properties.
<DT><A HREF="org/jCharts/properties/BarChartProperties.html#validate(org.jCharts.chartData.interfaces.IAxisPlotDataSet)"><B>validate(IAxisPlotDataSet)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/BarChartProperties.html">BarChartProperties</A>
<DD>Validates the properties.
<DT><A HREF="org/jCharts/properties/AxisChartTypeProperties.html#validate(org.jCharts.chartData.interfaces.IAxisPlotDataSet)"><B>validate(IAxisPlotDataSet)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisChartTypeProperties.html">AxisChartTypeProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AreaChartProperties.html#validate(org.jCharts.chartData.interfaces.IAxisPlotDataSet)"><B>validate(IAxisPlotDataSet)</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AreaChartProperties.html">AreaChartProperties</A>
<DD>Validates the properties.
<DT><A HREF="org/jCharts/chartData/PieChartDataSet.html#validateData(double[], java.lang.String[], java.awt.Paint[])"><B>validateData(double[], String[], Paint[])</B></A> - 
Method in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/PieChartDataSet.html">PieChartDataSet</A>
<DD>Perform some limited validation of the structure of the passed data.
<DT><A HREF="org/jCharts/axisChart/AxisChart.html#validateHorizontalPlot()"><B>validateHorizontalPlot()</B></A> - 
Method in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/AxisChart.html">AxisChart</A>
<DD>Currently, we only support the bar chart types being horizontal, and you can not have a
 	horizontally plotted bar chart in a combo chart.
<DT><A HREF="org/jCharts/imageMap/ImageMapArea.html#value"><B>value</B></A> - 
Variable in class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/ImageMapArea.html">ImageMapArea</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/imageMap/AreaShape.html#value"><B>value</B></A> - 
Variable in class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/AreaShape.html">AreaShape</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/types/PieLabelType.html#VALUE_LABELS"><B>VALUE_LABELS</B></A> - 
Static variable in class org.jCharts.types.<A HREF="org/jCharts/types/PieLabelType.html">PieLabelType</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelRenderer.html#valueChartFont"><B>valueChartFont</B></A> - 
Variable in class org.jCharts.axisChart.customRenderers.axisValue.renderers.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelRenderer.html">ValueLabelRenderer</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html#valueIndex"><B>valueIndex</B></A> - 
Variable in class org.jCharts.axisChart.customRenderers.axisValue.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html">AxisValueRenderEvent</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/PieChart2DProperties.html#valueLabelFont"><B>valueLabelFont</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/PieChart2DProperties.html">PieChart2DProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelRenderer.html#valueLabelPosition"><B>valueLabelPosition</B></A> - 
Variable in class org.jCharts.axisChart.customRenderers.axisValue.renderers.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelRenderer.html">ValueLabelRenderer</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelPosition.html"><B>ValueLabelPosition</B></A> - class org.jCharts.axisChart.customRenderers.axisValue.renderers.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelPosition.html">ValueLabelPosition</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelPosition.html#ValueLabelPosition(int)"><B>ValueLabelPosition(int)</B></A> - 
Constructor for class org.jCharts.axisChart.customRenderers.axisValue.renderers.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelPosition.html">ValueLabelPosition</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelRenderer.html"><B>ValueLabelRenderer</B></A> - class org.jCharts.axisChart.customRenderers.axisValue.renderers.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelRenderer.html">ValueLabelRenderer</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelRenderer.html#ValueLabelRenderer(boolean, boolean, boolean, int)"><B>ValueLabelRenderer(boolean, boolean, boolean, int)</B></A> - 
Constructor for class org.jCharts.axisChart.customRenderers.axisValue.renderers.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelRenderer.html">ValueLabelRenderer</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelRenderer.html#ValueLabelRenderer(boolean, boolean, int)"><B>ValueLabelRenderer(boolean, boolean, int)</B></A> - 
Constructor for class org.jCharts.axisChart.customRenderers.axisValue.renderers.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/renderers/ValueLabelRenderer.html">ValueLabelRenderer</A>
<DD><B>Deprecated.</B>&nbsp;<I></I>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html#valueX"><B>valueX</B></A> - 
Variable in class org.jCharts.axisChart.customRenderers.axisValue.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html">AxisValueRenderEvent</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html#valueY"><B>valueY</B></A> - 
Variable in class org.jCharts.axisChart.customRenderers.axisValue.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html">AxisValueRenderEvent</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/util/ChartFont.html#VERTICAL_ROTATION"><B>VERTICAL_ROTATION</B></A> - 
Static variable in class org.jCharts.properties.util.<A HREF="org/jCharts/properties/util/ChartFont.html">ChartFont</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/BarValueGroup.html#verticalPadding"><B>verticalPadding</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/BarValueGroup.html">BarValueGroup</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/BarChart.html#verticalPlot(org.jCharts.axisChart.AxisChart, org.jCharts.chartData.interfaces.IAxisChartDataSet, org.jCharts.properties.BarChartProperties, org.jCharts.properties.DataAxisProperties, java.awt.Graphics2D, java.awt.geom.Rectangle2D.Float, float)"><B>verticalPlot(AxisChart, IAxisChartDataSet, BarChartProperties, DataAxisProperties, Graphics2D, Rectangle2D.Float, float)</B></A> - 
Static method in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/BarChart.html">BarChart</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/ClusteredBarChart.html#verticalPlot(org.jCharts.axisChart.AxisChart, org.jCharts.chartData.interfaces.IAxisChartDataSet, org.jCharts.properties.BarChartProperties, org.jCharts.properties.DataAxisProperties, java.awt.Graphics2D, java.awt.geom.Rectangle2D.Float, float, float, float)"><B>verticalPlot(AxisChart, IAxisChartDataSet, BarChartProperties, DataAxisProperties, Graphics2D, Rectangle2D.Float, float, float, float)</B></A> - 
Static method in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/ClusteredBarChart.html">ClusteredBarChart</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/StackedBarChart.html#verticalPlot(org.jCharts.axisChart.AxisChart, org.jCharts.chartData.interfaces.IAxisChartDataSet, org.jCharts.properties.StackedBarChartProperties, org.jCharts.properties.DataAxisProperties, java.awt.Graphics2D, java.awt.geom.Rectangle2D.Float, float)"><B>verticalPlot(AxisChart, IAxisChartDataSet, StackedBarChartProperties, DataAxisProperties, Graphics2D, Rectangle2D.Float, float)</B></A> - 
Static method in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/StackedBarChart.html">StackedBarChart</A>
<DD>&nbsp;
</DL>
<HR>
<A NAME="_W_"><!-- --></A><H2>
<B>W</B></H2>
<DL>
<DT><A HREF="org/jCharts/chartData/processors/TextProcessor.html#widestLabel"><B>widestLabel</B></A> - 
Variable in class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/TextProcessor.html">TextProcessor</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/TextTagGroup.html#widestLabel"><B>widestLabel</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTagGroup.html">TextTagGroup</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/Legend.html#widestLabelAndColumnPadding"><B>widestLabelAndColumnPadding</B></A> - 
Variable in class org.jCharts.<A HREF="org/jCharts/Legend.html">Legend</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/Legend.html#width"><B>width</B></A> - 
Variable in class org.jCharts.<A HREF="org/jCharts/Legend.html">Legend</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/Chart.html#width"><B>width</B></A> - 
Variable in class org.jCharts.<A HREF="org/jCharts/Chart.html">Chart</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/TextTag.html#width"><B>width</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTag.html">TextTag</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/BarChartProperties.html#widthPercentage"><B>widthPercentage</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/BarChartProperties.html">BarChartProperties</A>
<DD>&nbsp;
</DL>
<HR>
<A NAME="_X_"><!-- --></A><H2>
<B>X</B></H2>
<DL>
<DT><A HREF="org/jCharts/Legend.html#x"><B>x</B></A> - 
Variable in class org.jCharts.<A HREF="org/jCharts/Legend.html">Legend</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/imageMap/ImageMapArea.html#x"><B>x</B></A> - 
Variable in class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/ImageMapArea.html">ImageMapArea</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/AxisChart.html#xAxis"><B>xAxis</B></A> - 
Variable in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/AxisChart.html">AxisChart</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/XAxis.html"><B>XAxis</B></A> - class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/XAxis.html">XAxis</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/axisChart/axis/XAxis.html#XAxis(org.jCharts.axisChart.AxisChart, int)"><B>XAxis(AxisChart, int)</B></A> - 
Constructor for class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/XAxis.html">XAxis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/imageMap/ImageMapArea.html#xAxisLabel"><B>xAxisLabel</B></A> - 
Variable in class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/ImageMapArea.html">ImageMapArea</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisProperties.html#xAxisLabelsAreVertical"><B>xAxisLabelsAreVertical</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisProperties.html">AxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisProperties.html#xAxisLabelsAreVertical()"><B>xAxisLabelsAreVertical()</B></A> - 
Method in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisProperties.html">AxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/AxisProperties.html#xAxisProperties"><B>xAxisProperties</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisProperties.html">AxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/AxisDataSeries.html#xAxisTitle"><B>xAxisTitle</B></A> - 
Variable in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/AxisDataSeries.html">AxisDataSeries</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/XAxis.html#xLabelFilter"><B>xLabelFilter</B></A> - 
Variable in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/XAxis.html">XAxis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/TextTag.html#xPosition"><B>xPosition</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTag.html">TextTag</A>
<DD>&nbsp;
</DL>
<HR>
<A NAME="_Y_"><!-- --></A><H2>
<B>Y</B></H2>
<DL>
<DT><A HREF="org/jCharts/Legend.html#y"><B>y</B></A> - 
Variable in class org.jCharts.<A HREF="org/jCharts/Legend.html">Legend</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/imageMap/ImageMapArea.html#y"><B>y</B></A> - 
Variable in class org.jCharts.imageMap.<A HREF="org/jCharts/imageMap/ImageMapArea.html">ImageMapArea</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/AxisChart.html#yAxis"><B>yAxis</B></A> - 
Variable in class org.jCharts.axisChart.<A HREF="org/jCharts/axisChart/AxisChart.html">AxisChart</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/YAxis.html"><B>YAxis</B></A> - class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/YAxis.html">YAxis</A>.<DD>&nbsp;<DT><A HREF="org/jCharts/axisChart/axis/YAxis.html#YAxis(org.jCharts.axisChart.AxisChart, int)"><B>YAxis(AxisChart, int)</B></A> - 
Constructor for class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/YAxis.html">YAxis</A>
<DD>Constructor
<DT><A HREF="org/jCharts/properties/AxisProperties.html#yAxisProperties"><B>yAxisProperties</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/AxisProperties.html">AxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartData/AxisDataSeries.html#yAxisTitle"><B>yAxisTitle</B></A> - 
Variable in class org.jCharts.chartData.<A HREF="org/jCharts/chartData/AxisDataSeries.html">AxisDataSeries</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html#yDelta"><B>yDelta</B></A> - 
Variable in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html">ChartScale</A>
<DD>* The difference between two points on adjacent grid lines.
<DT><A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html#yEnd"><B>yEnd</B></A> - 
Variable in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html">ChartScale</A>
<DD>* The value which the last grid line represents.
<DT><A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html#yMax"><B>yMax</B></A> - 
Variable in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html">ChartScale</A>
<DD>* The largest number in the dataset.
<DT><A HREF="org/jCharts/chartData/processors/ScatterPlotDataProcessor.html#yMax"><B>yMax</B></A> - 
Variable in class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/ScatterPlotDataProcessor.html">ScatterPlotDataProcessor</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html#yMin"><B>yMin</B></A> - 
Variable in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html">ChartScale</A>
<DD>* The smallest number in the dataset.
<DT><A HREF="org/jCharts/chartData/processors/ScatterPlotDataProcessor.html#yMin"><B>yMin</B></A> - 
Variable in class org.jCharts.chartData.processors.<A HREF="org/jCharts/chartData/processors/ScatterPlotDataProcessor.html">ScatterPlotDataProcessor</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/chartText/TextTag.html#yPosition"><B>yPosition</B></A> - 
Variable in class org.jCharts.chartText.<A HREF="org/jCharts/chartText/TextTag.html">TextTag</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html#yStart"><B>yStart</B></A> - 
Variable in class org.jCharts.axisChart.axis.scale.<A HREF="org/jCharts/axisChart/axis/scale/ChartScale.html">ChartScale</A>
<DD>* The value which the first grid line represents.
</DL>
<HR>
<A NAME="_Z_"><!-- --></A><H2>
<B>Z</B></H2>
<DL>
<DT><A HREF="org/jCharts/properties/PieChart2DProperties.html#zeroDegreeOffset"><B>zeroDegreeOffset</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/PieChart2DProperties.html">PieChart2DProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/properties/DataAxisProperties.html#zeroLineChartStroke"><B>zeroLineChartStroke</B></A> - 
Variable in class org.jCharts.properties.<A HREF="org/jCharts/properties/DataAxisProperties.html">DataAxisProperties</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/DataAxis.html#zeroLineCoordinate"><B>zeroLineCoordinate</B></A> - 
Variable in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/DataAxis.html">DataAxis</A>
<DD><B>Deprecated.</B>&nbsp;&nbsp;
<DT><A HREF="org/jCharts/axisChart/axis/Axis.html#zeroLineCoordinate"><B>zeroLineCoordinate</B></A> - 
Variable in class org.jCharts.axisChart.axis.<A HREF="org/jCharts/axisChart/axis/Axis.html">Axis</A>
<DD>&nbsp;
<DT><A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html#zeroLineCoordinate"><B>zeroLineCoordinate</B></A> - 
Variable in class org.jCharts.axisChart.customRenderers.axisValue.<A HREF="org/jCharts/axisChart/customRenderers/axisValue/AxisValueRenderEvent.html">AxisValueRenderEvent</A>
<DD>&nbsp;
</DL>
<HR>
<A HREF="#_A_">A</A> <A HREF="#_B_">B</A> <A HREF="#_C_">C</A> <A HREF="#_D_">D</A> <A HREF="#_E_">E</A> <A HREF="#_F_">F</A> <A HREF="#_G_">G</A> <A HREF="#_H_">H</A> <A HREF="#_I_">I</A> <A HREF="#_J_">J</A> <A HREF="#_L_">L</A> <A HREF="#_M_">M</A> <A HREF="#_N_">N</A> <A HREF="#_O_">O</A> <A HREF="#_P_">P</A> <A HREF="#_R_">R</A> <A HREF="#_S_">S</A> <A HREF="#_T_">T</A> <A HREF="#_U_">U</A> <A HREF="#_V_">V</A> <A HREF="#_W_">W</A> <A HREF="#_X_">X</A> <A HREF="#_Y_">Y</A> <A HREF="#_Z_">Z</A> 
<!-- ========== START OF NAVBAR ========== -->
<A NAME="navbar_bottom"><!-- --></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0">
<TR>
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">
  <TR ALIGN="center" VALIGN="top">
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
  </TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>

<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
&nbsp;PREV&nbsp;
&nbsp;NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
  <A HREF="index.html" TARGET="_top"><B>FRAMES</B></A>  &nbsp;
&nbsp;<A HREF="index-all.html" TARGET="_top"><B>NO FRAMES</B></A>  &nbsp;
&nbsp;
<SCRIPT>
  <!--
  if(window==top) {
    document.writeln('<A HREF="allclasses-noframe.html" TARGET=""><B>All Classes</B></A>');
  }
  //-->
</SCRIPT>
<NOSCRIPT>
<A HREF="allclasses-noframe.html" TARGET=""><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<!-- =========== END OF NAVBAR =========== -->

<HR>

</BODY>
</HTML>