Questions tagged [pgf-pie]

{pgf-pie} concerns the TikZ-pgf based pie chart plotting package pgf-pie

The tag concerns the TikZ-pgf based pgf-pie package. The package provides capabilities to generate several forms of pie charts with simple coding. See the pgf-pie manual for more details.

118 questions
7
votes
1 answer

Pie chart with bar chart magnification

I am trying to obtain a pie chart and bar chart on the right which shows the details (magnification) of one of the slices of the pie chart (please see attached image). I already used the code provided by Bordaigorl here to obtain the pie chart (see…
5
votes
2 answers

Iterate over colors on next pie chart with pgf-pie

Currently, if you have two pie-charts, it will start again with color0. Is there any possibility to start with the next color (the one after used by the previous pie-chart) \begin{tikzpicture} \pie{58.54/A, 39.02/B,…
5
votes
1 answer

How can I change the line color in pie chart

I want to change the line color of a pie chart in LaTeX so that the line color of the slices take the fill color. Mini example: \usepackage{pgf-pie} \begin{document} \begin{tikzpicture} \pie[color={red, blue, yellow, green}, sum=auto, after…
Maria
  • 65
4
votes
2 answers

Small pie-chart without any numbers or text

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} …
user100999
3
votes
4 answers

How can I make a pie chart which automatically changes 'inside' text to 'pin'

How can I create a pie chart where if one of the labels doesn't fit, it will switch from having the text inside to being pin, or define it manually for each part, using pgf-pie, like this? So far I only…
gw90
  • 33
3
votes
0 answers

pgf-pie: not show numbers

I have the code: \documentclass{article} \usepackage[utf8]{inputenc}…
Viesturs
  • 7,895
3
votes
2 answers

How to put small numbers outside the pie slices without making a mess

I'm new to LaTeX and need some help with my figures. I would like to to put small numbers outside the pie slices without making a mess. Having found this thread Align 3 graph pies, I tried it out, but didn't get all the way through with it. Right…
Newbeee
  • 179
2
votes
2 answers

How to make disappear some weird numbers in a pie chart with pgf-pie

I am trying to make a simple pie chart with pgf-pie, but for a reason unknown to me the labels I use don't display correctly. Here is the chunk of code I've copied from the manual into my .tex file : \begin{tikzpicture} \pie[color ={ cyan!10 ,…
2
votes
1 answer

Pie chart color problem

I am having same color for chrome and safari slices however for safari i have added yellow to cyclelist \begin{figure}[H] \begin{center} \def\angle{0} \def\radius{3} \def\cyclelist{{"brown","blue","red","green","yellow"}} \newcount\cyclecount…
1
vote
1 answer

How to remove the percentage numbers in "pgf-pie"

Could you tell me how to remove the percentage numbers in a pie chart using the "pgf-pie" package? I got the following working code example, but as I said I would like to remove the perecentage numbers in the…
3nondatur
  • 483
1
vote
1 answer

Pie graph with outside text

I constructed a pie chart based on a code I found on the internet and I already tried to make some changes because it's all messy and I wanted, when the percentags are too small (<3%) to have outside text and a line coming from the inside to this…