Changing order of draw operation in PGFPlots Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)Can 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
Is it OK if I do not take the receipt in Germany?
Why are two-digit numbers in Jonathan Swift's "Gulliver's Travels" (1726) written in "German style"?
How do Java 8 default methods hеlp with lambdas?
My mentor says to set image to Fine instead of RAW — how is this different from JPG?
How to ask rejected full-time candidates to apply to teach individual courses?
Inverse square law not accurate for non-point masses?
The Nth Gryphon Number
How to get a flat-head nail out of a piece of wood?
Fit odd number of triplets in a measure?
Keep at all times, the minus sign above aligned with minus sign below
Why complex landing gears are used instead of simple, reliable and light weight muscle wire or shape memory alloys?
Does the main washing effect of soap come from foam?
Pointing to problems without suggesting solutions
New Order #6: Easter Egg
What does 丫 mean? 丫是什么意思?
Hide attachment record without code
draw a pulley system
Is honorific speech ever used in the first person?
An isoperimetric-type inequality inside a cube
Improvising over quartal voicings
How do I find my Spellcasting Ability for my D&D character?
How to resize main filesystem
Magento 2 - Add additional attributes in register
How do I say "this must not happen"?
Changing order of draw operation in PGFPlots
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)Can 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 3 hours ago
Stefan Pinnow
20.4k83578
20.4k83578
New contributor
asked 4 hours ago
jg95624jg95624
183
183
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');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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 3 hours ago
Stefan PinnowStefan Pinnow
20.4k83578
20.4k83578
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 3 hours ago
JouleVJouleV
14.8k22666
14.8k22666
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');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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