I am dealing with package pgf-pie to draw some pictures.
However, I would like to hide some percentages, that the smaller, because they don't fit in the sectors. I would just like to leave the ones with larger percentages.
See my figure.
The code is the following:
\documentclass[10pt,a4paper]{report}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots,tikz}
\usepackage{pgf-pie}
\begin{document}
\begin{tikzpicture}[scale=0.5]
\pie[radius=4]
{45/Palm.,
25/SP,
29/Cor.,
1/San.}
\end{tikzpicture}
\end{document}
There is a possibility of hide all numbers, but I don't want, only the smallers. Can anyone help me please?

