3

I have the code:

\documentclass{article}                                                                                                                                                                                     
\usepackage[utf8]{inputenc}                                                                                                                                                                                 
\usepackage{pgf-pie}                                                                                                                                                                                        
\begin{document}                                                                                                                                                                                            
\begin{tikzpicture}                                                                                                                                                                                         
  \pie[text=,before number=, after number=,color={blue!33.33, blue!33.33, white!33.33}]                                                                                                                      
      {33.33, 33.33, 33.33}                                                                                                                                                                                 
\end{tikzpicture}                                                                                                                                                                                           
\end{document}      

which produces the output

enter image description here

How can I hide the numbers (33.33)?

Viesturs
  • 7,895
  • At least according to the documentation this is no valid use-case. You should make a feature-request (contact author). – TeXnician Apr 20 '17 at 15:24
  • https://tex.stackexchange.com/questions/329030/ https://tex.stackexchange.com/questions/304142/ – Torbjørn T. Apr 20 '17 at 15:30
  • Perhaps you could just draw the wedges yourself without using pgf-pie? Something like: \filldraw[fill=blue!20!white, draw=black] (0,0) -- ( 0:4cm) arc ( 0:120:4cm) -- (0,0); – Thruston Apr 20 '17 at 16:46
  • 1
    Using before number=\pgfsetfillopacity{0.0} is a solution for hiding the numbers only, leaving the labels visible. – Hermann Dec 06 '19 at 15:57

0 Answers0