I have a pgf-pie chart and some of the values are so small that the number does not display correctly. Therefore I would like to put them outside of the chart, as seen on the second picture I found on the internet.
MWE of my chart
\documentclass[tikz, 12pt, a4paper]{report}
\usepackage[T1]{fontenc}
\usepackage{caption}
\usepackage{subcaption}
\usepackage[usenames, dvipsnames, rgb]{xcolor}
\usepackage{tikz}
\usepackage{pgf-pie}
\usetikzlibrary{arrows, positioning, shadows}
\begin{document}
\begin{figure}[!htbp]
\centering
\begin{tikzpicture}
\pie[sum=auto,text=legend]{10/A, 1/B, 29/C, 43/D, 16/E}
\end{tikzpicture}
\caption{Pie}
\end{figure}
\end{document}
This is what my chart looks like
This is the picture of how I imagine my the numbers outside could look like I found but obviously, I'd like to keep the legend and all other formatting.
How can that be done?


