How do I manually adjust/define the position of each legend when using the "wheelchart" package, I read somewhere that it is not possible to adjust in the "Wheelchart" package. The legends overlap when the value is low. Any idea or workaround is much appreciated.
\documentclass[border=6pt]{standalone}
\usepackage{wheelchart}
\usetikzlibrary{decorations.markings}
\begin{document}
\begin{tikzpicture}
\wheelchart
[data=\WCvarC: \WCperc,
lines=0.5,
lines ext=0.5,
lines sep=-0.2,
lines style={
postaction=decorate,
decoration={
markings,
mark=at position 0 with {
\fill (0,0) circle[radius=0.1];
}
}
},
perc precision=1,
radius={1.8}{2.2}
]
{
55.55/green/Option A,
6.55/red/Option B,
29.59/blue/Option C,
3.59/orange/Option D,
4.73/purple/Option E
}
\end{tikzpicture}
\end{document}


lines{5}=1,is not working but i used this piece of your previous code:lines={1/(0.5+abs(cos(\WCdataangle)))^1.1},– IamK Feb 23 '24 at 01:16lines{5}=1in the answer requires version 2.0 of the wheelchart package. – matexmatics Feb 23 '24 at 19:04