Is possible to change text color inside pie chart using the pgf-pie package?
Is possible change the color of text on a single slice of the pie?
\documentclass[tikz]{standalone}
\usepackage{pgf-pie}
\begin{document}
\begin{tikzpicture}[scale=0.9]
\pie[
/tikz/every pin/.style={align=center},
text=pin,
rotate=240,
explode=0.2,
color={blue!70,cyan!70,red!70,orange!50}
] {65/Amplificatori di\\potenza, 10/Elaborazione\\del segnale,
17.5/Sistemi di\\raffreddamento, 7.5/Alimentazione}
\end{tikzpicture}
\end{document}


\textcolor{enter color here}{your text here}if the text you are talking about is in a node. – dustin Aug 14 '13 at 14:11pgf-pie.stysomehow, so I would suggest placing a feature request in the issue tracker. – Torbjørn T. Aug 18 '13 at 08:22pgf-pieis not very flexible and parts of the package probably need to be rewritten. Though you can use the/tikz/every pinstyle to change thetextcolor of the labels outside of the slices (see Start a new line in label using pgf-pie). – Qrrbrbirlbel Aug 30 '13 at 09:18