pgf-pie - Show absolute values instead of percentage
I want to make a pie chart with pgf-pie
that shows not the percentage inside the pie but the absolute values. For example 15 males and 3 females in my example below. Is this possible with pgf-pie
?
documentclass[12pt]{standalone}
usepackage{pgf-pie}
usepackage{xcolor}
begin{document}
begin{tikzpicture}
pie[rotate = 180,
color = {orange!40!white, orange!80!white}]
{27.78/females, 72.22/males}
end{tikzpicture}
end{document}
tikz-pgf pgf-pie
add a comment |
I want to make a pie chart with pgf-pie
that shows not the percentage inside the pie but the absolute values. For example 15 males and 3 females in my example below. Is this possible with pgf-pie
?
documentclass[12pt]{standalone}
usepackage{pgf-pie}
usepackage{xcolor}
begin{document}
begin{tikzpicture}
pie[rotate = 180,
color = {orange!40!white, orange!80!white}]
{27.78/females, 72.22/males}
end{tikzpicture}
end{document}
tikz-pgf pgf-pie
add a comment |
I want to make a pie chart with pgf-pie
that shows not the percentage inside the pie but the absolute values. For example 15 males and 3 females in my example below. Is this possible with pgf-pie
?
documentclass[12pt]{standalone}
usepackage{pgf-pie}
usepackage{xcolor}
begin{document}
begin{tikzpicture}
pie[rotate = 180,
color = {orange!40!white, orange!80!white}]
{27.78/females, 72.22/males}
end{tikzpicture}
end{document}
tikz-pgf pgf-pie
I want to make a pie chart with pgf-pie
that shows not the percentage inside the pie but the absolute values. For example 15 males and 3 females in my example below. Is this possible with pgf-pie
?
documentclass[12pt]{standalone}
usepackage{pgf-pie}
usepackage{xcolor}
begin{document}
begin{tikzpicture}
pie[rotate = 180,
color = {orange!40!white, orange!80!white}]
{27.78/females, 72.22/males}
end{tikzpicture}
end{document}
tikz-pgf pgf-pie
tikz-pgf pgf-pie
edited Mar 20 at 14:34
Phelype Oleinik
24.6k54688
24.6k54688
asked Mar 20 at 14:33
simandesimande
17318
17318
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
If you use the option sum = auto
(or sum = <some value>
) the package will automatically remove the %
after the number (actually the package sets after number = %
when sum = 100
, the default):
documentclass[12pt]{standalone}
usepackage{pgf-pie}
usepackage{xcolor}
begin{document}
begin{tikzpicture}
pie[rotate = 180, sum = auto,
color = {orange!40!white, orange!80!white}]
{27.78/females, 72.22/males}
end{tikzpicture}
end{document}
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f480501%2fpgf-pie-show-absolute-values-instead-of-percentage%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
If you use the option sum = auto
(or sum = <some value>
) the package will automatically remove the %
after the number (actually the package sets after number = %
when sum = 100
, the default):
documentclass[12pt]{standalone}
usepackage{pgf-pie}
usepackage{xcolor}
begin{document}
begin{tikzpicture}
pie[rotate = 180, sum = auto,
color = {orange!40!white, orange!80!white}]
{27.78/females, 72.22/males}
end{tikzpicture}
end{document}
add a comment |
If you use the option sum = auto
(or sum = <some value>
) the package will automatically remove the %
after the number (actually the package sets after number = %
when sum = 100
, the default):
documentclass[12pt]{standalone}
usepackage{pgf-pie}
usepackage{xcolor}
begin{document}
begin{tikzpicture}
pie[rotate = 180, sum = auto,
color = {orange!40!white, orange!80!white}]
{27.78/females, 72.22/males}
end{tikzpicture}
end{document}
add a comment |
If you use the option sum = auto
(or sum = <some value>
) the package will automatically remove the %
after the number (actually the package sets after number = %
when sum = 100
, the default):
documentclass[12pt]{standalone}
usepackage{pgf-pie}
usepackage{xcolor}
begin{document}
begin{tikzpicture}
pie[rotate = 180, sum = auto,
color = {orange!40!white, orange!80!white}]
{27.78/females, 72.22/males}
end{tikzpicture}
end{document}
If you use the option sum = auto
(or sum = <some value>
) the package will automatically remove the %
after the number (actually the package sets after number = %
when sum = 100
, the default):
documentclass[12pt]{standalone}
usepackage{pgf-pie}
usepackage{xcolor}
begin{document}
begin{tikzpicture}
pie[rotate = 180, sum = auto,
color = {orange!40!white, orange!80!white}]
{27.78/females, 72.22/males}
end{tikzpicture}
end{document}
answered Mar 20 at 14:40
Phelype OleinikPhelype Oleinik
24.6k54688
24.6k54688
add a comment |
add a comment |
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f480501%2fpgf-pie-show-absolute-values-instead-of-percentage%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown