I like the pie chart from http://www.texample.net/tikz/examples/pie-chart/, but it's in grey color.
Then I found the modified version to add colors by "Sigur" here:How to give different color to each pie?
but still, I need to specify the color by name.
Is there anyway to incorporate colormap as here (by Ronny):How to use colors from a pgfplots colormap in own draw
\documentclass{standalone}
\usepackage{pgfplots}
\usepgfplotslibrary{colormaps}
\pgfplotsset{compat=1.12}
\tikzset{ellC/.style={/utils/exec={\pgfplotscolormapdefinemappedcolor{#1}},%
draw=mapped color!80!black, fill=mapped color!80!white}}
\begin{document}
\begin{tikzpicture}
\begin{axis}[hide axis,
colormap/hsv,
xmin=-2.5, xmax=2.5,
ymin=-.5, ymax=.5,
axis equal]
\draw[ellC=0, rotate around={-20:(0,0)}] (0,0) ellipse (.5 and .25);
\draw[ellC=50, rotate around={0:(1,0)}] (1,0) ellipse (.45 and .3);
\draw[ellC=100, rotate around={20:(2,0)}] (2,0) ellipse (.4 and **strong text**.35);
\end{axis}
\end{tikzpicture}
\end{document}
into those pie chart example.

