Changing order of draw operation in PGFPlots Unicorn Meta Zoo #1: Why another podcast? Announcing the arrival of Valued Associate #679: Cesar ManaraCan Pgfplots extra tick grid line be drawn behind the axis line?plotting two time series with boundsGrouped bar chartoverlapping labels in tikzPGFPLOTS: Insert a boxplot outside the chart axis labels, much like GNU RHow to prevent rounded and duplicated tick labels in pgfplots with fixed precision?How to hide empty (value 0) ybars with pgfplots?Show mark labels near marks and not centered in ybar interaval graphpgfplots: percentage in matrix plotCenter the axes in the coordinate origin
How to translate "red flag" into Spanish?
With indentation set to `0em`, when using a line break, there is still an indentation of a size of a space
How to avoid introduction cliches
Multiple options vs single option UI
What is the term for a person whose job is to place products on shelves in stores?
What is the ongoing value of the Kanban board to the developers as opposed to management
Does Feeblemind produce an ongoing magical effect that can be dispelled?
Could Neutrino technically as side-effect, incentivize centralization of the bitcoin network?
Is it acceptable to use working hours to read general interest books?
Reattaching fallen shelf to wall?
Putting Ant-Man on house arrest
What’s with the clanks in Endgame?
What *exactly* is electrical current, voltage, and resistance?
Can you stand up from being prone using Skirmisher outside of your turn?
Does Mathematica have an implementation of the Poisson binomial distribution?
What to do with someone that cheated their way through university and a PhD program?
What is the best way to deal with NPC-NPC combat?
Is a 5 watt UHF/VHF handheld considered QRP?
Book with legacy programming code on a space ship that the main character hacks to escape
Are these square matrices always diagonalisable?
How long after the last departure shall the airport stay open for an emergency return?
How do I check if a string is entirely made of the same substring?
Arriving in Atlanta after US Preclearance in Dublin. Will I go through TSA security in Atlanta to transfer to a connecting flight?
c++ diamond problem - How to call base method only once
Changing order of draw operation in PGFPlots
Unicorn Meta Zoo #1: Why another podcast?
Announcing the arrival of Valued Associate #679: Cesar ManaraCan Pgfplots extra tick grid line be drawn behind the axis line?plotting two time series with boundsGrouped bar chartoverlapping labels in tikzPGFPLOTS: Insert a boxplot outside the chart axis labels, much like GNU RHow to prevent rounded and duplicated tick labels in pgfplots with fixed precision?How to hide empty (value 0) ybars with pgfplots?Show mark labels near marks and not centered in ybar interaval graphpgfplots: percentage in matrix plotCenter the axes in the coordinate origin
I've developed a pgfplots ybar chart with white horizontal grid lines over the vertical bars to help the reader judge the length of the bars. The "base" of the ybar chart (the x-axis) is set to y=1 so that I can see whether the normalized results are above or below the axis at y=1. My problem is that I'm having trouble drawing the black x-axis line at y=1 without it being overwritten by a white grid line.
documentclass[border=10pt]standalone
usepackagepgfplots
usepackagepgfplotstable
pgfplotssetcompat=newest
begindocument
pgfplotstableread[col sep=comma,header=false]
Cat A, 1.06
Cat B, 0.92
Cat C, 1.01
Cat D, 1.04
Cat E, 0.88
datatable
begintikzpicture
beginaxis[
ybar,
enlarge x limits=0.2,
height=4cm,
ymax=0.125,
ymin=-0.125,
xticklabels from table=datatable0,
xtick=data,
ytick=-0.1,-0.05,...,0.1,
yticklabels=0.90,0.95,1.00,1.05,1.10,
ytick pos=left,
ymajorgrids=true,
major grid style=thin,color=white,
axis on top,
ylabel=Normalized value,
x axis line style=draw opacity=0,
xtick style=draw=none,
xticklabel style=
rotate=90,
anchor=east,
]
addplot [fill=black,draw=none] table [x expr=coordindex, y expr=thisrowno1-1] datatable;
draw [black,thin] (rel axis cs:0,0.5) -- (rel axis cs:1,0.5);
endaxis
endtikzpicture
enddocument
If I remove axis on top
, the x-axis is drawn correctly, but then I lose the white grid lines over the vertical bars.
How can I change my plot such that the x-axis is drawn last or in such a way that it is drawn on top of the grid line?
pgfplots bar-chart
New contributor
add a comment |
I've developed a pgfplots ybar chart with white horizontal grid lines over the vertical bars to help the reader judge the length of the bars. The "base" of the ybar chart (the x-axis) is set to y=1 so that I can see whether the normalized results are above or below the axis at y=1. My problem is that I'm having trouble drawing the black x-axis line at y=1 without it being overwritten by a white grid line.
documentclass[border=10pt]standalone
usepackagepgfplots
usepackagepgfplotstable
pgfplotssetcompat=newest
begindocument
pgfplotstableread[col sep=comma,header=false]
Cat A, 1.06
Cat B, 0.92
Cat C, 1.01
Cat D, 1.04
Cat E, 0.88
datatable
begintikzpicture
beginaxis[
ybar,
enlarge x limits=0.2,
height=4cm,
ymax=0.125,
ymin=-0.125,
xticklabels from table=datatable0,
xtick=data,
ytick=-0.1,-0.05,...,0.1,
yticklabels=0.90,0.95,1.00,1.05,1.10,
ytick pos=left,
ymajorgrids=true,
major grid style=thin,color=white,
axis on top,
ylabel=Normalized value,
x axis line style=draw opacity=0,
xtick style=draw=none,
xticklabel style=
rotate=90,
anchor=east,
]
addplot [fill=black,draw=none] table [x expr=coordindex, y expr=thisrowno1-1] datatable;
draw [black,thin] (rel axis cs:0,0.5) -- (rel axis cs:1,0.5);
endaxis
endtikzpicture
enddocument
If I remove axis on top
, the x-axis is drawn correctly, but then I lose the white grid lines over the vertical bars.
How can I change my plot such that the x-axis is drawn last or in such a way that it is drawn on top of the grid line?
pgfplots bar-chart
New contributor
add a comment |
I've developed a pgfplots ybar chart with white horizontal grid lines over the vertical bars to help the reader judge the length of the bars. The "base" of the ybar chart (the x-axis) is set to y=1 so that I can see whether the normalized results are above or below the axis at y=1. My problem is that I'm having trouble drawing the black x-axis line at y=1 without it being overwritten by a white grid line.
documentclass[border=10pt]standalone
usepackagepgfplots
usepackagepgfplotstable
pgfplotssetcompat=newest
begindocument
pgfplotstableread[col sep=comma,header=false]
Cat A, 1.06
Cat B, 0.92
Cat C, 1.01
Cat D, 1.04
Cat E, 0.88
datatable
begintikzpicture
beginaxis[
ybar,
enlarge x limits=0.2,
height=4cm,
ymax=0.125,
ymin=-0.125,
xticklabels from table=datatable0,
xtick=data,
ytick=-0.1,-0.05,...,0.1,
yticklabels=0.90,0.95,1.00,1.05,1.10,
ytick pos=left,
ymajorgrids=true,
major grid style=thin,color=white,
axis on top,
ylabel=Normalized value,
x axis line style=draw opacity=0,
xtick style=draw=none,
xticklabel style=
rotate=90,
anchor=east,
]
addplot [fill=black,draw=none] table [x expr=coordindex, y expr=thisrowno1-1] datatable;
draw [black,thin] (rel axis cs:0,0.5) -- (rel axis cs:1,0.5);
endaxis
endtikzpicture
enddocument
If I remove axis on top
, the x-axis is drawn correctly, but then I lose the white grid lines over the vertical bars.
How can I change my plot such that the x-axis is drawn last or in such a way that it is drawn on top of the grid line?
pgfplots bar-chart
New contributor
I've developed a pgfplots ybar chart with white horizontal grid lines over the vertical bars to help the reader judge the length of the bars. The "base" of the ybar chart (the x-axis) is set to y=1 so that I can see whether the normalized results are above or below the axis at y=1. My problem is that I'm having trouble drawing the black x-axis line at y=1 without it being overwritten by a white grid line.
documentclass[border=10pt]standalone
usepackagepgfplots
usepackagepgfplotstable
pgfplotssetcompat=newest
begindocument
pgfplotstableread[col sep=comma,header=false]
Cat A, 1.06
Cat B, 0.92
Cat C, 1.01
Cat D, 1.04
Cat E, 0.88
datatable
begintikzpicture
beginaxis[
ybar,
enlarge x limits=0.2,
height=4cm,
ymax=0.125,
ymin=-0.125,
xticklabels from table=datatable0,
xtick=data,
ytick=-0.1,-0.05,...,0.1,
yticklabels=0.90,0.95,1.00,1.05,1.10,
ytick pos=left,
ymajorgrids=true,
major grid style=thin,color=white,
axis on top,
ylabel=Normalized value,
x axis line style=draw opacity=0,
xtick style=draw=none,
xticklabel style=
rotate=90,
anchor=east,
]
addplot [fill=black,draw=none] table [x expr=coordindex, y expr=thisrowno1-1] datatable;
draw [black,thin] (rel axis cs:0,0.5) -- (rel axis cs:1,0.5);
endaxis
endtikzpicture
enddocument
If I remove axis on top
, the x-axis is drawn correctly, but then I lose the white grid lines over the vertical bars.
How can I change my plot such that the x-axis is drawn last or in such a way that it is drawn on top of the grid line?
pgfplots bar-chart
pgfplots bar-chart
New contributor
New contributor
edited 2 days ago
Stefan Pinnow
20.5k83578
20.5k83578
New contributor
asked Apr 22 at 5:11
jg95624jg95624
184
184
New contributor
New contributor
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
You can achieve this by using the set layers
feature. Then you simply need to draw the black line on the top most layer ...
% used PGFPlots v1.16
documentclass[border=5pt]standalone
usepackagepgfplots
usepackagepgfplotstable
pgfplotssetcompat=newest
begindocument
begintikzpicture
pgfplotstableread[
col sep=comma,
header=false,
]
Cat A, 1.06
Cat B, 0.92
Cat C, 1.01
Cat D, 1.04
Cat E, 0.88
datatable
beginaxis[
set layers, % <-- added
ybar,
enlarge x limits=0.2,
height=4cm,
ymax=0.125,
ymin=-0.125,
xticklabels from table=datatable0,
xtick=data,
ytick=-0.1,-0.05,...,0.1,
yticklabels=0.90,0.95,1.00,1.05,1.10,
ytick pos=left,
ymajorgrids=true,
major grid style=thin,color=white,
axis on top,
ylabel=Normalized value,
x axis line style=draw opacity=0,
xtick style=draw=none,
xticklabel style=
rotate=90,
anchor=east,
,
]
addplot [fill=black,draw=none] table [
x expr=coordindex,
y expr=thisrowno1-1,
] datatable;
pgfonlayeraxis foreground
draw [black,thin] (rel axis cs:0,0.5) -- (rel axis cs:1,0.5);
endpgfonlayer
endaxis
endtikzpicture
enddocument
add a comment |
This is somewhat a workaround
documentclass[border=10pt]standalone
usepackagepgfplots
usepackagepgfplotstable
pgfplotssetcompat=newest
begindocument
pgfplotstableread[col sep=comma,header=false]
Cat A, 1.06
Cat B, 0.92
Cat C, 1.01
Cat D, 1.04
Cat E, 0.88
datatable
begintikzpicture
beginaxis[
ybar,
enlarge x limits=0.2,
height=4cm,
ymax=0.125,
ymin=-0.125,
xticklabels from table=datatable0,
xtick=data,
ytick=-0.1,-0.05,...,0.1,
yticklabels=0.90,0.95,1.00,1.05,1.10,
ytick pos=left,
ymajorgrids=true,
major grid style=thin,color=white,
axis on top,
ylabel=Normalized value,
x axis line style=draw opacity=0,
xtick style=draw=none,
xticklabel style=
rotate=90,
anchor=east,
]
addplot [fill=black,draw=none] table [x expr=coordindex, y expr=thisrowno1-1] datatable;
endaxis
draw (rel axis cs:0.2,0.5) -- (rel axis cs:1.1,0.5);
endtikzpicture
enddocument
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
);
);
jg95624 is a new contributor. Be nice, and check out our Code of Conduct.
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%2f485995%2fchanging-order-of-draw-operation-in-pgfplots%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can achieve this by using the set layers
feature. Then you simply need to draw the black line on the top most layer ...
% used PGFPlots v1.16
documentclass[border=5pt]standalone
usepackagepgfplots
usepackagepgfplotstable
pgfplotssetcompat=newest
begindocument
begintikzpicture
pgfplotstableread[
col sep=comma,
header=false,
]
Cat A, 1.06
Cat B, 0.92
Cat C, 1.01
Cat D, 1.04
Cat E, 0.88
datatable
beginaxis[
set layers, % <-- added
ybar,
enlarge x limits=0.2,
height=4cm,
ymax=0.125,
ymin=-0.125,
xticklabels from table=datatable0,
xtick=data,
ytick=-0.1,-0.05,...,0.1,
yticklabels=0.90,0.95,1.00,1.05,1.10,
ytick pos=left,
ymajorgrids=true,
major grid style=thin,color=white,
axis on top,
ylabel=Normalized value,
x axis line style=draw opacity=0,
xtick style=draw=none,
xticklabel style=
rotate=90,
anchor=east,
,
]
addplot [fill=black,draw=none] table [
x expr=coordindex,
y expr=thisrowno1-1,
] datatable;
pgfonlayeraxis foreground
draw [black,thin] (rel axis cs:0,0.5) -- (rel axis cs:1,0.5);
endpgfonlayer
endaxis
endtikzpicture
enddocument
add a comment |
You can achieve this by using the set layers
feature. Then you simply need to draw the black line on the top most layer ...
% used PGFPlots v1.16
documentclass[border=5pt]standalone
usepackagepgfplots
usepackagepgfplotstable
pgfplotssetcompat=newest
begindocument
begintikzpicture
pgfplotstableread[
col sep=comma,
header=false,
]
Cat A, 1.06
Cat B, 0.92
Cat C, 1.01
Cat D, 1.04
Cat E, 0.88
datatable
beginaxis[
set layers, % <-- added
ybar,
enlarge x limits=0.2,
height=4cm,
ymax=0.125,
ymin=-0.125,
xticklabels from table=datatable0,
xtick=data,
ytick=-0.1,-0.05,...,0.1,
yticklabels=0.90,0.95,1.00,1.05,1.10,
ytick pos=left,
ymajorgrids=true,
major grid style=thin,color=white,
axis on top,
ylabel=Normalized value,
x axis line style=draw opacity=0,
xtick style=draw=none,
xticklabel style=
rotate=90,
anchor=east,
,
]
addplot [fill=black,draw=none] table [
x expr=coordindex,
y expr=thisrowno1-1,
] datatable;
pgfonlayeraxis foreground
draw [black,thin] (rel axis cs:0,0.5) -- (rel axis cs:1,0.5);
endpgfonlayer
endaxis
endtikzpicture
enddocument
add a comment |
You can achieve this by using the set layers
feature. Then you simply need to draw the black line on the top most layer ...
% used PGFPlots v1.16
documentclass[border=5pt]standalone
usepackagepgfplots
usepackagepgfplotstable
pgfplotssetcompat=newest
begindocument
begintikzpicture
pgfplotstableread[
col sep=comma,
header=false,
]
Cat A, 1.06
Cat B, 0.92
Cat C, 1.01
Cat D, 1.04
Cat E, 0.88
datatable
beginaxis[
set layers, % <-- added
ybar,
enlarge x limits=0.2,
height=4cm,
ymax=0.125,
ymin=-0.125,
xticklabels from table=datatable0,
xtick=data,
ytick=-0.1,-0.05,...,0.1,
yticklabels=0.90,0.95,1.00,1.05,1.10,
ytick pos=left,
ymajorgrids=true,
major grid style=thin,color=white,
axis on top,
ylabel=Normalized value,
x axis line style=draw opacity=0,
xtick style=draw=none,
xticklabel style=
rotate=90,
anchor=east,
,
]
addplot [fill=black,draw=none] table [
x expr=coordindex,
y expr=thisrowno1-1,
] datatable;
pgfonlayeraxis foreground
draw [black,thin] (rel axis cs:0,0.5) -- (rel axis cs:1,0.5);
endpgfonlayer
endaxis
endtikzpicture
enddocument
You can achieve this by using the set layers
feature. Then you simply need to draw the black line on the top most layer ...
% used PGFPlots v1.16
documentclass[border=5pt]standalone
usepackagepgfplots
usepackagepgfplotstable
pgfplotssetcompat=newest
begindocument
begintikzpicture
pgfplotstableread[
col sep=comma,
header=false,
]
Cat A, 1.06
Cat B, 0.92
Cat C, 1.01
Cat D, 1.04
Cat E, 0.88
datatable
beginaxis[
set layers, % <-- added
ybar,
enlarge x limits=0.2,
height=4cm,
ymax=0.125,
ymin=-0.125,
xticklabels from table=datatable0,
xtick=data,
ytick=-0.1,-0.05,...,0.1,
yticklabels=0.90,0.95,1.00,1.05,1.10,
ytick pos=left,
ymajorgrids=true,
major grid style=thin,color=white,
axis on top,
ylabel=Normalized value,
x axis line style=draw opacity=0,
xtick style=draw=none,
xticklabel style=
rotate=90,
anchor=east,
,
]
addplot [fill=black,draw=none] table [
x expr=coordindex,
y expr=thisrowno1-1,
] datatable;
pgfonlayeraxis foreground
draw [black,thin] (rel axis cs:0,0.5) -- (rel axis cs:1,0.5);
endpgfonlayer
endaxis
endtikzpicture
enddocument
answered 2 days ago
Stefan PinnowStefan Pinnow
20.5k83578
20.5k83578
add a comment |
add a comment |
This is somewhat a workaround
documentclass[border=10pt]standalone
usepackagepgfplots
usepackagepgfplotstable
pgfplotssetcompat=newest
begindocument
pgfplotstableread[col sep=comma,header=false]
Cat A, 1.06
Cat B, 0.92
Cat C, 1.01
Cat D, 1.04
Cat E, 0.88
datatable
begintikzpicture
beginaxis[
ybar,
enlarge x limits=0.2,
height=4cm,
ymax=0.125,
ymin=-0.125,
xticklabels from table=datatable0,
xtick=data,
ytick=-0.1,-0.05,...,0.1,
yticklabels=0.90,0.95,1.00,1.05,1.10,
ytick pos=left,
ymajorgrids=true,
major grid style=thin,color=white,
axis on top,
ylabel=Normalized value,
x axis line style=draw opacity=0,
xtick style=draw=none,
xticklabel style=
rotate=90,
anchor=east,
]
addplot [fill=black,draw=none] table [x expr=coordindex, y expr=thisrowno1-1] datatable;
endaxis
draw (rel axis cs:0.2,0.5) -- (rel axis cs:1.1,0.5);
endtikzpicture
enddocument
add a comment |
This is somewhat a workaround
documentclass[border=10pt]standalone
usepackagepgfplots
usepackagepgfplotstable
pgfplotssetcompat=newest
begindocument
pgfplotstableread[col sep=comma,header=false]
Cat A, 1.06
Cat B, 0.92
Cat C, 1.01
Cat D, 1.04
Cat E, 0.88
datatable
begintikzpicture
beginaxis[
ybar,
enlarge x limits=0.2,
height=4cm,
ymax=0.125,
ymin=-0.125,
xticklabels from table=datatable0,
xtick=data,
ytick=-0.1,-0.05,...,0.1,
yticklabels=0.90,0.95,1.00,1.05,1.10,
ytick pos=left,
ymajorgrids=true,
major grid style=thin,color=white,
axis on top,
ylabel=Normalized value,
x axis line style=draw opacity=0,
xtick style=draw=none,
xticklabel style=
rotate=90,
anchor=east,
]
addplot [fill=black,draw=none] table [x expr=coordindex, y expr=thisrowno1-1] datatable;
endaxis
draw (rel axis cs:0.2,0.5) -- (rel axis cs:1.1,0.5);
endtikzpicture
enddocument
add a comment |
This is somewhat a workaround
documentclass[border=10pt]standalone
usepackagepgfplots
usepackagepgfplotstable
pgfplotssetcompat=newest
begindocument
pgfplotstableread[col sep=comma,header=false]
Cat A, 1.06
Cat B, 0.92
Cat C, 1.01
Cat D, 1.04
Cat E, 0.88
datatable
begintikzpicture
beginaxis[
ybar,
enlarge x limits=0.2,
height=4cm,
ymax=0.125,
ymin=-0.125,
xticklabels from table=datatable0,
xtick=data,
ytick=-0.1,-0.05,...,0.1,
yticklabels=0.90,0.95,1.00,1.05,1.10,
ytick pos=left,
ymajorgrids=true,
major grid style=thin,color=white,
axis on top,
ylabel=Normalized value,
x axis line style=draw opacity=0,
xtick style=draw=none,
xticklabel style=
rotate=90,
anchor=east,
]
addplot [fill=black,draw=none] table [x expr=coordindex, y expr=thisrowno1-1] datatable;
endaxis
draw (rel axis cs:0.2,0.5) -- (rel axis cs:1.1,0.5);
endtikzpicture
enddocument
This is somewhat a workaround
documentclass[border=10pt]standalone
usepackagepgfplots
usepackagepgfplotstable
pgfplotssetcompat=newest
begindocument
pgfplotstableread[col sep=comma,header=false]
Cat A, 1.06
Cat B, 0.92
Cat C, 1.01
Cat D, 1.04
Cat E, 0.88
datatable
begintikzpicture
beginaxis[
ybar,
enlarge x limits=0.2,
height=4cm,
ymax=0.125,
ymin=-0.125,
xticklabels from table=datatable0,
xtick=data,
ytick=-0.1,-0.05,...,0.1,
yticklabels=0.90,0.95,1.00,1.05,1.10,
ytick pos=left,
ymajorgrids=true,
major grid style=thin,color=white,
axis on top,
ylabel=Normalized value,
x axis line style=draw opacity=0,
xtick style=draw=none,
xticklabel style=
rotate=90,
anchor=east,
]
addplot [fill=black,draw=none] table [x expr=coordindex, y expr=thisrowno1-1] datatable;
endaxis
draw (rel axis cs:0.2,0.5) -- (rel axis cs:1.1,0.5);
endtikzpicture
enddocument
answered Apr 22 at 5:24
JouleVJouleV
15.6k22667
15.6k22667
add a comment |
add a comment |
jg95624 is a new contributor. Be nice, and check out our Code of Conduct.
jg95624 is a new contributor. Be nice, and check out our Code of Conduct.
jg95624 is a new contributor. Be nice, and check out our Code of Conduct.
jg95624 is a new contributor. Be nice, and check out our Code of Conduct.
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%2f485995%2fchanging-order-of-draw-operation-in-pgfplots%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