[Tex/LaTex] Small pie-chart without any numbers or text

pgf-pie

Does anyone know how to draw a small pie-chart without labels?

\documentclass{article}
\usepackage{tikz} 
\usepackage{pgf-pie}

\begin{document}

\begin{tikzpicture}
\pie[ 
 color = {black!10, black!40},radius = 0.5] {37.5, 62.5}    
\end{tikzpicture}

\end{document}

Thanks in advance!

Best Answer

Set the /tikz/nodes={text opacity=0,overlay} as option for\pie.

enter image description here

Code:

\documentclass{article}
\usepackage{tikz} 
\usepackage{pgf-pie}

\begin{document}

\begin{tikzpicture}
\pie[ 
  color = {black!10, black!40},radius = .5,
  /tikz/nodes={text opacity=0,overlay}% <- 
] {37.5, 62.5}
\end{tikzpicture}
\end{document}
Related Question