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
|
%% wheelchart.tex
%% Copyright 2022-2024 Matthias Floré
%
% This work may be distributed and/or modified under the
% conditions of the LaTeX Project Public License, either version 1.3c
% of this license or (at your option) any later version.
% The latest version of this license is in
% http://www.latex-project.org/lppl.txt
% and version 1.3c or later is part of all distributions of LaTeX
% version 2005/12/01 or later.
%
% This work has the LPPL maintenance status `maintained'.
%
% The Current Maintainer of this work is Matthias Floré.
%
% This work consists of the files wheelchart.pdf, wheelchart.sty,
% wheelchart.tex and README.md.
\documentclass[a4paper,english,dvipsnames]{ltxdoc}
\usepackage[english]{babel}
\usepackage{graphicx}
\usepackage[a4paper,left=2.25cm,right=2.25cm,top=2.5cm,bottom=2.5cm]{geometry}
\usepackage{parskip}
\usepackage{iftex}
\ifluatex
\else
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\fi
\usepackage[page]{totalcount}%\totalpages or \getpagerefnumber{Thesourcecode}-1
\usepackage{mathtools}
\usepackage{amssymb}
\usepackage{interval}
\allowdisplaybreaks
\usepackage{tabularray}
\UseTblrLibrary{counter,siunitx}
\usepackage{listofitems}
\usepackage{pdflscape}
\usepackage{wheelchart}
\usetikzlibrary{decorations.markings,decorations.text,patterns}
\usepackage{tikzlings}
\input{pgfmanual-en-macros.tex}
%The environments commandmeta and commandmetameta and the macros \extractcommandmeta and \extractcommandmetameta below are modified from pgfmanual-en-macros.tex
\newenvironment{commandmeta}[2]{%
\begin{pgfmanualentry}%
\extractcommandmeta#1#2\@@%
\pgfmanualbody%
}%
{%
\end{pgfmanualentry}%
}
\def\extractcommandmeta#1#2\@@{%
\removeats{#1}%
\pgfmanualentryheadline{%
\pgfmanualpdflabel{\textbackslash\strippedat\meta{#2}}{}%
\declare{\expandafter\texttt\expandafter{\string#1\meta{#2}}}%
}%
\index{\strippedat\meta{#2} @\protect\myprintocmmand{\strippedat\meta{#2}}}%
}
\newenvironment{commandmetameta}[2]{%
\begin{pgfmanualentry}%
\extractcommandmetameta#1\@@#2\@@%
\pgfmanualbody%
}%
{%
\end{pgfmanualentry}%
}
\def\extractcommandmetameta#1\@@#2\@@{%
\pgfmanualentryheadline{%
\pgfmanualpdflabel{\textbackslash\meta{#1}\meta{#2}}{}%
\declare{\expandafter\texttt\expandafter{\textbackslash\meta{#1}\meta{#2}}}%
}%
\index{\meta{#1}\meta{#2} @\protect\myprintocmmand{\meta{#1}\meta{#2}}}%
}
\usepackage{codehigh}
\usepackage{fancyhdr}
\pagestyle{fancy}
\renewcommand{\headrulewidth}{0pt}
\addtolength{\headheight}{3pt}
\addtolength{\topmargin}{-3pt}
\fancyhead[L,R]{}
\fancyhead[C]{\iftotalpages\ifnum\thepage<\getpagerefnumber{Usage}\else \begin{tikzpicture}
\def\WCtotal{16.6}%21-<left=2.25cm>-<right=2.25cm>+2<gap polar=0.05>
\def\WCarrow{0.73}
\pgfkeys{
/wheelchart,
data=,
gap polar=0.05
}
\wheelchart[
etoc use name=wheelchart table of contents,
slices end arrow={\WCcount==\WCtotalcount?0:\WCarrow}{0},
slices start arrow={\WCcount==1?0:-\WCarrow}{0},
slices style={MidnightBlue!\fpeval{\thepage<\WCetocthepage||\thepage>=\WCetocthepage+\WCetocthenumberofpages?20:50}},
value=\WCetocthenumberofpages,
xbar={\WCtotal}{0.4}
]{}
\wheelchart[
at={({(\thepage -\getpagerefnumber{Usage})*\WCtotal/(\getpagerefnumber{Thesourcecode}-\getpagerefnumber{Usage})},0)},
slices end arrow={\thepage==\getpagerefnumber{Thesourcecode}-1?0:\WCarrow}{0},
slices start arrow={\thepage==\getpagerefnumber{Usage}?0:-\WCarrow}{0},
xbar={\WCtotal/(\getpagerefnumber{Thesourcecode}-\getpagerefnumber{Usage})}{0.4}
]{1/PineGreen/}
\end{tikzpicture}\fi\fi}
\fancyfoot[C]{\ifdefined\fancyfootdefaultbox\begin{tikzpicture}[scale=0.15]
\useasboundingbox (-3,-3) rectangle (3,3);
\node[inner sep=0pt] {\usebox{\fancyfootdefaultbox}};%reusing the box compiles faster
%\wheelchart[
% gap,
% middle=\thepage,
% slices style=Gray,
% slices style{\thepage}=Cyan,
% %slices style={
% % /utils/exec={\pgfmathsetmacro{\WCcolor}{\thepage==\WCcount?"Cyan":"Gray"}},
% % \WCcolor
% %},
% total count=\getpagerefnumber{Thesourcecode}-1%\totalpages
%]{}
\wheelchart[
gap,
middle=\thepage,
start angle={90-(\thepage-1)*(360/(\getpagerefnumber{Thesourcecode}-1))},%\totalpages
total angle={360/(\getpagerefnumber{Thesourcecode}-1)},%\totalpages
]{1/Cyan/}
\end{tikzpicture}\fi}
\usepackage{etoc}
\etocsettocstyle{\hypersetup{hidelinks}}{}
\etocglobaldefs
\usepackage[nottoc]{tocbibind}
\usepackage{imakeidx}
\makeindex[program=makeindex,columns=2,intoc=true]
\indexsetup{othercode={\thispagestyle{fancy}}}
%\PassOptionsToPackage{hyphens}{url}
\usepackage{xurl}
\usepackage[linktoc=all,pdfstartview=FitH,colorlinks=true,linkcolor=Mahogany,citecolor=ForestGreen,urlcolor=MidnightBlue,bookmarksnumbered=true]{hyperref}
\hypersetup{pdftitle={The wheelchart package},pdfauthor={Matthias Floré},pdfsubject={Manual},pdfkeywords={wheelchart}}
\setcounter{tocdepth}{2}
\setcounter{secnumdepth}{2}
\title{The \texttt{wheelchart} package\\[12pt]\large Diagrams with circular or other shapes using \tikzname{} and \LaTeX3}
\author{Matthias Floré}
\date{Version 4.0 (2024/07/28)}%\\[12pt]
\begin{document}
\iftotalpages%
\newsavebox{\fancyfootdefaultbox}%
\begin{lrbox}{\fancyfootdefaultbox}%note the % to avoid extra space
\begin{tikzpicture}[scale=0.15]
\useasboundingbox (-3,-3) rectangle (3,3);
\wheelchart[
gap,
slices style=Gray,
total count=\getpagerefnumber{Thesourcecode}-1%\totalpages
]{}
\end{tikzpicture}%note the % to avoid extra space
\end{lrbox}%
\fi%
\maketitle
\thispagestyle{fancy}
\begin{abstract}
\noindent This package is based on the package |tikz| (see \cite{TtTaPGFp}) and can be used to draw various kinds of diagrams such as bar charts, doughnut charts, infographics, pie charts, ring charts, square charts, sunburst charts, waffle charts and wheel charts.
\noindent It provides several options to customize the diagrams. It is also possible to specify a plot for the shape of the chart. Furthermore a legend can be added and the table of contents can be displayed as one of these diagrams.
\noindent Other tools for creating wheel charts or pie charts can be found in \cite{MpMP}, \cite{JhcIparowcltopotPGFm}, \cite{Tumfdb}, \cite{XdPCbupp} and \cite{RSVpaaMfp}.% This is the manual for version .
\end{abstract}
\section*{\contentsname}
\iftotalpages
\begin{codeexample}[preamble={%\usepackage[page]{totalcount}
\usepackage{etoolbox}
\usetikzlibrary{decorations.text}
\usepackage{etoc}
\etocsettocstyle{\hypersetup{hidelinks}}{}
\etocglobaldefs
\usepackage[linktoc=all]{hyperref}}]
\begin{tikzpicture}
\pgfkeys{
/wheelchart,
for loop start={\colorlet{WCcolor}{MidnightBlue!\fpeval{(\WCcount/\WCtotalcount)*100}}},
gap,
start angle=0,
value=\WCetocthenumberofpages
}
\wheelchart[
after slices={
\pgfdeclareradialshading{WCshading}{\pgfpoint{0cm}{0cm}}{
color(0bp)=(WCcolor);
color(16.66666bp)=(WCcolor);%2/3 * 25bp
color(20.83333bp)=(WCcolor!10);%2.5/3 * 25bp
color(25bp)=(WCcolor);
color(50bp)=(WCcolor)
}
\shade[even odd rule,shading=WCshading] (0,0) circle[radius=3] circle[radius=2];
},
data=,
etoc count total pages=\getpagerefnumber{Thesourcecode}-1,%\totalpages
etoc level=section,
etoc name=wheelchart table of contents,
slices style={
fill=none,
clip
}
]{}
\hypersetup{linkcolor=.}
\wheelchart[
anchor ysep{7,8}=30,
data={%
\textcolor{WCcolor}{%
\textbf{\Large\ifdefempty{\WCetocthenumber}{}{\WCetocthelinkednumber{} }\WCetocthelinkedname}}\\%
\textcolor{PineGreen}{page \WCetocthelinkedpage}%
},
etoc use name=wheelchart table of contents,
lines,
lines style=PineGreen,
middle={\LARGE The\\[10pt]\huge\texttt{wheelchart}\\[10pt]\LARGE package},
slice{\getrefnumber{Keys}}={
arc={
draw=PineGreen,
->
},
arc around text,
arc data=~Options for customization~,
arc data style={text color=PineGreen},
lines sep=0.5
},
slices style={
fill=none,
draw=PineGreen,
ultra thick
}
]{}
\end{tikzpicture}
\end{codeexample}
\fi
\section{Usage}\label{Usage}
The package |wheelchart| can be used by putting the following in the preamble.
\begin{codeexample}[code only]
\usepackage{wheelchart}
\end{codeexample}
The package |wheelchart| loads the package |tikz| and the \tikzname{} library |calc|.
Many examples in this manual use colors which can be defined by giving |dvipsnames| as an option to |\documentclass|.
\section{The main macro}
\begin{command}{\wheelchart\opt{\oarg{options}}\marg{wheelchart data}}
This command can be placed inside a |tikzpicture| environment. It draws a wheelchart with \meta{wheelchart data}. With the initial settings, the \meta{wheelchart data} is a comma separated list in which each item corresponds to one slice of the wheelchart and consists of data separated by a |/|. The precise syntax of the \meta{wheelchart data} will be explained below. The \meta{options} can be given with the keys described in Section \ref{Keys}.
\begin{command}{\exampleforthismanual}
To simplify the creation of examples in this manual, we define the \meta{wheelchart data} below.
\begin{codeexample}[]
\gdef\exampleforthismanual{%
14/Apricot/Apricot/{A, B, C, E, K}/north east lines/0/0/Gray,
40/LimeGreen/Lime/{B, C}/grid/0/15/Black,
20/Melon/Melon/{A, C}//0.5/0/none,
16/OliveGreen/Olive/{A, B, E, K}/dots/0/0/none,
28/Peach/Peach/{A, B, C, E, K}/fivepointed stars/0/0/Lavender,
32/Plum/Plum/{A, B, C, E, K}/bricks/0/-15/none,
50/WildStrawberry/Strawberry/{B, C, E, K}//1/0/DarkOrchid%
}
\end{codeexample}%pattern crosshatch,checkerboard
\end{command}
The default wheelchart with these data is shown below.
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\wheelchart{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\end{command}
\newpage%so that this section has its own block in the header
\section{Additional macros}
\begin{command}{\WCangle\opt{\oarg{number}}\marg{angle pos}\marg{angle shift}\marg{pos}\marg{sep}}
This command gives the angle in degrees of the point which is constructed as follows.
\begin{enumerate}
\item Consider the inner start angle and the inner end angle of slice \meta{number}. This \meta{number} is computed modulo the total number of slices. Form the convex combination of these two angles with parameter \meta{angle pos}. Then add \meta{angle shift}. Then consider the point with this angle and as radius the inner radius.
\item Consider the similar point constructed with the outer start angle, the outer end angle and the outer radius of slice \meta{number}. Then construct the straight line between those two points.
\item Consider the radius given by the command |\WCradius| with arguments \meta{number}, \meta{pos} and \meta{sep}.
\item Consider the intersection of the previous line and the arc with the previous radius. The command |\WCangle| gives the angle in degrees of this point.
\end{enumerate}
The default value for \meta{number} is |\WCcount|.
The command |\WCangle| can be used in the \meta{options} of the command |\wheelchart|. It can also be used after the command |\wheelchart|. In that case, the computed angles will correspond to the last |\wheelchart|.
The command |\WCangle| should not be used with a plot.
\begin{codeexample}[preamble={\usepackage{siunitx}}]
\begin{tikzpicture}
\sisetup{round-mode=places,round-precision=2}
\wheelchart[
counterclockwise,
data=slice \WCcount\\
inner start angle: \ang{\WCangle{0}{0}{0}{0}}\\
inner end angle: \ang{\WCangle{1}{0}{0}{0}}\\
outer start angle: \ang{\WCangle{0}{0}{1}{0}}\\
outer end angle: \ang{\WCangle{1}{0}{1}{0}}\\
inner radius: \WCradius{0}{0}\\
outer radius: \WCradius{1}{0},
gap=0.2,
inner radius{list}={2.2,2,1.8},
legend entry={
\fill[Dandelion] (\WCcoordinate[\WCcount +1]{inner start}) circle[radius=4pt];
\fill[RubineRed] (\WCcoordinate{inner end}) circle[radius=4pt];
\fill[YellowGreen] (\WCcoordinate[\WCcount +1]{outer start}) circle[radius=4pt];
\fill[RoyalPurple] (\WCcoordinate{outer end}) circle[radius=4pt];
\draw[->,dashed] (\WCpoint[\WCcount -1]{0.6}{0}{0.5}{0})--(\WCpoint{0.4}{0}{0.5}{0});
\draw[dashed] (\WCcoordinate{inner end})
--(\WCpoint{1}{0}{1}{\WClistsep}) coordinate (A);
\draw[dashed] (\WCcoordinate[\WCcount +1]{inner start})
--(\WCpoint[\WCcount +1]{0}{0}{1}{1}) coordinate (B);
\draw[<->] (A)--(B) node[\WClistpos,midway] {gap};
},
outer radius{list}={2.8,3,3.2},
slices style{list}={Gray!25,Gray!50,Gray!75},
start angle=0,
total count=3,
WClistpos={above left,below left,right},
WClistsep={1.2,1.2,0.6}
]{}
\node[align=left] (N) at (-1.5,-6.5) {%
The outer end angle of slice 2 is \ang{\WCangle[2]{1}{0}{1}{0}}.\\
The outer radius of slice 3 is \WCradius[3]{1}{0}.%
};
\draw[->] (\WCcoordinate[2]{outer end})--(N) node[left,pos=0.7,align=left]
{These can be referenced\\after the command \textbackslash wheelchart};
\draw[->] (\WCpoint[3]{0.2}{0}{1}{0})--(N);
\end{tikzpicture}
\end{codeexample}
\end{command}
\begin{command}{\WCcoordinate\opt{\oarg{number}}\marg{name}}
\begin{itemize}
\item If the key |discrete| is false then this command gives the coordinate positioned at \meta{name} of slice \meta{number}. The \meta{name} can be |inner end|, |inner start|, |outer end| or |outer start|.
\item If the key |discrete| is true then this command gives the coordinate positioned at point \meta{name} of slice \meta{number}. The \meta{name} can be an integer from 1 till the number of points of slice \meta{number}.
\end{itemize}
The \meta{number} is computed modulo the total number of slices.
The default value for \meta{number} is |\WCcount|.
The command |\WCcoordinate| can be used in the \meta{options} of the command |\wheelchart|. It can also be used after the command |\wheelchart|. In that case, the coordinate will correspond to the last |\wheelchart|.
\end{command}
\begin{command}{\WCcount}
This macro gives the current number of the slice in the \meta{wheelchart data}.
\end{command}
\begin{command}{\WCcountdiscrete}
If the key |discrete| is true then this macro gives the current number of the \tikzname{} pic from the key |discrete pic|.
\end{command}
\begin{command}{\WCdataangle}
This macro is similar to |\WCmidangle| but also takes into account the keys |data angle pos|, |data angle shift|, |data pos| and |data sep| (with respect to the key |counterclockwise|).
\end{command}
\begin{command}{\WCetocthelinkedname}
\end{command}
\begin{command}{\WCetocthelinkednumber}
\end{command}
\begin{command}{\WCetocthelinkedpage}
\end{command}
\begin{command}{\WCetocthename}
\end{command}
\begin{command}{\WCetocthenumber}
\end{command}
\begin{command}{\WCetocthenumberofpages}
\end{command}
\begin{command}{\WCetocthepage}
\end{command}
These macros are defined when the key |etoc level| is used.
\begin{command}{\WClegend}
If the key |legend row| is used then the resulting legend is stored in the macro |\WClegend|.
\end{command}
\begin{commandmeta}{\WClist}{name}
This macro is defined when the key |WClist|\meta{name} is used and gives the element in the \meta{list} given to the key |WClist|\meta{name} with as index |\WCcount| modulo the length of this \meta{list}. The \meta{name} is the one given to the key |WClist|\meta{name}.
\end{commandmeta}
\begin{command}{\WCmidangle}
This macro gives the angle in degrees modulo $360$ of the middle of the current slice.
\begin{codeexample}[width=10cm,preamble={\usepackage{siunitx}}]
\begin{tikzpicture}
\wheelchart[
data angle shift=\WCvarG,
data style={
rotate=\WCdataangle,
draw=Magenta,
fill=GreenYellow,
anchor=west,
text=Gray
},
inner data=\ang{\WCmidangle},
inner data style={
rotate=\WCmidangle,
font=\ttfamily
}
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\end{command}
\begin{command}{\WCperc}
This macro displays |\WCpercentagerounded| followed by a \unit{\percent} symbol.
If the package |siunitx| is loaded then the following code is used outside the key |arc data|. The package |siunitx| can be loaded before or after the package |wheelchart|.
\begin{codeexample}[code only]
\qty{\WCpercentagerounded}{\percent}
\end{codeexample}
If the package |siunitx| is not loaded then the following code is used outside the key |arc data|.
\begin{codeexample}[code only]
\WCpercentagerounded\,\%
\end{codeexample}
Inside the key |arc data|, the following code is used.
\begin{codeexample}[code only]
\WCpercentagerounded{\,}{\%}
\end{codeexample}
\end{command}
\begin{command}{\WCpercentage}
This macro gives the percentage of the current slice where the total is computed with the values of the key |value|. Note that rounding errors can occur.
\begin{codeexample}[width=10cm,preamble={\usepackage{siunitx}}]
\begin{tikzpicture}
\wheelchart[
data=\WCvarC\\\WCperc,
slices style={
\WCvarB!\fpeval{4*\WCpercentage}
}
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\end{command}
\begin{command}{\WCpercentagerounded}
This macro displays |\WCpercentage| rounded up to the number of decimals determined by the key |perc precision|.
\end{command}
\begin{command}{\WCpoint\opt{\oarg{number}}\marg{angle pos}\marg{angle shift}\marg{pos}\marg{sep}}
This command gives the point where the angle is determined by |\WCangle| and the radius by |\WCradius| computed with the given arguments.
The \meta{number} is computed modulo the total number of slices.
The default value for \meta{number} is |\WCcount|.
The command |\WCpoint| can be used in the \meta{options} of the command |\wheelchart|. It can also be used after the command |\wheelchart|. In that case, the point will correspond to the last |\wheelchart|.
The command |\WCpoint| should not be used with a plot.
\end{command}
\begin{command}{\WCradius\opt{\oarg{number}}\marg{pos}\marg{sep}}
This command gives the convex combination with parameter \meta{pos} of the inner radius of slice \meta{number} minus \meta{sep} and the outer radius of slice \meta{number} plus \meta{sep}.
The \meta{number} is computed modulo the total number of slices.
The default value for \meta{number} is |\WCcount|.
The command |\WCradius| can be used in the \meta{options} of the command |\wheelchart|. It can also be used after the command |\wheelchart|. In that case, the computed radius will correspond to the last |\wheelchart|.
The command |\WCradius| should not be used with a plot.
\end{command}
\begin{command}{\WCtotalcount}
This macro gives the total number of slices.
\end{command}
\begin{command}{\WCtotalnum}
This macro gives the sum of all values of the key |value|.
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\wheelchart[
data=\WCvarC: \WCvarA,
middle={%
\textbf{\huge Fruit}\\%
\WCtotalcount{} species\\%
\WCtotalnum{} pieces%
}
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\end{command}
\begin{command}{\WCvarA}
\end{command}
\begin{command}{\WCvarB}
\end{command}
\begin{command}{\WCvarC}
\end{command}
\begin{commandmetameta}{prefix}{name}
The \meta{wheelchart data} in the command |\wheelchart| is a list in which the items are separated by the value of the key |separator rows|. Each item in this list corresponds to one slice of the wheelchart and consists of data separated by the value of the key |separator columns|. With the initial settings, these individual data are interpreted as the macros |\WCvarA|, |\WCvarB|, |\WCvarC|, \dots, |\WCvarZ|, |\WCvarAA| and so on and can be accessed within the \meta{options} of the command |\wheelchart| if applicable.
The names of these macros can be specified with \meta{prefix} and \meta{name} which are determined by respectively the keys |header prefix| and |header|.
Initially, only |\WCvarA|, |\WCvarB| and |\WCvarC| are used for |value=\WCvarA|, |slices style=\WCvarB| and |data=\WCvarC|.
Other ways to specify data are by using for example a list such as an array with the package |tikz|, a list with the package |listofitems| or with the key |WClist|\meta{name}.
\begin{codeexample}[width=10cm,preamble={\usetikzlibrary{patterns}}]
\begin{tikzpicture}
\pgfkeys{
/wheelchart,
gap,
header={value,color,text,vitamins,pattern,explode,data angle shift,border},
header prefix=my,
value=1
}
\wheelchart[
data=,
radius={0.5}{3},
slices style={\mycolor!70,draw=\myborder,ultra thick,pattern=\mypattern,pattern color=\mycolor!70},
wheel data=\mytext,
%wheel data style={shift={(\WCmidangle:0.5)}},
%wheel data pos=0.5
]{\exampleforthismanual}
\wheelchart[
data=\textcolor{\mycolor}{Vitamins}\\\myvitamins,
radius={3.1}{4},
slices arrow={1}{0.2},
slices style=\mycolor
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\end{commandmetameta}
\section{Keys}\label{Keys}
The keys in this Section can be given as \meta{options} to the command |\wheelchart|.
If applicable, an optional non-empty \meta{range} between braces can be given to a key after the \meta{key name} except for the key |slice| where the \meta{range} is mandatory. This \meta{range} is processed with |\foreach| with the option |parse=true|. Hereafter the elements are processed with |\fp_eval:n|. If such a \meta{range} is given to a key then the options given to this key will only be applied to a slice if the number of the slice is in the \meta{range}. The \meta{range} only makes sense for a key which is processed for each slice. For example, the \meta{range} does not make sense for the key |middle|.
Furthermore, it is possible to add |{list}| after the \meta{key name}. Then a list can be given to the key. This list is processed analogously as how the key |WClist|\meta{name} works. Then the result is given to the key.
Below are some examples for the options \meta{range} and |{list}|.
\begin{itemize}
\item The following wheelchart can be obtained with the 3 possibilities below.
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\wheelchart[
data{list}={
An,example,where,some,of,the,
keys,are,given,using,a,list
},
slices style{list}={
Thistle,Orchid,Fuchsia
},
total count=12
]{}
\end{tikzpicture}
\end{codeexample}
\begin{codeexample}[code only,preamble={\usepackage{listofitems}}]
\readlist\WCcolors{Thistle,Orchid,Fuchsia}
\setsepchar{ }
\readlist\WCdata{An example where some of the keys are given using a list}
data={\WCdata[\WCcount]},
slices style={
/utils/exec={\pgfmathsetmacro{\WCcolornumber}{int(Mod({\WCcount-1},\WCcolorslen)+1)}},
\WCcolors[\WCcolornumber]
},
total count=\WCdatalen,
\end{codeexample}
\begin{codeexample}[code only]
slices style{1,4,...,\WCdatalen}=Thistle,
slices style{2,5,...,\WCdatalen}=Orchid,
slices style{3,6,...,\WCdatalen}=Fuchsia,
\end{codeexample}
\item The following wheelchart can be obtained with the 3 possibilities below.
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\wheelchart[
explode=\WCvarF,
pie
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\begin{codeexample}[code only]
explode={\WCcount==3?0.5:(\WCcount==7?1:0)},
\end{codeexample}
\begin{codeexample}[code only]
explode{3}=0.5,
explode{7}=1,
\end{codeexample}
\end{itemize}
\begin{key}{/wheelchart/after slices=\marg{code} (initially \normalfont empty)}
The \meta{code} given to this key will be executed after each slice of the wheelchart.
\end{key}
\begin{key}{/wheelchart/anchor xsep=\marg{angle} (initially 5)}
\end{key}
\begin{key}{/wheelchart/anchor ysep=\marg{angle} (initially 5)}
These keys determine the default anchor of the key |data| in the case that |lines ext=0|. Note that rounding errors can occur in the computation of the angle which is used to determine the default anchor according to Table \ref{tableanchorofthekeydatainthecasethatlinesextequaltozero}.
\begin{table}[ht]
\centering
\begin{tabular}{ll}
& Anchor of the key |data|\\
Angle (up to rounding errors) & in the case that |lines ext=0|\\\hline
$0$ & west\\
$90$ & south\\
$180$ & east\\
$270$ & north\\
For other angles not in $\{0,90,180,270\}$: & \\
$[0,\text{|anchor ysep|}]$ & west\\
$\ointerval{\text{|anchor ysep|}}{90-\text{|anchor xsep|}}$ & south west\\
$[90-\text{|anchor xsep|},90+\text{|anchor xsep|}]$ & south\\
$\ointerval{90+\text{|anchor xsep|}}{180-\text{|anchor ysep|}}$ & south east\\
$[180-\text{|anchor ysep|},180+\text{|anchor ysep|}]$ & east\\
$\ointerval{180+\text{|anchor ysep|}}{270-\text{|anchor xsep|}}$ & north east\\
$[270-\text{|anchor xsep|},270+\text{|anchor xsep|}]$ & north\\
$\ointerval{270+\text{|anchor xsep|}}{360-\text{|anchor ysep|}}$ & north west\\
$[360-\text{|anchor ysep|},360]$ & west\\
\end{tabular}
\caption{Anchor of the key \texttt{data} in the case that \texttt{lines ext=0}.}\label{tableanchorofthekeydatainthecasethatlinesextequaltozero}
\end{table}
\begin{codeexample}[width=10cm,preamble={\usepackage{siunitx}}]
\begin{tikzpicture}
\wheelchart[
anchor xsep=10,
anchor ysep=15,
data=\WCvarA,
data angle pos=\WClistdap,
inner data=\ang{\WClistvalue},
inner data angle pos=\WClistdap,
inner data sep=0.3,
lines=0.5,
lines angle pos=\WClistdap,
slices style{list}={
Maroon,SeaGreen,Maroon
},
value=\WClistvalue,
WClistdap={0.9,0.5,0.1},
WClistvalue={10,65,15,15,65,10}
]{%
south,
south west,
west,
west,
north west,
north,
north,
north east,
east,
east,
south east,
south%
}
\end{tikzpicture}
\end{codeexample}
The anchor of the key |data| can also be specified manually by using |data style={anchor=|\meta{anchor}|}|.
\end{key}
\begin{stylekey}{/wheelchart/arc=\marg{options} (initially \normalfont empty)}
If this key is set then an arc with the style determined by this key will be drawn following the arc or plot for a slice of the wheelchart.
\end{stylekey}
\begin{key}{/wheelchart/arc around line=\marg{number} (initially 1)}
The contents of the key |arc data| can consist of multiple lines separated by |\\|. If the key |arc around text| is true then the corresponding line is determined by \meta{number}.
\end{key}
\begin{key}{/wheelchart/arc around text=\opt{\meta{boolean}} (default true, initially false)}
If true then the arc with the style determined by the key |arc| will be split in two parts such that the gap between these two parts leaves space for the contents of line \meta{number} of the key |arc data| where \meta{number} is determined by the key |arc around line|. The space between the arc and the contents of the key |arc data| can be increased with for example |~| in |arc data=~text~|.
\end{key}
\begin{key}{/wheelchart/arc data=\marg{text} (initially \normalfont empty)}
This key contains the \meta{text} which will be placed following the arc or plot for a slice of the wheelchart using the decoration |text along path|. This requires the \tikzname{} library |decorations.text|. The style of this decoration is given as follows. First, the option |raise=-0.5ex| is given. Then |text align| is determined by the key |arc data align|. Thereafter, the style of the key |arc data style| is added.
The \meta{text} can consist of multiple lines separated by |\\|.
Braces or multiple pairs of braces are required around some macros.
\end{key}
\begin{key}{/wheelchart/arc data align=\mchoice{center,left,right} (initially center)}
This key determines the alignment of the contents of the key |arc data|.
\end{key}
\begin{key}{/wheelchart/arc data angle pos=\marg{value} (initially 0.5)}
\end{key}
\begin{key}{/wheelchart/arc data angle shift=\marg{angle} (initially 0)}
These keys determine the position of the contents of the key |arc data| similar as the corresponding keys for the key |data|.
\end{key}
\begin{key}{/wheelchart/arc data dir=\marg{value} (initially 1)}
This key determines the direction of the contents of the key |arc data|. If the \meta{value} is positive then the direction is the same as the direction of the slice. If the \meta{value} is negative then the direction is reversed. The values |1| and |-1| are recommended.
When the contents of the key |arc data| is placed, the corresponding domain for the arc or plot is estimated. A warning is given when the contents of the key |arc data| did (possibly) not fit. In this case, the absolute value of the key |arc data dir| should be increased.
If an error |Dimension too large| occurs then the absolute value of the key |arc data dir| should be increased or decreased depending on the situation.
\end{key}
\begin{key}{/wheelchart/arc data expand=\marg{expansion type} (initially n)}
The contents of the key |arc data| can consist of multiple lines separated by |\\|. This splitting is done with |\seq_set_split:Nnn| or a variant thereof depending on the \meta{expansion type} which determines the last letter in the signature. For most use cases, this \meta{expansion type} is |n|, |e| or |f|.
In the example below, it is necessary to use |arc data expand=e| and to place |\noexpand| before |\bfseries|.
\catcode`|=12%
\begin{codeexample}[width=10cm,preamble={\usetikzlibrary{decorations.text}}]
\begin{tikzpicture}
\wheelchart[
arc data=|\noexpand\bfseries|\WCvarC\\
\WCvarD,
arc data expand=e,
arc data pos=0.5,
data=,
start angle=135,
total angle=90
]{1/VioletRed/bold text/two\\lines}
\end{tikzpicture}
\end{codeexample}
\catcode`|=13%
\end{key}
\begin{key}{/wheelchart/arc data line sep factor=\marg{factor} (initially 1)}
The contents of the key |arc data| can consist of multiple lines separated by |\\|. The \meta{factor} determines the spacing between these lines.
\end{key}
\begin{key}{/wheelchart/arc data lines pos=\marg{factor} (initially 0.5)}
\end{key}
\begin{key}{/wheelchart/arc data lines shift=\marg{value} (initially 0)}
The positioning of the lines of the key |arc data| is determined by the index $k-1-\text{|arc data lines pos|}\cdot(N-1)+\text{|arc data lines shift|}$ where $N$ is the number of lines and $k\in\{1,\dots,N\}$.
\end{key}
\begin{key}{/wheelchart/arc data pos=\marg{value} (initially 1)}
\end{key}
\begin{key}{/wheelchart/arc data sep=\marg{value} (initially 1ex/1cm)}
These keys determine the position of the contents of the key |arc data| similar as the corresponding keys for the key |data|.
\end{key}
\begin{stylekey}{/wheelchart/arc data style=\marg{options} (initially \normalfont empty)}
This key accepts a list of keys which will be applied to the decoration for the key |arc data|.
\end{stylekey}
\begin{stylekey}{/wheelchart/arc first half=\marg{options} (initially \normalfont empty)}
If |arc around text| is true then the arc with the style determined by the key |arc| will be split in two parts. The style determined by the key |arc first half| will be appended to the first half of the arc.
\end{stylekey}
\begin{key}{/wheelchart/arc pos=\marg{value} (initially 1)}
This key determines the position of the arc similar as the corresponding key for the key |data|.
\end{key}
\begin{stylekey}{/wheelchart/arc second half=\marg{options} (initially \normalfont empty)}
This key is similar to the key |arc first half| but will be appended to the second half of the arc.
\end{stylekey}
\begin{key}{/wheelchart/arc sep=\marg{value} (initially 1ex/1cm)}
This key determines the position of the arc similar as the corresponding key for the key |data|. Note that the actual distance is given by |0.5ex/1cm| plus |arc sep| to match the option |raise=-0.5ex| given to the decoration for the key |arc data|.
\begin{codeexample}[width=10cm,preamble={\usetikzlibrary{decorations.text}}]
\begin{tikzpicture}
\wheelchart[
arc=\WCvarB,
arc around line=2,
arc around text,
arc data=slice \WCcount\\
{~}\WCvarC{~}\\
\WCperc,
arc data dir={\WCmidangle<180?1:-1},
arc data expand=f,
arc data pos=1.3,
arc data style={text color=\WCvarB},
arc first half=dashed,
arc pos=1.3,
arc second half=->,
data={}
]{\exampleforthismanual}
\useasboundingbox (0,0)
circle[radius=4.3];
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/at=\marg{point} (initially (0,0))}
This key defines the center of the wheelchart.
\end{key}
\begin{key}{/wheelchart/before slices=\marg{code} (initially \normalfont empty)}
The \meta{code} given to this key will be executed before each slice of the wheelchart.
\end{key}
\begin{key}{/wheelchart/caption=\marg{text} (initially \normalfont empty)}
This key contains the \meta{text} which will be placed below the wheelchart. The \meta{text} is placed in a node. The $x$ coordinate of this node is the $x$ coordinate of the center of the wheelchart, which is defined by the key |at|. In general, this is \emph{not} the same as the $x$ coordinate of the center of the |local bounding box| around the wheelchart. The $y$ coordinate of this node is at a value determined by the key |caption sep| below the south of the |local bounding box| around the wheelchart. The style of this node is given as follows. First, the options |anchor=north,align=center| are given. Thereafter, the style of the key |caption style| is added.
\end{key}
\begin{key}{/wheelchart/caption left=\marg{text} (initially \normalfont empty)}
This key contains the \meta{text} which will be placed below left of the wheelchart. The \meta{text} is placed in a node. This node is placed at a value determined by the key |caption left sep| below the south west of the |local bounding box| around the wheelchart. The style of this node is given as follows. First, the options |anchor=north west,align=left| are given. Thereafter, the style of the key |caption left style| is added.
\end{key}
\begin{key}{/wheelchart/caption left sep=\marg{value} (initially 0.5)}
The node where the contents of the key |caption left| is placed is at \meta{value} below the south west of the |local bounding box| around the wheelchart.
\end{key}
\begin{stylekey}{/wheelchart/caption left style=\marg{options} (initially \normalfont empty)}
This key accepts a list of keys which will be applied to the node where the contents of the key |caption left| is placed.
\end{stylekey}
\begin{key}{/wheelchart/caption sep=\marg{value} (initially 0.5)}
The $y$ coordinate of the node where the contents of the key |caption| is placed is at \meta{value} below the south of the |local bounding box| around the wheelchart.
\end{key}
\begin{stylekey}{/wheelchart/caption style=\marg{options} (initially \normalfont empty)}
This key accepts a list of keys which will be applied to the node where the contents of the key |caption| is placed.
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\wheelchart[
caption=Caption,
caption style={font=\scshape},
caption left=Caption left,
caption left style={font=\sffamily},
middle=\texttt{name=WCname},
name=WCname,
start half,
title=Title,
title style={font=\bfseries},
title left=Title left,
title left style={font=\em}
]{%
1/Goldenrod/Text\\with\\multiple\\lines,
1/Mahogany/Text which is longer than the short text,
1/JungleGreen/Another text,
1/RoyalBlue/Short text%
}
\draw[dashed] (WCname.south west) rectangle (WCname.north east);
\foreach\pos in {north,east,south,west}{
\node at (WCname.\pos) {\pos};
}
\end{tikzpicture}
\end{codeexample}
\end{stylekey}
\begin{stylekey}{/wheelchart/contour=\marg{options} (initially \normalfont empty)}
If this key is set then a contour with the style determined by this key will be drawn around the wheelchart. This requires a fixed inner and outer radius for all slices. This key does \emph{not} apply if a plot is used.
\end{stylekey}
\begin{key}{/wheelchart/counterclockwise=\opt{\meta{boolean}} (default true, initially false)}
If true, the wheelchart will be drawn counterclockwise instead of clockwise.
\end{key}
\begin{key}{/wheelchart/data=\marg{text} (initially \textbackslash WCvarC)}
This key contains the \meta{text} which will be placed at each slice of the wheelchart. This can be suppressed by using |data={}|. The \meta{text} is placed in a node. The style of this node is given as follows. First, the anchor is set following Table \ref{tableanchorofthekeydatainthecasethatlinesextequaltozero} and Table \ref{tableanchorofthekeydatainthecasethatlinesextdifferentfromzero}. Then the option |align=left| is added. Thereafter, the style of the key |data style| is added.
\end{key}
\begin{key}{/wheelchart/data angle pos=\marg{value} (initially 0.5)}
\end{key}
\begin{key}{/wheelchart/data angle shift=\marg{angle} (initially 0)}
\end{key}
\begin{key}{/wheelchart/data pos=\marg{value} (initially 1)}
\end{key}
\begin{key}{/wheelchart/data sep=\marg{value} (initially 0.2)}
If no plot is used then the position of the contents of the key |data| is determined as described for the commands |\WCangle| and |\WCradius|.
If a plot is used then the position of the contents of the key |data| is determined as follows.
\begin{enumerate}
\item The inner plot is evaluated in the point with as angle the convex combination with as parameter the key |data angle pos| of the inner start angle and the inner end angle, added with the key |data angle shift| in degrees (taking into account the key |counterclockwise|) and as radius the inner radius minus the key |data sep|.
\item The outer plot is evaluated in the similar point but using the outer start angle, the outer end angle and the outer radius plus the key |data sep|.
\item If $\text{|lines|}\neq 0$ then the values of the keys |lines sep| and |lines| are added to the radii above, in addition to the key |data sep|.
\item The contents of the key |data| is placed at the convex combination with as parameter the key |data pos| of the previous two points.
\end{enumerate}
\begin{codeexample}[]
\begin{tikzpicture}
\wheelchart[
data angle pos{2}=0.3,
data angle pos{6}=0.8,
data angle shift{3}=-0.1,
data angle shift{5}=0.1,
data pos=\WClistB,
data sep=0,
lines{1,2,4,6,7}=0.5,
lines{3,5}=1,
lines angle pos{1}=0.8,
lines angle shift{7}=-0.2,
lines ext=\WClistA,
lines ext dir{1,...,3}=left,
lines ext dir{4,...,7}=right,
lines ext fixed,
lines ext fixed left=-1,
lines ext fixed right=7,
lines pos=\WClistB,
lines sep=0.2*\WClistA,
xbar={6}{1.5},
WClistA={1,0},
WClistB={0,1},
wheel data=\WCperc,
wheel data pos=0.5,
wheel data pos{1}=1,
wheel data pos{4}=0,
wheel data sep=0.2
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{stylekey}{/wheelchart/data style=\marg{options} (initially \normalfont empty)}
This key accepts a list of keys which will be applied to the node where the contents of the key |data| is placed.
\end{stylekey}
\begin{key}{/wheelchart/discrete=\opt{\meta{boolean}} (default true, initially false)}
If true then \tikzname{} pics are placed with the \meta{code} determined by the key |discrete pic|. The number of pics is determined by the key |value|. It is required to set the key |discrete space at borders|.
\end{key}
\begin{key}{/wheelchart/discrete factor=\marg{value} (initially 1)}
The algorithm to place the \tikzname{} pics depends on the \meta{value}. The value |1| is recommended.
\end{key}
\begin{key}{/wheelchart/discrete partitioning=\mchoice{angle,radius} (initially radius)}
\begin{description}
\item[\texttt{angle}] In this case, the \tikzname{} pics are placed uniformly with respect to the angle.
\item[\texttt{radius}] In this case, the \tikzname{} pics are placed uniformly with respect to the radius.
\end{description}
These options are illustrated in the examples below.
\begin{codeexample}[]
\begin{tikzpicture}
\pgfkeys{
/wheelchart,
discrete,
discrete pic={\fill (0,0) circle[radius=3pt];},
discrete space at borders=false,
middle style={font=\ttfamily},
start angle=180,
total angle=180,
value=\WCvarA/2
}
\foreach\angle in {0,...,27}{
\draw ({180*(\angle/27)}:2)--({180*(\angle/27)}:3);
}
\wheelchart[
discrete partitioning=angle,
middle={discrete\\partitioning=angle}
]{\exampleforthismanual}
\draw[->] (\WCcoordinate[6]{16})--++(5:2) node[right] {point 16 of slice 6};
\foreach\radius in {0,...,3}{
\draw ({2+\radius/3},-5) arc[start angle=0,end angle=180,radius={2+\radius/3}];
}
\wheelchart[
at={(0,-5)},
middle={discrete\\partitioning=radius}
]{\exampleforthismanual}
\draw[->] (\WCcoordinate[7]{21})--++(5:2) node[right] {point 21 of slice 7};
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/discrete pic=\marg{code} (initially \normalfont empty)}
The \meta{code} determines the \tikzname{} pics.
\begin{codeexample}[width=10cm]
\begin{tikzpicture}[yscale=-1]
\wheelchart[
data=,
discrete,
discrete pic={
\fill[draw=black] (-0.3,-0.3)
rectangle +(0.6,0.6);
\node[black] at (0,0)
{\WCcountdiscrete};
},
discrete space at borders,
value=\WCvarA/2,
ybar={8}{8}
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/discrete sort=\mchoice{angle,radius} (initially angle)}
\begin{description}
\item[\texttt{angle}] In this case, the \tikzname{} pics are ordered with respect to the angle.
\item[\texttt{radius}] In this case, the \tikzname{} pics are ordered with respect to the radius.
\end{description}
These options are illustrated in the examples below.
\begin{codeexample}[]
\begin{tikzpicture}
\pgfkeys{
/wheelchart,
data=,
discrete,
discrete pic={\shade[ball color=\WCvarB] (0,0) circle[radius=4pt];},
discrete space at borders=false,
middle style={font=\ttfamily},
start angle=180,
total angle=180,
value=\WCvarA/2
}
\wheelchart[
legend columns=4,
legend row={\tikz\shade[ball color=\WCvarB] (0,0) circle[radius=4pt]; & \WCvarC & \WCperc},
legend={\node[anchor=north] at (3.5,-1) {\begin{tabular}{*{4}{l@{ }lr}}\WClegend\end{tabular}};},
middle={discrete sort=angle}
]{\exampleforthismanual}
\wheelchart[
at={(7,0)},
discrete sort=radius,
middle={discrete sort=radius}
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/discrete space at borders=\opt{\meta{boolean}} (default true)}
This key determines whether space is left at the begin and end where the \tikzname{} pics are placed. For example, suppose that $3$ \tikzname{} pics are placed at positions between $0$ and $1$. If |discrete space at borders| is true then these are placed at the positions $\frac{1}{6}$, $\frac{3}{6}$ and $\frac{5}{6}$. If |discrete space at borders| is false then these are placed at the positions $0$, $\frac{1}{2}$ and $1$.
This key deliberately has no initial value in order to force awareness of the consequences of the settings of this key. In the example below, the cyan \tikzname{} pics are aligned if |discrete space at borders| is false while this is \emph{not} the case if |discrete space at borders| is true.
\begin{codeexample}[]
\begin{tikzpicture}
\pgfkeys{
/wheelchart,
discrete,
discrete pic={\fill (0,0) circle[radius=4pt];},
middle style={font=\ttfamily},
start angle=180,
total angle=180
}
\draw[Red,ultra thick] (-3,0.15)--+(6,0);
\wheelchart[
discrete space at borders,
middle={discrete space at borders=true}
]{2/Cyan/,20/Gray/,2/Cyan/}
\draw[Green,ultra thick] (4,0)--+(6,0);
\wheelchart[
at={(7,0)},
discrete space at borders=false,
middle={discrete space\\at borders=false}
]{2/Cyan/,20/Gray/,2/Cyan/}
\end{tikzpicture}
\end{codeexample}
In the example below, the red and green \tikzname{} pics overlap if |discrete space at borders| is false while this is \emph{not} the case if |discrete space at borders| is true.
\begin{codeexample}[]
\begin{tikzpicture}
\pgfkeys{
/wheelchart,
discrete,
discrete pic={\fill (0,0) circle[radius=\WClistradius pt];},
middle style={font=\ttfamily}
}
\wheelchart[
discrete space at borders,
middle={discrete space\\at borders=true},
WClistradius=4
]{2/Red/,40/Gray/,2/Green/}
\wheelchart[
at={(7,0)},
discrete space at borders=false,
middle={discrete space\\at borders=false},
WClistradius={8,4,4}
]{2/Red/,40/Gray/,2/Green/}
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/domain=\marg{start}:\marg{end}}
This key sets |counterclockwise|, |start angle| to \meta{start} and |total angle| to $\text{\meta{end}}-\text{\meta{start}}$.
\end{key}
\begin{key}{/wheelchart/etoc code=\marg{code} (initially \textbackslash tableofcontents)}
The \meta{code} will be executed to build the \meta{wheelchart data} if the key |etoc level| is used.
\end{key}
\begin{key}{/wheelchart/etoc count total pages=\marg{number} (initially 0)}
If the key |etoc level| is used then the number of pages of the last section depends on \meta{number} which can for example represent the total number of pages in the document or the number of pages before the start of the Appendix or the Index. For example, |etoc count total pages=\totalpages| can be used. To provide the command |\totalpages|, this requires |\usepackage[page]{totalcount}|, which should normally be loaded \emph{before} the package |wheelchart| to give a correct result.
\end{key}
\begin{key}{/wheelchart/etoc level=\marg{level}}
If this key is used then the \meta{wheelchart data} of the command |\wheelchart| can be left empty and is defined to match the sections of the level defined by \meta{level}. Here, |\WCetocthelinkedname| corresponds to |\etocthelinkedname|, |\WCetocthelinkednumber| to |\etocthelinkednumber|, |\WCetocthelinkedpage| to |\etocthelinkedpage|, |\WCetocthename| to |\etocthename|, |\WCetocthenumber| to |\etocthenumber| and |\WCetocthepage| to |\etocthepage|. The package |etoc| is required to provide these commands. Furthermore, |\WCetocthenumberofpages| corresponds to the number of pages of the current section. For the last section, this depends on the value of the key |etoc count total pages|.
\end{key}
\begin{key}{/wheelchart/etoc name=\marg{name} (initially \normalfont empty)}
The resulting \meta{wheelchart data} from the key |etoc level| is stored globally and can be reused later with the key |etoc use name|.
\end{key}
\begin{key}{/wheelchart/etoc use name=\marg{name}}
If this key is used then the \meta{wheelchart data} is reused from where |etoc name| has the same \meta{name}.
\end{key}
\begin{key}{/wheelchart/expand list=\mchoice{false,once,true} (initially once)}
\begin{description}
\item[\texttt{false}] In this case, the \meta{wheelchart data} of the command |\wheelchart| will not be expanded.
\item[\texttt{once}] In this case, the \meta{wheelchart data} of the command |\wheelchart| will be expanded once.
\item[\texttt{true}] In this case, the \meta{wheelchart data} of the command |\wheelchart| will be fully expanded.
\end{description}
The following example illustrates the difference between the possible values of the key |expand list|.
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\def\WClistA{a,A}
\def\WClistB{b,B}
\def\WCdata{\WClistA,\WClistB}
\foreach\expandlist [count=\n] in
{false,once,true}{
\wheelchart[
at={({3.5*\n},0)},
data=\WCvarA,
expand list=\expandlist,
radius={0}{1},
slices style{list}={
Dandelion,CarnationPink,
SpringGreen,ProcessBlue
},
title={expand list=\\\expandlist},
title style={font=\ttfamily},
value=1
]{\WCdata}
}
\end{tikzpicture}
\end{codeexample}
The initial setting |expand list=once| works in most situations, even when commands such as |\ref|, |\cite| and |\textbf| are used such as in the example below.
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\wheelchart[
%expand list=false,%false also works
%expand list=true,%true doesn't work
middle={expand list=\\false %
{\normalfont or} once},
middle style={font=\large\ttfamily}
]{%
1/Emerald/Section \ref{Keys},
1/Sepia/Reference \cite{TtTaPGFp},
1/YellowOrange/{$e^{i\pi}=-1$},
1/Salmon/\textbf{Text}%
}
\end{tikzpicture}
\end{codeexample}
In the following example, the \meta{wheelchart data} from the previous example is stored in a macro. In this case, we have to use the initial setting |expand list=once|.
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\def\WClist{%
1/Emerald/Section \ref{Keys},
1/Sepia/Reference \cite{TtTaPGFp},
1/YellowOrange/{$e^{i\pi}=-1$},
1/Salmon/\textbf{Text}%
}
\wheelchart[
%expand list=false,
%expand list=true,
%false and true do not work
middle={expand list=once},
middle style={font=\large\ttfamily}
]{\WClist}
\end{tikzpicture}
\end{codeexample}
In the example below, we have to use |expand list=true|.
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\def\WCcolorsA{Yellow,Red}
\def\WCcolorsB{Green,Blue}
\wheelchart[
data=,
expand list=true,%false and once
%do not work
middle={expand list=true},
middle style={font=\large\ttfamily},
slices style=\WCvarA,
value=1
]{\WCcolorsA,\WCcolorsB}
\end{tikzpicture}
\end{codeexample}
In the example below, we have to use |expand list=true| and the command |\expandonce| from the package |etoolbox|.
\begin{codeexample}[width=10cm,preamble={\usepackage{etoolbox}}]
\begin{tikzpicture}
\def\WCsliceA{1/Brown/{\emph{A}: $\mu$}}
\def\WCsliceAfinal{\expandonce\WCsliceA}
\def\WCsliceB{2/Tan/{\textbf{B}: $\pi$}}
\def\WCsliceBfinal{\expandonce\WCsliceB}
\wheelchart[
expand list=true,%false and once
%do not work
middle={expand list=true},
middle style={font=\large\ttfamily}
]{\WCsliceAfinal,\WCsliceBfinal}
%\WCsliceA and \WCsliceB do not work
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/expand list items=\mchoice{false,once,true} (initially false)}
This key is similar to the key |expand list| but applies to the items in the \meta{wheelchart data} of the command |\wheelchart| which correspond to a slice of the wheelchart.
\begin{codeexample}[width=10cm]
\def\WClistA{a/b}%
\def\WClistB{c/d}%
\def\WCdata{\WClistA/\WClistB}%
\texttt{expand list items}%
\foreach\expandlistitems in
{false,once,true}{%
\wheelchart[
expand list=false,
expand list items=\expandlistitems,
legend={; \texttt{\expandlistitems}:
\WCvarA},
legend only,
value=1
]{\WCdata}%
}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/explode=\marg{value} (default 0.2, initially 0)}
This key will shift the slices of the wheelchart with \meta{value} with respect to the center of the wheelchart.
\end{key}
\begin{key}{/wheelchart/for loop end=\marg{code} (initially \normalfont empty)}
The slices of the wheelchart, the wheel lines determined by the key |wheel lines| and the different kinds of data are placed in for loops. If the key |for loop end| is set then the \meta{code} given to this key will be executed at the end of the body of these for loops.
\end{key}
\begin{key}{/wheelchart/for loop start=\marg{code} (initially \normalfont empty)}
This key is similar to the key |for loop end| but the \meta{code} given to this key will be executed at the start of the body of the for loops.
\end{key}
\begin{key}{/wheelchart/gap=\marg{value} (default 0.05, initially 0)}
The \meta{value} of this key defines half the distance between two slices of the wheelchart. This key does \emph{not} apply if a plot is used.
\end{key}
\begin{key}{/wheelchart/gap max angle=\marg{angle} (initially 180)}
If the value of the key |gap| is too large then a slice can partly disappear such as for example below when |gap max angle| is \ang{155}. The \meta{angle} of the key |gap max angle| determines the inner arc of the slice as illustrated in the examples below.
\begin{codeexample}[preamble={\usepackage{siunitx}}]
\begin{tikzpicture}
\foreach\gapmaxangle [count=\n] in {90,120,155}{
\begin{scope}[shift={({5*\n},0)}]
\wheelchart[
gap=1,
gap max angle=\gapmaxangle,
radius={0}{2},
total angle=315
]{1/CornflowerBlue!50/}
\fill (0,0) circle[radius=2pt];
\draw (0,0) circle[radius=2];
\draw (135:2)--(0:0)--(90:2);
\draw (0:0)--({135+\gapmaxangle}:{1/sin(\gapmaxangle)}) arc[start angle={135+\gapmaxangle},
end angle={450-\gapmaxangle},radius={1/sin(\gapmaxangle)}]--cycle;
\node at (45:0.6) {\ang{\gapmaxangle}};
\node at (180:0.6) {\ang{\gapmaxangle}};
\end{scope}
}
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/gap polar=\marg{value} (default 1, initially 0)}
The \meta{value} of this key defines half the polar gap in degrees between two slices of the wheelchart.
Note the difference between the keys |explode|, |gap| and |gap polar|. This is illustrated in the examples below.
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\wheelchart[
explode=1,
middle={\Large\texttt{explode}},
radius={1}{2},
slices style={
draw=Red,
fill=none,
ultra thick
},
total count=6
]{}
\draw (0,0) circle[radius=2];
\draw (0,0) circle[radius=3];
\end{tikzpicture}
\end{codeexample}
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\wheelchart[
gap=0.5,
legend entry={
\draw (\WCcoordinate{outer end})
--(\WCcoordinate[\WCcount -2]
{outer start});
\draw[<->] (\WCpoint{1}{0}{0.5}{0})
--(\WCpoint[\WCcount +1]
{0}{0}{0.5}{0});
},
middle={\Large\texttt{gap}},
slices style={
draw=Red,
fill=none,
ultra thick
},
total count=6
]{}
\draw (0,0) circle[radius=2];
\draw (0,0) circle[radius=3];
\end{tikzpicture}
\end{codeexample}
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\wheelchart[
gap polar=10,
legend entry{1,2,3}={
\draw (\WCcoordinate{outer start})
--(\WCcoordinate[\WCcount +3]
{outer start});
\draw (\WCcoordinate{outer end})
--(\WCcoordinate[\WCcount +3]
{outer end});
},
middle={\Large\texttt{gap polar}},
slices style={
draw=Red,
fill=none,
ultra thick
},
total count=6
]{}
\draw (0,0) circle[radius=2];
\draw (0,0) circle[radius=3];
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/gap radius=\marg{value} (default 0.05, initially 0)}
The \meta{value} of this key will be added to |inner radius| and substracted from |outer radius|.
\begin{codeexample}[width=10cm,preamble={\usepackage{siunitx}}]
\begin{tikzpicture}
\def\n{73}
\wheelchart[
data=,
gap radius=\WCvarC,
middle={\Huge\qty{\n}{\percent}}
]{%
\n/NavyBlue/0,
{100-\n}/BurntOrange/0.2%
}
\draw[Gray] (0,0) circle[radius=1.9];
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/header=\marg{list}}
The items in the \meta{list} determine the names in the macros |\|\meta{prefix}\meta{name}.
\end{key}
\begin{key}{/wheelchart/header prefix=\marg{prefix} (initially WC)}
The \meta{prefix} is used in the macros |\|\meta{prefix}\meta{name}.
\end{key}
\begin{key}{/wheelchart/inner data=\marg{text} (initially \normalfont empty)}
This key contains the \meta{text} which will be placed at each slice of the wheelchart. The \meta{text} is placed in a node. The style of this node is given as follows. First, the option |align=left| is given. Thereafter, the style of the key |inner data style| is added.
\end{key}
\begin{key}{/wheelchart/inner data angle pos=\marg{value} (initially 0.5)}
\end{key}
\begin{key}{/wheelchart/inner data angle shift=\marg{angle} (initially 0)}
\end{key}
\begin{key}{/wheelchart/inner data pos=\marg{value} (initially 0)}
\end{key}
\begin{key}{/wheelchart/inner data sep=\marg{value} (initially 0.2)}
These keys determine the position of the contents of the key |inner data| similar as the corresponding keys for the key |data|. No lines are drawn for the inner data.
\end{key}
\begin{stylekey}{/wheelchart/inner data style=\marg{options} (initially \normalfont empty)}
This key accepts a list of keys which will be applied to the node where the contents of the key |inner data| is placed.
\end{stylekey}
\begin{key}{/wheelchart/inner plot=\marg{code}}
The \meta{code} is a coordinate definition which will be used for the inner parts of the slices of the wheelchart. In the \meta{code}, |#1| and |#2| can be used where |#1| corresponds to the angle and |#2| corresponds to the radius. For example, a circle can be obtained with |inner plot={{#1}:{#2}}|.
\end{key}
\begin{stylekey}{/wheelchart/inner plot style=\marg{options} (initially \normalfont empty)}
This key accepts a list of keys which will be applied to the plot determined by the key |inner plot|.
\end{stylekey}
\begin{key}{/wheelchart/inner radius=\marg{value} (initially 2)}
The \meta{value} of this key defines the inner radius of the wheelchart.
\end{key}
\begin{key}{/wheelchart/legend=\marg{code} (initially \normalfont empty)}
The \meta{code} given to this key will be executed at the end of the command |\wheelchart|.
\end{key}
\begin{key}{/wheelchart/legend columns=\marg{number} (initially 1)}
If the key |legend row| is used then the maximum number of times that the \meta{code} given to the key |legend row| appears on one row is determined by \meta{number}. The environment (for example |tabular|, |tabularx| from the package |tabularx|, |tabulary| from the package |tabulary| or |tblr| from the package |tabularray|) which contains the macro |\WClegend| needs to have a suitable column specification according with \meta{number} and the key |legend row|.
\end{key}
\begin{key}{/wheelchart/legend entry=\marg{code} (initially \normalfont empty)}
The \meta{code} given to this key will be executed for each slice of the wheelchart.
\end{key}
\begin{key}{/wheelchart/legend only=\opt{\meta{boolean}} (default true, initially false)}
If true then only the legend is constructed. This does \emph{not} apply to the key |legend entry|.
In this case it is \emph{not} necessary to place the command |\wheelchart| in a |tikzpicture| environment.
\begin{codeexample}[width=10cm,preamble={\usepackage{tikzlings}}]
\wheelchart[
header={animal,accessory},
legend columns=3,
legend only,
legend row={\tikz[scale=0.3]{
\csname \WCanimal\endcsname[
signpost=\WCcount,
\WCaccessory
]} & \WCanimal},
legend={%
\begin{tabular}{*{3}{cl}}
\multicolumn{6}{c}{%
\WCtotalcount{} animals%
from the package%
\texttt{tikzlings}}\\\hline
\WClegend\hline
\end{tabular}%
},
separator columns={{ }},
separator rows=;,
value=1
]{%
bear basket;
bee book;
bug chef;
cat crown;
elephant football;
koala handbag;
owl hat;
panda icecream;
penguin milkshake;
snowman santa;
squirrel shovel%
}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/legend row=\marg{code}}
If this key is set then a legend consisting of rows for an environment such as |tabular|, |tabularx| from the package |tabularx|, |tabulary| from the package |tabulary| or |tblr| from the package |tabularray| is constructed using the \meta{code} for each slice of the wheelchart.
If a |tblr| environment from the package |tabularray| is used then the option |expand=\WClegend| needs to be given to this |tblr| environment and |\UseTblrLibrary{counter}| is required.
The maximum number of times that the \meta{code} appears on one row is determined by the key |legend columns|.
The code automatically inserts |&| and |\\| after the \meta{code} if necessary.
The result is stored in the macro |\WClegend|.
\begin{codeexample}[preamble={\usepackage{tabularray}
\UseTblrLibrary{counter,siunitx}}]
\begin{tikzpicture}
\wheelchart[
after slices={
\pgfdeclareradialshading{WCshading}{\pgfpoint{0cm}{0cm}}{
color(0bp)=(\WCvarB);
color(16.66666bp)=(\WCvarB);%2/3 * 25bp
color(20.83333bp)=(\WCvarB!10);%2.5/3 * 25bp
color(25bp)=(\WCvarB);
color(50bp)=(\WCvarB)
}
\shade[even odd rule,shading=WCshading] (0,0) circle[radius=3] circle[radius=2];
},
data=,
legend row={\tikz\fill[\WCvarB] (0,0) rectangle (0.3,0.3);%
& \WCvarC & \WCvarA & \WCpercentagerounded & \WCvarD},
legend={
\node[anchor=west] at (3.5,0) {%
\begin{tblr}[expand=\WClegend]{
colspec={llS[table-format=3.0]S[table-format=2.0{\,\unit{\percent}}]l},
column{1}={rightsep=0pt,appto={\ }},
column{2}={leftsep=0pt},
cell{2-Y}{4}={appto={\,\unit{\percent}}},
row{1}=guard
}
& Fruit & Value & Percentage & Vitamins\\\hline
\WClegend\hline
& \textbf{Total} & \WCtotalnum & & \\
\end{tblr}%
};
},
slices style={
fill=none,
clip
}
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/lines=\marg{value} (default 1, initially 0)}
The \meta{value} is used in the positioning of the contents of the key |data|. The end point of the lines is determined similarly but without the key |data sep|.
\begin{codeexample}[width=10cm,preamble={\usepackage{siunitx}}]
\begin{tikzpicture}
\def\WCtest#1#2{%
\pgfmathparse{
\WCpercentage>10?"#1":"#2"
}%
\pgfmathresult%
}
\wheelchart[
data=\WCtest{}{\WCperc},
lines={\WCpercentage>10?0:0.5},
lines style={dotted,thick},
pie,
slices style={
bottom color=\WCvarB,
top color=\WCvarB!80!black,
shading angle=\WCmidangle-90
},
wheel data=\WCtest{\WCperc}{}
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/lines angle pos=\marg{value} (initially 0.5)}
\end{key}
\begin{key}{/wheelchart/lines angle shift=\marg{angle} (initially 0)}
These keys are similar to the corresponding keys for |data| but determine the start point of the lines.
\end{key}
\begin{key}{/wheelchart/lines ext=\marg{value} (default 0.5, initially 0)}
If the \meta{value} of this key is nonzero and |lines ext fixed| is false then the lines between the wheelchart and the contents of the key |data| will be extended horizontally with a length defined by \meta{value}.
\end{key}
\begin{key}{/wheelchart/lines ext bottom dir=\mchoice{left,right} (initially right)}
\end{key}
\begin{key}{/wheelchart/lines ext dir=\mchoice{left,right}}
The default direction in which the lines between the wheelchart and the contents of the key |data| will be extended horizontally if $\text{|lines ext|}\neq 0$ is determined by Table \ref{tablelinesextdir} and illustrated in the following example. This can be overruled by giving an explicit value to this key. Note that rounding errors can occur in the computation of the angle which is used to determine the default direction according to Table \ref{tablelinesextdir}.
\begin{table}[ht]
\centering
\begin{tabular}{ll}
& The direction in which the lines between the\\
& wheelchart and the contents of the key |data| will\\
& be extended horizontally if $\text{|lines ext|}\neq 0$ and\\
Angle (up to rounding errors) & if the key |lines ext dir| is not used\\\hline
$\rinterval{0}{90-\text{|lines ext dirsep|}}$ & right\\
$[90-\text{|lines ext dirsep|},90+\text{|lines ext dirsep|}]$ & value of the key |lines ext top dir|\\
$\ointerval{90+\text{|lines ext dirsep|}}{270-\text{|lines ext dirsep|}}$ & left\\
$[270-\text{|lines ext dirsep|},270+\text{|lines ext dirsep|}]$ & value of the key |lines ext bottom dir|\\
$\ointerval{270+\text{|lines ext dirsep|}}{360}$ & right\\
\end{tabular}
\caption{The direction in which the lines between the wheelchart and the contents of the key \texttt{data} will be extended horizontally if $\text{\ttfamily lines ext}\neq 0$ and if the key \texttt{lines ext dir} is not used.}\label{tablelinesextdir}
\end{table}
\begin{codeexample}[width=10cm,preamble={\usetikzlibrary{patterns}}]
\begin{tikzpicture}[font=\ttfamily]
\def\WClinesextdirsep{10}
\wheelchart[
data{1,6}=lines ext top dir,
data{2}=right,
data{3,4}=lines ext bottom dir,
data{5}=left,
data angle pos=\WClistdap,
data sep=0,
inner data angle pos{1,4}=0.1,
inner data angle pos{3,6}=0.9,
inner data pos=1,
inner data sep=0.4,
inner data style={anchor=\WClistia},
lines=0.6,
lines{1,3}=0.2,
lines angle pos=\WClistdap,
lines ext,
lines ext dirsep=\WClinesextdirsep,
lines sep{list}={0.7,0.2,0.7},
lines style=->,
slice{1,3,4,6}={
arc=<->,
inner data=lines ext dirsep,
value=\WClinesextdirsep
},
slices style={
draw,
pattern=\WClistpattern
},
total count=6,
value{2,5}=180-2*\WClinesextdirsep,
WClistdap={0.9,0.2,0.1},
WClistia={west,east},
WClistpattern={
crosshatch,dots,crosshatch
}
]{}
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/lines ext dirsep=\marg{angle} (initially 0)}
This key determines half the angle in degrees of the segment to which the keys |lines ext bottom dir| and |lines ext top dir| apply.
\end{key}
\begin{key}{/wheelchart/lines ext fixed=\opt{\meta{boolean}} (default true, initially false)}
If true, the line between the wheelchart and the contents of the key |data| will be extended horizontally till the $x$ coordinate determined by the keys |lines ext fixed left| and |lines ext fixed right|.
\end{key}
\begin{key}{/wheelchart/lines ext fixed left=\marg{value}}
\end{key}
\begin{key}{/wheelchart/lines ext fixed right=\marg{value}}
If |lines ext fixed| is true, the lines are extended horizontally initially to the right till the $x$ coordinate $\text{|outer radius|}+\text{|lines sep|}+\text{|lines|}+\text{|lines ext|}$ and to the left till the opposite of this $x$ coordinate. This can be overruled by giving an explicit value to the key |lines ext fixed left| and/or |lines ext fixed right|.
\end{key}
\begin{key}{/wheelchart/lines ext left anchor=\marg{anchor} (initially mid east)}
\end{key}
\begin{key}{/wheelchart/lines ext right anchor=\marg{anchor} (initially mid west)}
\begin{table}[ht]
\centering
\begin{tabular}{ll}
The direction in which the lines between the & \\
wheelchart and the contents of the key |data| will & \\
be extended horizontally if $\text{|lines ext|}\neq 0$ & Anchor of the key |data|\\\hline
left & value of the key |lines ext left anchor|\\
right & value of the key |lines ext right anchor|\\
\end{tabular}
\caption{Anchor of the key \texttt{data} in the case that $\text{\ttfamily lines ext}\neq 0$.}\label{tableanchorofthekeydatainthecasethatlinesextdifferentfromzero}
\end{table}
\end{key}
\begin{key}{/wheelchart/lines ext top dir=\mchoice{left,right} (initially right)}
\end{key}
\begin{key}{/wheelchart/lines pos=\marg{value} (initially 1)}
\end{key}
\begin{key}{/wheelchart/lines sep=\marg{value} (initially 0.2)}
These keys are similar to the corresponding keys for |data| but determine the start point of the lines.
\end{key}
\begin{stylekey}{/wheelchart/lines style=\marg{options} (initially \normalfont empty)}
This key accepts a list of keys which will be applied to the lines drawn by the key |lines|.
\begin{codeexample}[width=10cm,preamble={\usepackage{siunitx}
\usetikzlibrary{decorations.markings}}]
\begin{tikzpicture}
\wheelchart[
data=\WCperc,
data angle pos{4}=0.2,
% data style={outer xsep=4pt},
legend columns=2,
legend row={\tikz\fill[\WCvarB] (0,0) circle[radius=0.15]; & \WCvarC & $\WCvarA$},
legend={
\node[anchor=north,draw,rounded corners,thick] at (0,-4.5) {%
\begin{tabular}{*{2}{l@{ }lr}}%
\WClegend%
\end{tabular}%
};
},
lines=0.5,
lines ext=1,
lines ext bottom dir=left,
lines ext dirsep=1,
lines ext fixed,
lines ext top dir=right,
lines sep=0,
lines style={
\WCvarB,
postaction=decorate,
decoration={
markings,
mark=at position 1 with {\fill[\WCvarB] (0,0) circle[radius=0.15];}
}
},
start angle=331.2
]{\exampleforthismanual}
\wheelchart[
data=,
radius={1.5}{2},
slices style=\WCvarB!70,
start angle=331.2
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\wheelchart[
data sep=0,
data style={
inner sep=0pt,
shift={(0,0.1)}
},
lines=0.5,
lines ext=1.2,
lines ext bottom dir=right,
lines ext dirsep=1,
%lines ext fixed,
lines ext left anchor=base west,
lines ext right anchor=base east,
lines ext top dir=left,
lines pos=0.5,
lines sep=0,
%lines style=\WCvarB,
start angle=331.2
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\begin{codeexample}[width=10cm,preamble={\usetikzlibrary{decorations.markings}}]
\begin{tikzpicture}
\wheelchart[
data=\WCvarC: \WCvarA,
data angle shift=\WCvarG,
data sep=0,
data style={draw=\WCvarB,fill=\WCvarB!20},
lines=1.5,
lines ext=1,
lines sep=-1,
lines style={
Black,
postaction=decorate,
decoration={
markings,
mark=at position 0 with {\fill[Black] (0,0) circle[radius=0.15];}
}
},
pie,
start angle=331.2
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\end{stylekey}
\begin{key}{/wheelchart/middle=\marg{text} (initially \normalfont empty)}
This key contains the \meta{text} which will be placed at the center of the wheelchart. The \meta{text} is placed in a node. The style of this node is given as follows. First, the option |align=center| is given. Thereafter, the style of the key |middle style| is added.
\end{key}
\begin{stylekey}{/wheelchart/middle fill=\marg{options} (initially \normalfont empty)}
If this key is set then the middle of the wheelchart will be filled with this style. This requires a fixed inner and outer radius for all slices. This key does \emph{not} apply if a plot is used.
\end{stylekey}
\begin{stylekey}{/wheelchart/middle style=\marg{options} (initially \normalfont empty)}
This key accepts a list of keys which will be applied to the node where the contents of the key |middle| is placed.
\end{stylekey}
\begin{key}{/wheelchart/name=\marg{name} (initially wheelchart@name)}
This key defines the \meta{name} of the |local bounding box| around the wheelchart.
\end{key}
\begin{key}{/wheelchart/outer plot=\marg{code}}
This key is similar to the key |inner plot| but determines the outer parts of the slices of the wheelchart.
\begin{codeexample}[]
\begin{tikzpicture}
\wheelchart[
inner plot={{#1}:{#2+0.2*(cos(#1*\WCtotalcount)+1)}},
outer plot={{#1}:{#2+0.2*(cos(#1*\WCtotalcount*2)+1)}}
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\catcode`|=12%
\begin{codeexample}[preamble={\usetikzlibrary{decorations.text}}]
\begin{tikzpicture}
\wheelchart[
arc data=slice \WCcount\\|\bfseries|\WCvarC,
arc data expand=f,
arc data pos=0.5,
arc data line sep factor=1.5,
data=,
domain=0:450,
inner plot={
{int((#1)/180)*5+(0.5-((-1)^Mod(int((#1)/180),2))*2.5)*cos(#1)},
{(2.5-((-1)^Mod(int((#1)/180),2))*0.5)*sin(#1)}
},
outer plot={
{int((#1)/180)*5+(-0.5-((-1)^Mod(int((#1)/180),2))*2.5)*cos(#1)},
{(2.5+((-1)^Mod(int((#1)/180),2))*0.5)*sin(#1)}
},
value=width("\WCvarC")
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\catcode`|=13%
\end{key}
\begin{stylekey}{/wheelchart/outer plot style=\marg{options} (initially \normalfont empty)}
This key accepts a list of keys which will be applied to the plot determined by the key |outer plot|.
\end{stylekey}
\begin{key}{/wheelchart/outer radius=\marg{value} (initially 3)}
The \meta{value} of this key defines the outer radius of the wheelchart.
\end{key}
\begin{key}{/wheelchart/perc precision=\marg{number} (initially 0)}
This key defines the number of decimals up to which the percentage in the macros |\WCperc| and |\WCpercentagerounded| is rounded. The rounding is performed with |l3fp|. With the initial setting, for example \num{49.5} and \num{50.5} are both rounded to 50. With |perc precision={0,1}|, \num{49.5} is rounded to 50 and \num{50.5} to 51.
\end{key}
\begin{key}{/wheelchart/pie=\opt{\meta{boolean}} (default true, initially false)}
If true, the inner radius of the wheelchart is set to |0|.
\end{key}
\begin{key}{/wheelchart/plot=\marg{code}}
This key sets |inner plot| and |outer plot|.
Since the \emph{let operation} from the \tikzname{} library |calc| is used, it is not possible to use the variable names |\n|, |\p|, |\x| and |\y| inside the \meta{code}.
Note that positions depend on the |domain| and \emph{not} on the length of the |plot|. For example below, |data angle pos=0.5|. The corresponding value of the |domain| is $1$ which gives the $x$ coordinate $1$ which is \emph{not} in the middle of the plot. Whereas |wheel data angle pos=sqrt(2)/2|. The corresponding value of the |domain| is $\sqrt{2}$ which gives the $x$ coordinate $2$ which is in the middle of the plot.
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\wheelchart[
domain=0:2,
plot={{(#1)^2},{#2}},
wheel data=text B,
wheel data angle pos=sqrt(2)/2
]{1/BrickRed/text A}
\end{tikzpicture}
\end{codeexample}
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\wheelchart[
plot={{#1}:{0.5*(sin(#1*3)+1)+#2}}
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\begin{codeexample}[]
\begin{tikzpicture}
\wheelchart[
domain=0:720,
gap polar=5,
plot={{#1*3.5/180},{sin(#1)-#2}},
radius={0}{2},
value=1,
wheel data=\WCcount,
wheel data pos=0.5
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\begin{codeexample}[width=10cm,preamble={\usetikzlibrary{decorations.text}}]
\begin{tikzpicture}
\wheelchart[
arc data=\WCvarC,
arc data dir={\WCmidangle<180?-1:1},
arc data pos=0.5,
data=,
domain=0:900,
plot={{#1}:
{(((#1)*pi/180+15)^2-1)/300
+(#2)-0.25}},
radius={0}{0.5},
slices arrow={1}{0},
value=sqrt(3+\WCcount*pi*(pi+6)/7)-
sqrt(3+(\WCcount-1)*pi*(pi+6)/7)
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\begin{codeexample}[]
\begin{tikzpicture}
\pgfkeys{
/wheelchart,
gap,
radius={1.3}{2},
start angle=180*(1-2/\WCtotalcount),
value=1
}
\wheelchart[
plot={{#1}:{(#2)*cos(180/\WCtotalcount)/cos(Mod(#1,{360/\WCtotalcount})-180/\WCtotalcount)}}
]{\exampleforthismanual}
\wheelchart[
at={(8,0)},
slices inner arrow={-cot(90*(1-2/\WCtotalcount))}{0},
slices outer arrow={cot(90*(1-2/\WCtotalcount))}{0}
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{stylekey}{/wheelchart/plot style=\marg{options} (initially \normalfont empty)}
This key sets |inner plot style| and |outer plot style|.
\end{stylekey}
\begin{key}{/wheelchart/radius=\marg{inner radius}\marg{outer radius}}
This key defines the inner and outer radius of the wheelchart.
\end{key}
\begin{key}{/wheelchart/samples=\marg{number} (initially 25)}
This key determines the \meta{number} of samples used in the plots.
\end{key}
\begin{key}{/wheelchart/separator columns=\marg{delimiter} (initially /)}
\end{key}
\begin{key}{/wheelchart/separator rows=\marg{delimiter} (initially ,)}
The \meta{wheelchart data} in the command |\wheelchart| is a list in which the items are separated by the value of the key |separator rows|. Each item in this list corresponds to one slice of the wheelchart and consists of data separated by the value of the key |separator columns|.
\end{key}
\begin{key}{/wheelchart/slices=\marg{path}}
If this key is set then the shape of the slices of the wheelchart is defined by \meta{path}.
In the following example, a |;| is placed at the beginning of the argument for the key |slices| because there is no path to be filled. Thereafter, a node is placed still within the argument for the key |slices|.
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\wheelchart[
data=,
radius={3.5}{3.5},
slices={
;
\node[
bottom color=\WCvarB!60,
top color=\WCvarB!10,
circle,
draw=gray,
minimum width=2.5cm
]
(WCslice\WCcount)
{\WCcount: \WCvarC};
},
slices style={},
start half,
value=1
]{\exampleforthismanual}
\foreach\n in {1,...,7}{
\pgfmathsetmacro{\k}{int(Mod(\n,7)+1)}
\draw[->,line width=2pt] (WCslice\n)
to[bend left=10] (WCslice\k);
}
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/slices angle pos=\marg{value} (initially 0.5)}
\end{key}
\begin{key}{/wheelchart/slices angle shift=\marg{angle} (initially 0)}
These keys determine the position of the slices if the key |slices| is used similar as the corresponding keys for the key |data|.
\end{key}
Below we list some keys to modify the shape of the slices. These keys only affect the shape of the slices and \emph{not} the computation of the inner and outer sides. In particular, these keys do \emph{not} affect the placement of |arc|, |arc data|, |data|, |inner data|, |lines|, |wheel data| and |wheel lines|. If this placement should be changed then the keys |inner plot| and |outer plot| can be used.
\begin{key}{/wheelchart/slices arc=\marg{value 1}\marg{value 2}}
This key sets |slices end arc| and |slices start arc| but uses the opposite of \meta{value 1} for |slices start arc|.
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\wheelchart[
slices arc={1}{0},
wheel data=\WCcount,
wheel data angle pos=1,
wheel data pos=0.5,
wheel data style={
circle,
fill=\WCvarB!50
}
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\wheelchart[
data=,
radius={1}{4.5},
slices arc={1}{0.66},
slices style=\WCvarA,
start half,
value=1,
wheel data={%
\textbf{Number \WCcount}\\%
\WCvarB%
},
wheel data pos=0.5,
wheel data style=White
]{%
Yellow/Some text A,
Orange/Some text B,
Red/Some text C,
Green/Some text D,
Blue/Some text E%
}
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/slices arc inner end=\opt{\meta{boolean}} (default true, initially false)}
If true then the keys |slices end arc|, |slices inner arc| and |slices start arc| are set such that the inner part and the end of each of the slices of the wheelchart form one arc and such that the start has the opposite curvature as the end.
\begin{codeexample}[width=10cm]
\begin{tikzpicture}[font=\scriptsize]
\foreach\a/\x in {0/0,45/4.5}{
\wheelchart[
at={(\x,0)},
data=,
gap,
radius={1}{2.2},
slices arc inner end,
slices outer angle shift=\a,
value=1,
wheel data=\WCvarC,
wheel data angle pos=0.6
]{\exampleforthismanual}
}
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/slices arc inner end start=\opt{\meta{boolean}} (default true, initially false)}
If true then the keys |slices end arc|, |slices inner arc| and |slices start arc| are set such that the inner part and the end of each of the slices of the wheelchart form one arc and such that the start has the same curvature as the end.
\begin{codeexample}[]
\begin{tikzpicture}
\foreach\a/\x in {-60/0,0/4.5,60/10}{
\wheelchart[
at={(\x,0)},
radius={0.66}{2},
slices arc inner end start,
slices inner angle shift=\a,
slices style={fill=none,draw=Turquoise,ultra thick},
total count=20
]{}
}
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/slices arc inner start=\opt{\meta{boolean}} (default true, initially false)}
If true then the keys |slices end arc|, |slices inner arc| and |slices start arc| are set such that the inner part and the start of each of the slices of the wheelchart form one arc and such that the end has the opposite curvature as the start.
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\wheelchart[
middle={%
slices arc\\%
inner start,\\%
slices inner\\%
angle shift=90%
},
middle style={font=\ttfamily},
slices arc inner start,
slices inner angle shift=90
]{%
1/Goldenrod/,
1/Mahogany/,
1/JungleGreen/,
1/RoyalBlue/%
}
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/slices arc inner start end=\opt{\meta{boolean}} (default true, initially false)}
If true then the keys |slices end arc|, |slices inner arc| and |slices start arc| are set such that the inner part and the start of each of the slices of the wheelchart form one arc and such that the end has the same curvature as the start.
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\wheelchart[
data=,
gap polar=5,
middle={%
slices arc\\%
inner start end%
},
middle style={font=\ttfamily},
slices arc inner start end,
value=1,
wheel data=\WCvarC,
wheel data pos=0.4
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/slices arc match=\marg{arg 1}\marg{num 1}\marg{num 2}\marg{num 3}\marg{arg 2}\marg{arg 3}\marg{arg 4}}
This key modifies the shape of the slices according to the $7$ arguments.
Here, \meta{arg 1} must be |end|, |inner|, |outer| or |start| and \meta{arg 2}, \meta{arg 3} and \meta{arg 4} must be |inner end|, |inner start|, |outer end| or |outer start|. For example, the key |slices arc inner end| sets |slices arc match={inner}{1}{-1}{1}{inner end}{inner start}{outer end}|.
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\foreach\a/\b/\x in
{end/1/0,inner/-1/4.8}{
\wheelchart[
at={(\x,0)},
radius={0.66}{2},
slices arc match=
{\a}{\b}{1}{1}{inner end}
{inner start}{outer end},
slices inner angle shift=60,
slices style={
fill=none,
draw=Turquoise
},
total count=20
]{}
}
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/slices arc outer end=\opt{\meta{boolean}} (default true, initially false)}
If true then the keys |slices end arc|, |slices outer arc| and |slices start arc| are set such that the outer part and the end of each of the slices of the wheelchart form one arc and such that the start has the opposite curvature as the end.
\end{key}
\begin{key}{/wheelchart/slices arc outer end start=\opt{\meta{boolean}} (default true, initially false)}
If true then the keys |slices end arc|, |slices outer arc| and |slices start arc| are set such that the outer part and the end of each of the slices of the wheelchart form one arc and such that the start has the same curvature as the end.
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\wheelchart[
data=,
gap polar=5,
middle={%
slices arc\\%
outer end start%
},
middle style={font=\ttfamily},
slices arc outer end start,
value=1,
wheel data=\WCvarC
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/slices arc outer start=\opt{\meta{boolean}} (default true, initially false)}
If true then the keys |slices end arc|, |slices outer arc| and |slices start arc| are set such that the outer part and the start of each of the slices of the wheelchart form one arc and such that the end has the opposite curvature as the start.
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\wheelchart[
data=,
gap=0.1,
slices arc inner start,
slices arc outer start,
slices style={
\WCvarB!50,
draw=\WCvarB,
ultra thick
},
value=1,
wheel data=\WCcount,
wheel data pos=0.8
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\begin{codeexample}[]
\begin{tikzpicture}
\foreach\a/\x in {0/0,45/5,90/10}{
\wheelchart[
at={(\x,0)},
data=,
gap,
radius={0.66}{2},
slices arc outer start,
slices outer angle shift=\a,
value=1
]{\exampleforthismanual}
}
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/slices arc outer start end=\opt{\meta{boolean}} (default true, initially false)}
If true then the keys |slices end arc|, |slices outer arc| and |slices start arc| are set such that the outer part and the start of each of the slices of the wheelchart form one arc and such that the end has the same curvature as the start.
\end{key}
\begin{key}{/wheelchart/slices Arrow=\marg{angle}}
This key sets |slices end| to |--(\WCpoint{1}{|\meta{angle}|}{0.5}{0})--(\WCpoint{1}{0}{0}{0})| and |slices start| to |--(\WCpoint{0}{|\meta{angle}|}{0.5}{0})--cycle|.
\end{key}
\begin{key}{/wheelchart/slices arrow=\marg{value 1}\marg{value 2}}
This key is similar to the key |slices arc| but draws an arrow.
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\wheelchart[
gap=0.3,
slices arrow={1}{-1}
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
The example below compares arrows constructed with the key |slices Arrow| and the key |slices arrow|. Using the key |slices Arrow|, the arrow tip lies on the circle but the line segments do \emph{not} have the same length. Using the key |slices arrow|, the arrow tip does \emph{not} lie on the circle but the line segments have the same length.
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\wheelchart[
gap=0.3,
middle=slices Arrow,
middle style={font=\ttfamily},
slices Arrow=10,
slices style={
fill=none,
draw=Bittersweet
},
total count=3
]{}
\draw (0,0) circle[radius=2.5];
\wheelchart[
at={(0,-7)},
gap=0.3,
middle=slices arrow,
middle style={font=\ttfamily},
slices arrow={1}{0},
slices style={
fill=none,
draw=CadetBlue
},
total count=3
]{}
\draw (0,-7) circle[radius=2.5];
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/slices end=\marg{path}}
This key determines the end of the slice. Initially, this is a line segment from the outer end to the inner end of the slice.
\end{key}
\begin{key}{/wheelchart/slices end arc=\marg{value 1}\marg{value 2}}
This key determines the end of the slice.
The effect of \meta{value 1} and \meta{value 2} is shown in the figure and the table below.
If $\text{\meta{value 1}}>0$ then the arc points outwards the slice. If $\text{\meta{value 1}}<0$ then the arc points inwards the slice. Here, outwards and inwards are relative to the orientation of the four-sided polygon formed by the points whose coordinates are determined by the inner and outer radius of the first slice and the start angle and the angle at the inverse of the key |samples| between the start angle and the end angle of the first slice. If the start angle and the end angle of the first slice are equal then the end angle of the last slice is used instead. If this test is inconclusive then the orientation is set according to the key |counterclockwise|.
If $\text{\meta{value 1}}=0$ then a line segment is drawn.
If \meta{value 1} and \meta{value 2} are negative then an arc is drawn which behaves the same as an arc with $\text{\meta{value 2}}=0$ and such that its radius matches the radius of the arc corresponding to setting \meta{value 1} to its opposite. This is illustrated in the table below.
\begin{center}
\begin{tikzpicture}[scale=3]
\wheelchart[
slices end arc={2}{0.5},
slices style={
fill=none,
draw=Cyan,
ultra thick
},
xbar={1}{1}
]{1//}
\draw[<->] (1,0.5)--(1.5,0.5) node[below,midway] {$a$};
\draw[<->] (1,0.5)--(1,0.75) node[left,midway] {$b$};
\draw[<->] (1,0.75)--(1,1) node[left,midway] {$c$};
\draw[<->] (0.75,0.5)--(0.75,1) node[left,midway] {$d$};
\node[right] at (2,0.5) {$\lvert\text{\meta{value 1}}\rvert=\frac{a}{b},\ \lvert\text{\meta{value 2}}\rvert=\frac{c}{d}$};
\end{tikzpicture}
\newcommand{\exampleslicesarc}[2]{%
\begin{tikzpicture}[baseline={(0,0.5)}]
\ifdim #1 pt<0pt
\ifdim #2 pt<0pt
\edef\r{\fpeval{0.25*((#2)-1)*(1/(#1)+(#1))}}
\wheelchart[
at={({1.5+sqrt((\r)^2-0.25)-(#1)*0.5*(1-(#2))-\r},0)},
slices start arc={-(#1)}{#2},
slices style={
fill=none,
draw=Goldenrod,
ultra thick
},
xbar={0.5}{1}
]{1//}
\fi
\fi
\wheelchart[
slices end arc={#1}{#2},
slices style={
fill=none,
draw
},
xbar={1.5}{1}
]{1//}
\useasboundingbox ($(current bounding box.south west)-(2pt,2pt)$) rectangle ($(current bounding box.north east)+(2pt,2pt)$);
\end{tikzpicture}%
}
\newcommand{\exampleslicesarcrow}[1]{$\text{\meta{value 1}}=#1$ & \exampleslicesarc{#1}{-0.5} & \exampleslicesarc{#1}{0} & \exampleslicesarc{#1}{0.5}\\}
\begin{tabular}{l|lll}
& $\text{\meta{value 2}}=-0.5$ & $\text{\meta{value 2}}=0$ & $\text{\meta{value 2}}=0.5$\\\hline
\exampleslicesarcrow{2}
\exampleslicesarcrow{1}
\exampleslicesarcrow{0}
\exampleslicesarcrow{-1}
\exampleslicesarcrow{-2}
\end{tabular}
\end{center}
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\wheelchart[
for loop start={
\definecolor{WCcolor}{wave}{
\fpeval{380+(\WCcount-1)*
340/(\WCtotalcount-1)}}
},
gap polar=180/\WCtotalcount,
radius={1.5}{3},
slices end arc={-0.6}{0},
slices start arc={1.2}{0},
slices style=WCcolor,
total count=20
]{}
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/slices end arrow=\marg{value 1}\marg{value 2}}
This key is similar to the key |slices end arc| but draws an arrow.
\end{key}
\begin{key}{/wheelchart/slices end to=\marg{value 1}\marg{value 2}}
This key sets the |to| path operation for the end of the slice. The angle at the inner side is determined by \meta{value 1} and the angle at the outer side is determined by \meta{value 2}.
\end{key}
\begin{key}{/wheelchart/slices inner=\marg{path}}
This key determines the inner part of the slice. Initially, this is an arc from the inner end to the inner start of the slice.
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\def\a{5}
\def\b{12}
\wheelchart[
data sep=0.3,
gap=0.1,
inner data=\WCcount,
inner data sep=2-2*cos(\b),
inner data style={
circle,
fill=\WCvarB!50
},
slices inner={
arc[
start angle=\WCangle{1}{0}{0}{0},
end angle=\WCangle{0.5}{\b}{0}{0},
radius=\WCradius{0}{0}
]
arc[
start angle=\WCmidangle-90,
end angle=\WCmidangle+90,
radius=2*sin(\b)
]
arc[
start angle=
\WCangle{0.5}{-\b}{0}{0},
end angle=\WCangle{0}{0}{0}{0},
radius=\WCradius{0}{0}
]
},
slices outer={
arc[
start angle=\WCangle{0}{0}{1}{0},
end angle=\WCangle{0.5}{-\a}{1}{0},
radius=\WCradius{1}{0}
]
--(\WCpoint{0.5}{0}{1}{0.3})
--(\WCpoint{0.5}{\a}{1}{0})
arc[
start angle=
\WCangle{0.5}{\a}{1}{0},
end angle=\WCangle{1}{0}{1}{0},
radius=\WCradius{1}{0}
]
},
slices style={
draw=\WCvarB,
fill=\WCvarB!25,
ultra thick
},
value=1
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/slices inner angle reduce=\marg{angle}}
This key sets |slices inner end angle shift| to $-\text{\meta{angle}}$ and |slices inner start angle shift| to \meta{angle}.
\end{key}
\begin{key}{/wheelchart/slices inner angle shift=\marg{angle}}
This key sets |slices inner end angle shift| and |slices inner start angle shift| to \meta{angle}.
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\wheelchart[
data=,
middle={%
slices inner\\%
angle shift=90%
},
middle style={font=\ttfamily},
slices inner angle shift=90
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\wheelchart[
data=,
gap,
radius={1}{3},
slices arc={0.5}{0},
slices inner angle shift=45,
value=1,
wheel data=\WCvarC,
wheel data angle pos=0.8
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\begin{codeexample}[]
\begin{tikzpicture}
\foreach\a/\x in {-60/0,0/5.6,60/10}{
\wheelchart[
at={(\x,0)},
radius={0.66}{2},
slices arc inner start,
slices inner angle shift=\a,
slices style={fill=\WClistcolors},
total count=40,
WClistcolors={RedOrange,none}
]{}
}
\end{tikzpicture}
\end{codeexample}
\begin{codeexample}[width=10cm]
\begin{tikzpicture}[font=\small]
\pgfkeys{
/wheelchart,
data=,
inner data=\WCcount,
inner data pos=0.1,
inner data sep=0,
radius={1}{2.4},
slices inner angle shift=
90-180/\WCtotalcount,
slices inner arc={0}{0},
value=1,
wheel data=\WCvarC
}
\wheelchart{\exampleforthismanual}
\wheelchart[
at={(4.8,0)},
slices outer arc={0}{0},
wheel data pos=0.58
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/slices inner arc=\marg{value 1}\marg{value 2}}
This key is similar to the key |slices end arc| but sets the inner part of the slice.
\end{key}
\begin{key}{/wheelchart/slices inner arc tangent=\opt{\meta{boolean}} (default true, initially false)}
If true then the key |slices inner arc| is set such that the arc is tangent to the end and start of the slice if possible. Note that this is not possible for all settings for keys such as |plot| and |slices inner angle shift|.
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\wheelchart[
counterclockwise,
data=,
gap=0.1,
middle=slices inner\\arc tangent,
middle style={font=\ttfamily},
slices inner arc tangent,
slices style={
draw=\WCvarB,
fill=\WCvarB!50,
ultra thick
},
value=1
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/slices inner arrow=\marg{value 1}\marg{value 2}}
This key is similar to the key |slices end arrow| but sets the inner part of the slice.
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\def\n{10}
\wheelchart[
radius={0}{1.5},
slices outer arrow={cot(180/\n)}{0},
slices style{list}={
BurntOrange,RedOrange
},
total count=\n
]{}
\wheelchart[
radius={3*cos(180/\n)}
{3*cos(180/\n)},
slices inner arrow={cot(360/\n)}{0},
slices outer arrow={cot(360/\n)}{0},
slices style{list}={
Dandelion,Goldenrod
},
start half,
total count=\n
]{}
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/slices inner end angle shift=\marg{angle} (initially 0)}
The end angle of the inner part of the slice will be modified such that the angle between the end and the inner part of the slice is shifted with \meta{angle} (taking into account the key |counterclockwise|). The behavior of this key depends on whether a plot is used.
\end{key}
\begin{key}{/wheelchart/slices inner start angle shift=\marg{angle} (initially 0)}
This key is similar to the key |slices inner end angle shift| but modifies the start angle of the inner part of the slice.
\end{key}
\begin{key}{/wheelchart/slices inner to=\marg{value 1}\marg{value 2}}
This key sets the |to| path operation for the inner part of the slice. The angle at the start is determined by \meta{value 1} and the angle at the end is determined by \meta{value 2}.
\end{key}
\begin{key}{/wheelchart/slices outer=\marg{path}}
This key determines the outer part of the slice. Initially, this is an arc from the outer start to the outer end of the slice.
\end{key}
\begin{key}{/wheelchart/slices outer angle reduce=\marg{angle}}
This key sets |slices outer end angle shift| to $-\text{\meta{angle}}$ and |slices outer start angle shift| to \meta{angle}.
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\wheelchart[
data=,
inner data=\WCcount,
inner data style={
circle,
fill=white
},
slices inner arrow={1}{0},
slices outer angle reduce=
180/\WCtotalcount,
slices outer arrow={0}{0},
value=1,
wheel data=\WCvarC,
wheel data style={
rotate=\WCmidangle-90
}
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/slices outer angle shift=\marg{angle}}
This key sets |slices outer end angle shift| and |slices outer start angle shift| to \meta{angle}.
\begin{codeexample}[width=10cm]
\begin{tikzpicture}[looseness=2]
\wheelchart[
data=,
inner data={\Large\WCcount},
inner data pos=1.1,
radius={1}{3},
slices arc inner end,
slices outer angle shift=80,
slices outer to={80}{80},
slices style={
bottom color=\WCvarB,
top color=\WCvarB!80!black,
shading angle=\WCmidangle-90
},
value=1,
wheel data=\WCvarC,
wheel data angle pos=0.4,
wheel data pos=0.8
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/slices outer arc=\marg{value 1}\marg{value 2}}
This key is similar to the key |slices end arc| but sets the outer part of the slice.
\end{key}
\begin{key}{/wheelchart/slices outer arc tangent=\opt{\meta{boolean}} (default true, initially false)}
If true then the key |slices outer arc| is set such that the arc is tangent to the end and start of the slice if possible. Note that this is not possible for all settings for keys such as |plot| and |slices inner angle shift|.
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\wheelchart[
data=,
gap=0.1,
middle=slices outer\\arc tangent,
middle style={font=\ttfamily},
slices outer arc tangent,
slices style={
draw=\WCvarB,
fill=\WCvarB!50,
ultra thick
},
value=1
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/slices outer arrow=\marg{value 1}\marg{value 2}}
This key is similar to the key |slices end arrow| but sets the outer part of the slice.
\begin{codeexample}[width=10cm]
\begin{tikzpicture}[font=\scriptsize]
\foreach\a/\x in
{1/0,{tan(180/\WCtotalcount)}/5}{
\wheelchart[
at={(\x,0)},
data=,
gap,
radius={0.66}{2},
slices outer arrow={\a}{0},
start half,
value=1,
wheel data=\WCvarC
]{\exampleforthismanual}
}
\end{tikzpicture}
\end{codeexample}
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\pgfkeys{
/wheelchart,
data=,
radius={1}{1.5},
value=1
}
\wheelchart[
slices inner arrow={0}{0}
]{\exampleforthismanual}
\wheelchart[
at={(3.25,0)},
slices outer arrow={0}{0}
]{\exampleforthismanual}
\wheelchart[
at={(6.5,0)},
slices inner arrow={0}{0},
slices outer arrow={0}{0}
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\foreach\r/\s/\a in
{3/0/0.5,2/15/1,1/30/0.7}{
\wheelchart[
radius={0.5}{\r},
slices outer arrow={\a}{0},
slices style={
fill=\WClistcolors!20,
draw=\WClistcolors,
ultra thick,
double
},
start half=\s,
total count=12,
WClistcolors={CarnationPink,Orchid}
]{}
}
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/slices outer end angle shift=\marg{angle} (initially 0)}
The end angle of the outer part of the slice will be modified such that the angle between the end and the inner (not the outer) part of the slice is shifted with \meta{angle} (taking into account the key |counterclockwise|). The behavior of this key depends on whether a plot is used.
\end{key}
\begin{key}{/wheelchart/slices outer start angle shift=\marg{angle} (initially 0)}
This key is similar to the key |slices outer end angle shift| but modifies the start angle of the outer part of the slice.
\end{key}
\begin{key}{/wheelchart/slices outer to=\marg{value 1}\marg{value 2}}
This key sets the |to| path operation for the outer part of the slice. The angle at the start is determined by \meta{value 1} and the angle at the end is determined by \meta{value 2}.
\begin{codeexample}[width=10cm]
\begin{tikzpicture}[looseness=3]
\wheelchart[
data=,
radius={0}{2.5},
slices arc={0.4}{0},
slices outer to={70}{70},
start half,
value=1,
wheel data=\WCvarC,
wheel data pos=1
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/slices pos=\marg{value} (initially 0.5)}
This key determines the position of the slices if the key |slices| is used similar as the corresponding key for the key |data|.
\end{key}
\begin{stylekey}{/wheelchart/slices scope=\marg{options} (initially \normalfont empty)}
This key accepts a list of keys which will be applied to the scope in which the slices of the wheelchart, the wheel lines determined by the key |wheel lines| and the different kinds of data are placed.
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\wheelchart[
data=,
radius={3.9}{4.5},
slices inner arc={0}{0},
slices outer angle reduce=5*90/7,
slices outer arc={0}{0},
slices scope={
shift={
($(90+\WCmidangle:0.559572)
+(\WCmidangle:-1.16196)$)
}
},
value=1,
wheel data=\WCvarC,
wheel data pos=0,
wheel data style={
rotate=\WCmidangle-90
}
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\begin{codeexample}[width=10cm,preamble={\usepackage{siunitx}}]
\begin{tikzpicture}
\wheelchart[
data=\WCvarC\\%
\qty{\fpeval{\WCvarA/2}}{\percent},
radius={0.5}{0.5+0.1*\WCvarA},
slices inner arc tangent,
slices outer angle reduce=
180/\WCtotalcount,
slices outer arc tangent,
slices scope={shift={(\WCmidangle:
{-cos(180/\WCtotalcount)/2})}},
value=1
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\end{stylekey}
\begin{key}{/wheelchart/slices sep=\marg{value} (initially 0)}
This key determines the position of the slices if the key |slices| is used similar as the corresponding key for the key |data|.
\end{key}
\begin{key}{/wheelchart/slices start=\marg{path}}
This key determines the start of the slice. Initially, this is a line segment from the inner start to the outer start of the slice.
\end{key}
\begin{key}{/wheelchart/slices start arc=\marg{value 1}\marg{value 2}}
This key is similar to the key |slices end arc| but sets the start of the slice.
\end{key}
\begin{key}{/wheelchart/slices start arrow=\marg{value 1}\marg{value 2}}
This key is similar to the key |slices end arrow| but sets the start of the slice.
\end{key}
\begin{key}{/wheelchart/slices start to=\marg{value 1}\marg{value 2}}
This key sets the |to| path operation for the start of the slice. The angle at the inner side is determined by \meta{value 1} and the angle at the outer side is determined by \meta{value 2}.
\end{key}
\begin{stylekey}{/wheelchart/slices style=\marg{options} (initially \textbackslash WCvarB)}
This key defines the style of the slices of the wheelchart.
\end{stylekey}
\begin{key}{/wheelchart/slices to=\marg{value 1}\marg{value 2}}
This key sets |slices end to| and |slices start to| but uses the opposite respective values for |slices start to|.
\begin{codeexample}[width=10cm]
\begin{tikzpicture}[looseness=2]
\wheelchart[
radius={1}{3},
slices inner angle shift=90,
slices inner arc={0}{0},
slices outer to={70}{70},
slices style{list}={Maroon,Salmon},
slices to={30}{30},
total count=6
]{}
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{stylekey}{/wheelchart/slice\marg{range}=\marg{options} (initially \normalfont empty)}
This key accepts a list of keys from the wheelchart key family. The \meta{range} is mandatory and must be non-empty. It is processed with |\foreach| with the option |parse=true|. Hereafter the elements are processed with |\fp_eval:n|. The \meta{options} will only be applied to a slice if the number of the slice is in the \meta{range}. The \meta{range} only makes sense for a key which is processed for each slice. For example, the \meta{range} does not make sense for the key |middle|.
\end{stylekey}
\begin{key}{/wheelchart/start angle=\marg{angle} (initially 90)}
This key defines the \meta{angle} in degrees at which the first slice of the wheelchart starts.
\end{key}
\begin{key}{/wheelchart/start half=\marg{angle} (default 90)}
This key sets the start angle such that the middle of the first slice of the wheelchart is positioned at \meta{angle} in degrees.
\end{key}
\begin{key}{/wheelchart/title=\marg{text} (initially \normalfont empty)}
This key contains the \meta{text} which will be placed above the wheelchart. The \meta{text} is placed in a node. The $x$ coordinate of this node is the $x$ coordinate of the center of the wheelchart, which is defined by the key |at|. In general, this is \emph{not} the same as the $x$ coordinate of the center of the |local bounding box| around the wheelchart. The $y$ coordinate of this node is at a value determined by the key |title sep| above the north of the |local bounding box| around the wheelchart. The style of this node is given as follows. First, the options |anchor=south,align=center| are given. Thereafter, the style of the key |title style| is added.
\end{key}
\begin{key}{/wheelchart/title left=\marg{text} (initially \normalfont empty)}
This key contains the \meta{text} which will be placed above left of the wheelchart. The \meta{text} is placed in a node. This node is placed at a value determined by the key |title left sep| above the north west of the |local bounding box| around the wheelchart. The style of this node is given as follows. First, the options |anchor=south west,align=left| are given. Thereafter, the style of the key |title left style| is added.
\end{key}
\begin{key}{/wheelchart/title left sep=\marg{value} (initially 0.5)}
The node where the contents of the key |title left| is placed is at \meta{value} above the north west of the |local bounding box| around the wheelchart.
\end{key}
\begin{stylekey}{/wheelchart/title left style=\marg{options} (initially \normalfont empty)}
This key accepts a list of keys which will be applied to the node where the contents of the key |title left| is placed.
\end{stylekey}
\begin{key}{/wheelchart/title sep=\marg{value} (initially 0.5)}
The $y$ coordinate of the node where the contents of the key |title| is placed is at \meta{value} above the north of the |local bounding box| around the wheelchart.
\end{key}
\begin{stylekey}{/wheelchart/title style=\marg{options} (initially \normalfont empty)}
This key accepts a list of keys which will be applied to the node where the contents of the key |title| is placed.
\end{stylekey}
\begin{key}{/wheelchart/total angle=\marg{angle} (initially 360)}
This key defines the total \meta{angle} in degrees of the wheelchart.
\end{key}
\begin{key}{/wheelchart/total count=\marg{number}}
If this key is set then the number of slices of the wheelchart is determined by \meta{number}. Moreover, |\WCvarA| is defined as |1| and |\WCvarB| and |\WCvarC| are defined to be empty.
\begin{codeexample}[width=10cm,preamble={\usepackage{siunitx}}]
\begin{tikzpicture}
\def\n{57}
\wheelchart[
gap=0.015,
middle={\Huge\qty{\n}{\percent}},
slices style=Gray,
slices style{1,...,\n}=Cyan,
total count=100
]{}
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/triangle proportional area=\marg{width}\marg{height}}
This key configures the plot such that a triangular shape is obtained. The value is proportional to the area and \emph{not} to the height. Moreover, it sets |samples=2| and |wheel data pos=0.5|. The point $(0,0)$ is at the top. This can be shifted with the key |at|.
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\wheelchart[
triangle proportional area={5}{4},
value=1
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/triangle proportional height=\marg{width}\marg{height}}
This key configures the plot such that a triangular shape is obtained. The value is proportional to the height and \emph{not} to the area. Moreover, it sets |samples=2| and |wheel data pos=0.5|. The point $(0,0)$ is at the top. This can be shifted with the key |at|.
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\wheelchart[
triangle proportional height={5}{4},
value=1
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/value=\marg{value} (initially \textbackslash WCvarA)}
This key defines the \meta{value} which corresponds to the size of each slice of the wheelchart.
\end{key}
\begin{key}{/wheelchart/WClist\meta{name}=\marg{list}}
This key locally defines a macro |\WClist|\meta{name} which gives the element in the \meta{list} with as index |\WCcount| modulo the length of the \meta{list}. The \meta{list} is expanded once and processed using a |clist|. In particular, blank arguments are ignored. An empty argument in the \meta{list} can be obtained with |{}|. Items containing a |,| can be obtained by surrounding it with |{| and |}| such as |WClistA={{a,b},{c,d}}|.
If |\def\mylist{a,b,c}| and |WClistA=\mylist| then |\WClistA| gives |a,b,c| for each slice. On the other hand, if |WClistA/.expanded=\mylist| then |\WClistA| alternates between |a|, |b| and |c|.
\end{key}
\begin{key}{/wheelchart/wheel data=\marg{text} (initially \normalfont empty)}
This key contains the \meta{text} which will be placed on top of each slice of the wheelchart. The \meta{text} is placed in a node. The style of this node is given as follows. First, the option |align=left| is given. Thereafter, the style of the key |wheel data style| is added.
\end{key}
\begin{key}{/wheelchart/wheel data angle pos=\marg{value} (initially 0.5)}
\end{key}
\begin{key}{/wheelchart/wheel data angle shift=\marg{angle} (initially 0)}
\end{key}
\begin{key}{/wheelchart/wheel data pos=\marg{value} (initially 0.66)}
\end{key}
\begin{key}{/wheelchart/wheel data sep=\marg{value} (initially 0)}
These keys determine the position of the contents of the key |wheel data| similar as the corresponding keys for the key |data|.
\end{key}
\begin{stylekey}{/wheelchart/wheel data style=\marg{options} (initially \normalfont empty)}
This key accepts a list of keys which will be applied to the node where the contents of the key |wheel data| is placed.
\end{stylekey}
\begin{stylekey}{/wheelchart/wheel lines=\marg{options} (initially \normalfont empty)}
If this key is set then lines with the style determined by this key will be drawn inside the slices of the wheelchart. The number of these lines depends on the value of the key |value|.
Below is the example from \cite[Subsection 7.6]{TtTaPGFp} recreated with the package |wheelchart|.
\begin{codeexample}[width=10cm,preamble={\usepackage{siunitx}}]
\begin{tikzpicture}
\colorlet{good}{green!75!black}
\colorlet{bad}{red}
\colorlet{neutral}{black!60}
\colorlet{none}{white}
\wheelchart[
anchor xsep=15,
contour=gray,
data=``\WCvarC'': \WCvarA{} (\WCperc),
middle=Ratings given by\\\WCtotalnum{} participants,
radius={1.8}{2.2},
start half=270,
wheel lines={black!15,thick}
]{%
10/neutral/ok,
9/good!60!white/good,
3/good/very good,
20/none/none,
0/bad/very bad,
8/bad!60!white/bad%
}
\end{tikzpicture}
\end{codeexample}
\end{stylekey}
\begin{key}{/wheelchart/xbar=\marg{width}\marg{height}}
This key sets |domain=0:|\marg{width}, |plot={{#1},{#2}}|, |radius={0}|\marg{height}, |samples=2| and also |wheel data pos=0.5|. The point $(0,0)$ is below left of the bar. This can be shifted with the key |at|. Note that since this key sets in particular the outer parts of the slices, keys such as |slices outer arc| must be placed \emph{after} the key |xbar| to be applied.
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\wheelchart[
data pos{list}={1,0},
data style={anchor=mid},
gap polar=0.05,
slices arrow={1}{0},
xbar={8}{1.5}
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\end{key}
\begin{key}{/wheelchart/ybar=\marg{width}\marg{height}}
This key sets |domain=0:|\marg{height}, |plot={{#2},{#1}}|, |radius={0}|\marg{width}, |samples=2| and also |wheel data pos=0.5|. The point $(0,0)$ is below left of the bar. This can be shifted with the key |at|.
\begin{codeexample}[width=10cm]
\begin{tikzpicture}
\wheelchart[
inner data=\WCperc,
inner data style={anchor=east},
ybar={1}{4}
]{\exampleforthismanual}
\end{tikzpicture}
\end{codeexample}
\end{key}
\section{Additional examples}
The following example is an answer to the question on \url{https://tex.stackexchange.com/questions/433848/is-there-a-way-to-make-sunburst-charts-multi-level-pie-charts-in-latex}.
\catcode`|=12%
\begin{codeexample}[preamble={\usepackage{etoolbox}
\usepackage{listofitems}
\usetikzlibrary{decorations.text}}]
\begin{tikzpicture}
\sffamily
\readlist\WCcolors{orange!50,orange!75,orange}
\pgfkeys{
/wheelchart,
arc data=\WCvarB,
arc data dir={\WCmidangle<180?-1:1},
arc data pos=0.5,
arc data style={text color=white},
counterclockwise,
data=,
gap,
gap radius,
slices style={
/utils/exec={
\ifdefempty{\WCvarB}{
\def\WCcolor{none}
\def\WCoverlay{true}
}{
\edef\WCcolor{\WCcolors[\fpeval{\WCmidangle<90?1:(\WCmidangle<210?2:(\WCmidangle<270?3:1))}]}
\def\WCoverlay{false}
}
},
fill=\WCcolor,
overlay=\WCoverlay
}
}
\wheelchart[
middle=Root\\Node,
middle style=darkgray,
radius={1}{2}
]{2/Node 1,1/Node 2,3/Node 3}
\wheelchart[
radius={2}{3}
]{4/Sub1,4/Sub2,4/Sub3,3/Sub1,3/Sub2,6/Sub1,6/Sub2,3/Sub3,3/Sub4}
\wheelchart[
radius={3}{4}
]{4/Sub1-Sub1,20/,3/Sub2-Sub1,3/Sub2-Sub2,6/}
\end{tikzpicture}
\end{codeexample}
\catcode`|=13%
The following example is an answer to the question on \url{https://tex.stackexchange.com/questions/447920/pie-chart-with-color-palette-info-inside-and-legend}.
\newgeometry{left=2pt,right=2pt,top=2.5cm,bottom=2.5cm}%
\makeatletter%
\f@nch@setoffs%
\makeatother%
\catcode`|=12%
\begin{codeexample}[preamble={\usepackage{siunitx}
\usetikzlibrary{decorations.text}}]
\begin{tikzpicture}
\ExplSyntaxOn
\seq_set_from_clist:Nn \l_tmpa_seq { 190~ 30~ 46 , 240~ 65~ 54 , 241~ 90~ 43 , 247~148~ 30 , 43~ 56~144 , 28~117~188 , 40~170~225 ,
119~179~225 , 181~212~239 , 0~104~ 56 , 0~148~ 69 , 57~181~ 74 , 141~199~ 63 , 215~244~ 34 ,
249~237~ 50 , 248~241~148 , 242~245~205 , 123~ 82~ 49 , 104~ 73~158 , 102~ 45~145 , 148~149~151 }
\seq_map_indexed_inline:Nn \l_tmpa_seq { \definecolor { slice#1 } { RGB } {#2} }
\ExplSyntaxOff
\definecolor{background}{RGB}{255 253 234}\definecolor{disc}{RGB}{ 15 119 188}
\definecolor{text1}{RGB}{209 211 212}\definecolor{text2}{RGB}{ 67 66 63}
\sisetup{group-separator={,},group-minimum-digits=4,text-series-to-math=true}
\fill[background] (-6.8,-8) rectangle (13.8,8);
\pgfkeys{/wheelchart,data=,radius={1.7}{5}}
\wheelchart[
arc data{18,21}=|\bfseries|\WCvarE{} \WCperc,
arc data pos=1.2,
arc data style={text color=slice\WCcount},
inner data{1,...,20}=\qty{\WCvarC}{\percent}\\[-4pt]yield,
inner data pos=0.5,
inner data style=\WCvarB,
legend entry={
\fill[slice\WCcount,shift={({int((\WCcount-1)/17)*4.5-3},0)}] ({45-Mod({\WCcount-1},17)*90/16}:10) circle[radius=0.4]
node[\WCvarB,font=\large] {\WCperc}
node[black,shift={(0.6,0)},anchor=west,font=\footnotesize,align=left,execute at begin node={\baselineskip=7pt}] {\WCvarD};
},
lines{18,21}=0.75,
lines sep=0.1,
lines style={slice\WCcount,dashed,ultra thick},
middle=Income\\[-4pt]\& growth\\{\Huge\textcolor{slice21}{\pounds 100k}}\\portfolio,
middle fill=white,
middle style={font=\bfseries\Large},
slices style=slice\WCcount,
wheel data={\Large \pounds\WCvarA k},
wheel data{21}=\pounds\\[-4pt]\WCvarA\\[-4pt]k,
wheel data pos=0.8,
wheel data style=\WCvarB
]{%
5/text1/4.26/Miton Multi-Cap\\Income/,
6/text1/6.86/Schroder Income\\Maximiser/,
6/text1/3.82/Trojan\\Income/,
7/text1/3.32/CF Woodford\\Equity Income/,
7/text1/2.91/Artemis Global\\Income/,
4/text1/2.87/First State Global\\Listed Infrastructure/,
4/slice5/2.63/Lazard Global\\Listed Infrastructure/,
4/slice5/3.50/Legg Mason RARE\\Global Income/,
6/slice5/2.55/Newton Global\\Income/,
5/text1/4.6/Henderson\\Strategic Bond/,
4/text1/5.01/Invesco Perpetual\\Monthly Income Plus/,
5/text1/4.4/Jupiter Strategic\\Bond/,
4/slice11/0/L\&G All Stocks Index\\Linked Gilt Index/,
5/slice11/2.3/L\&G Short Dated Sterling\\Corporate Bond Index/,
4/slice11/5.95/Royal London Short Duration\\Global High Yield Bond/,
4/slice10/3.55/TwentyFour\\Corporate Bond/,
4/slice10/5.03/TwentyFour\\Dynamic Bond/,
5/text1/4.8/F\&C Property Growth\\\& Income/PROPERTY,
5/text1/4.44/Aviva Multi Strategy\\Target Income/,
5/text1/3.45/Invesco\\Perpetual\\Global Targeted\\Income/,
1/text2/0.01/Cash/CASH%
}
\pgfkeys{/wheelchart,arc={draw=\WCvarB,dashed,ultra thick},arc around text,arc data{1,2,3,5}=|\bfseries|\WCvarC{} \WCvarA{\,}
{\unit{\percent}},arc data pos=1.1,arc data style={text color=\WCvarB},arc pos=1.1,slices style={fill=none},value{5}=12}
\wheelchart{%
24/slice1/UK EQUITIES,
25/slice5/GLOBAL EQUITIES,
35/slice10/FIXED INTEREST,
3/none/,
10/slice20/ALTERNATIVE,
1/none/%
}
\fill[disc] (12,-5.5) circle[radius=1.7]
node[white,font=\Large\bfseries,align=center] {Portfolio\\[-4pt]income\\\pounds\num{3785}\\[10pt]{\large or \qty{3.79}{\percent}}};
\node[rotate=270,anchor=north west] at (13.8,8) {\emph{Source: Whitechurch Securities}};
\end{tikzpicture}
\end{codeexample}
\catcode`|=13%
\restoregeometry%
The following example is an answer to the question on \url{https://tex.stackexchange.com/questions/477310/cyclic-flowchart-in-tikz}.
\catcode`|=12%
\begin{codeexample}[width=10cm,preamble={\usetikzlibrary{decorations.text}}]
\begin{tikzpicture}
\sffamily
\wheelchart[
data=,
middle=Optimized\\vibrating\\systems,
middle fill=RoyalBlue,
middle style=white,
radius={1.2}{4},
slices={(0,0) circle[radius=0.8];},
slices style=\WCvarA,
start half,
value=1,
wheel data=\WCvarB,
wheel data pos=0.5,
wheel data style={
white,
align=center
}
]{%
Green/Passive\\control,
Maroon/Feed-\\forward,
Orange/Active\\control%
}
\wheelchart[
gap polar=25,
radius={2.5}{2.7},
slices end arrow={1}{-1},
slices start arrow={1}{-1},
slices style=Gray,
total count=3
]{}
\foreach\n in {-30,90,210}{
\draw[->,MidnightBlue,ultra thick]
(\n:1.7)--(\n:1.3);
}
\fill[
top color=Gray!50,
bottom color=Gray,
draw,
even odd rule
] (0,0) circle[radius=3.5]
circle[radius=4.2];
\wheelchart[
arc{2}={
<-,
ultra thick
},
arc around text,
arc data=~\WCvarA~,
arc data pos=0.5,
arc pos=0.5,
data=,
gap polar=10,
radius={3.5}{4.2},
slices style={fill=none},
start half=180,
value=1
]{%
{Mass M, Damping D, Stiffness K},
Dynamic model,
Frequency response functions H,
%
}
\end{tikzpicture}
\end{codeexample}
\catcode`|=13%
\section{Version history}
\begin{itemize}
\item[] \textbf{Version 1.0 (2022/09/11)} First version.
\item[] \textbf{Version 2.0 (2023/12/03)}
\begin{itemize}
\item The package now mainly uses \LaTeX3 syntax.
\item Improved the definition of the path of the slices.
\item Many internal computations are now performed with |\fp_eval:n| instead of |pgfmath| for higher accuracy and to allow larger values. This applies in particular to the computation of |\WCpercentage|, |\WCpercentagerounded| and |\WCtotalnum|. Hence |\WCpercentagerounded| can be parsed by |siunitx| since its definition does not involve |\pgfmathprintnumberto| anymore and |\WCtotalnum| does not end with |.0| if it is an integer.
\item The number of data which can be given to each slice of the wheelchart and accessed by |\WCvarA| and so on is not limited to $26$ anymore.
\item \begin{flushleft}Added the macros |\WCcountdiscrete|, |\WCetocthelinkedname|, |\WCetocthelinkednumber|, |\WCetocthelinkedpage|, |\WCetocthename|, |\WCetocthenumber|, |\WCetocthenumberofpages|, |\WCetocthepage|, |\WClegend|, |\WClist|\meta{name} and |\|\meta{prefix}\meta{name}.\end{flushleft}
\item \begin{flushleft}Added the keys |after slices|, |arc|, |arc around text|, |arc data|, |arc data align|, |arc data angle pos|, |arc data angle shift|, |arc data dir|, |arc data pos|, |arc data sep|, |arc data style|, |arc first half|, |arc pos|, |arc second half|, |arc sep|, |before slices|, |caption left sep|, |caption sep|, |data angle pos|, |data pos|, |discrete|, |discrete factor|, |discrete partitioning|, |discrete pic|, |discrete sort|, |discrete space at borders|, |domain|, |etoc code|, |etoc count total pages|, |etoc level|, |etoc name|, |etoc use name|, |expand list items|, |for loop end|, |for loop start|, |gap max angle|, |gap radius|, |header|, |header prefix|, |inner data angle pos|, |inner data angle shift|, |inner data pos|, |inner plot|, |inner plot style|, |legend columns|, |legend only|, |legend row|, |lines angle pos|, |lines angle shift|, |lines ext dir|, |lines ext fixed left|, |lines ext fixed right|, |lines pos|, |outer plot|, |outer plot style|, |parse|, |plot|, |plot style|, |samples|, |separator columns|, |separator rows|, |slices angle pos|, |slices angle shift|, |slices arc inner end|, |slices arc inner end start|, |slices arc inner start|, |slices arc inner start end|, |slices arc match|, |slices arc outer end|, |slices arc outer end start|, |slices arc outer start|, |slices arc outer start end|, |slices end to|, |slices inner angle reduce|, |slices inner angle shift|, |slices inner arc|, |slices inner arc tangent|, |slices inner arrow|, |slices inner end angle shift|, |slices inner start angle shift|, |slices inner to|, |slices outer angle reduce|, |slices outer angle shift|, |slices outer arc|, |slices outer arc tangent|, |slices outer arrow|, |slices outer end angle shift|, |slices outer start angle shift|, |slices outer to|, |slices pos|, |slices scope|, |slices sep|, |slices start to|, |slices to|, |slice|\marg{range}, |title left sep|, |title sep|, |triangle proportional area|, |triangle proportional height|, |WClist|\meta{name}, |wheel data angle pos|, |wheel data angle shift|, |wheel data sep|, |xbar| and |ybar|.\end{flushleft}
\item Added the possibility to give a \meta{range} to the keys such that the options given to the key will only be applied to a slice if the number of the slice is in the \meta{range}.
\item Added the possibility to give a \meta{list} to the keys.
\item The \meta{wheelchart data} are not processed with |\foreach| anymore but instead with one of |\seq_set_split:Nee|, |\seq_set_split:Nen| or |\seq_set_split:Neo| depending on the keys |expand list| and |expand list items|. Thus syntax which is specific to how |\foreach| processes a list does not work anymore, such as the dots notation and the repeating of the last entry if some entry in the list has fewer entries than required.
\item If the key |start angle| is set after the key |start half| then v1.0 preserved the setting of the key |start half|. In v2.0, the setting is determined by the key which is set last.
\item In v1.0, the value of the key |data angle shift| was also applied to |inner data|, |lines| and |wheel data|. In v2.0, this is not the case anymore. Instead there are now separate keys |inner data angle shift|, |lines angle shift|, |wheel data angle shift| and also |arc data angle shift|.
\item In v1.0, the key |data sep| was not applied if the key |lines ext| was used. In v2.0, this is not the case anymore.
\item In v1.0, a negative value for the key |lines| was not applied. In v2.0, this is not the case anymore.
\end{itemize}
\item[] \textbf{Version 3.0 (2024/03/08)}
\begin{itemize}
\item Improved the parametrization of the slices in the case that no plot is used. In particular, the |arc| and |arc data| are placed with an arc if no plot is used whereas in v2.0, these were placed with a plot even if no plot was used. Also, the computation of |\WCdataangle| and |\WCmidangle| is more precise than in v2.0.
\item Optimized the code. The compilation is faster than in v2.0.
\item Added the commands |\WCangle|, |\WCcoordinate|, |\WCpoint| and |\WCradius|.
\item \begin{flushleft}Added the keys |arc around line|, |arc data expand|, |arc data line sep factor|, |slices Arrow|, |slices end|, |slices inner|, |slices outer| and |slices start|.\end{flushleft}
\item Changed the definition of |\WCperc| in the key |arc data| so that |\WCperc| follows the arc or plot.
\item Added the possibility that the contents of the key |arc data| consists of multiple lines separated by |\\|.
\item Reduced the functionality of the keys |contour| and |middle fill| to require a fixed inner and outer radius for all slices.
\item Removed the key |parse|. The values of applicable keys are parsed with |\pgfmathparse|. If a value should be parsed with |l3fp| then |\fpeval| can be used.
\item In v2.0, the key |arc data angle shift| was not taken into account for the key |arc| in combination with the key |arc around text|. This is fixed in v3.0.
\item In v2.0, the number of items for each slice in the \meta{wheelchart data} which can be accessed with the macros |\WCvarA| and so on was determined by the number of items for the last slice. For example, |data{1}=\WCvarD| in combination with the \meta{wheelchart data} |1/black/A/a,2/gray/B| was not possible with v2.0. This is not a limitation anymore with v3.0.
\end{itemize}
\item[] \textbf{Version 4.0 (2024/07/28)}
\begin{itemize}
\item Added the keys |arc data lines pos| and |arc data lines shift|.
\item Solved an incompatibility if |\\| is used in a key such as |data| inside an environment such as |center|.
\end{itemize}
\end{itemize}
\begin{thebibliography}{9}
\bibitem{JhcIparowcltopotPGFm}
Jake,
\emph{How can I produce a `ring (or wheel) chart' like that on page 88 of the {\upshape\pgfname} manual?},
\url{https://tex.stackexchange.com/questions/17898/how-can-i-produce-a-ring-or-wheel-chart-like-that-on-page-88-of-the-pgf-manu/18105#18105},
2011.
\bibitem{MpMP}
Jens-Uwe Morawski,
\emph{{\upshape\texttt{piechart}\textsf{MP}}},
Manual for Preliminary Version,
\url{https://ctan.org/pkg/piechartmp},
2002.
\bibitem{RSVpaaMfp}
Dominique Rodriguez, Michael Sharpe, Herbert Vo{\ss},
\emph{{\upshape\texttt{pstricks-add} \textsf{additionals Macros for} \texttt{pstricks}}},
Manual for version 3.94,
\url{https://ctan.org/pkg/pstricks-add},
2023.
\bibitem{Tumfdb}
Nicola L.C.~Talbot,
\emph{User Manual for datatool bundle version 2.32},
\url{https://ctan.org/pkg/datatool},
2019.
\bibitem{TtTaPGFp}
Till Tantau,
\emph{The \tikzname{} and {\upshape\pgfname} Packages},
Manual for version 3.1.10,
\url{https://ctan.org/pkg/pgf},
2023.
\bibitem{XdPCbupp}
Yuan Xu,
\emph{Drawing Pie Chart by using {\upshape\texttt{pgf-pie}}},
Manual for version 0.7,
\url{https://ctan.org/pkg/pgf-pie},
2022.
\end{thebibliography}
\printindex
\newgeometry{left=2.25cm,right=2.25cm,top=2.25cm,bottom=2.25cm}
\pagestyle{plain}
\appendix
\addtocontents{toc}{\protect\setcounter{tocdepth}{-2}}
\begin{landscape}
\section{The source code}\label{Thesourcecode}
\dochighinput[language=latex/latex3]{wheelchart.sty}
\end{landscape}
\end{document}
|