I would like to know how to prevent the labels of a pie chart from overlapping and to have more control over their position?
I am using the pgf-pie package, I don't know if it is possible to easily modify the package to make this possible. If not, I'm also interested in a more "manual" solution without pgf-pie and using tikz.
\documentclass{article}
\usepackage{pgf-pie}
\begin{document}
\begin{tikzpicture}
\pie[rotate=90, text=pin, hide number, sum=auto]{
1000/{\pgfmathprintnumber{1000.0}},
300/{\pgfmathprintnumber{300}},
250/{\pgfmathprintnumber{250}},
100/{\pgfmathprintnumber{100}},
31.1/{\pgfmathprintnumber{31.1}},
25.5/{\pgfmathprintnumber{25.5}},
21.2/{\pgfmathprintnumber{21.2}}
};
\end{tikzpicture}
\end{document}

