Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Given a plot of three curves in a .fig file I'd like to add another plot (with hold all and plot), but put it behind one of the already existing curves (i.e. make sure the last original curve stays the foreground one). Can this be achieved without having to extract the plot data and re-plotting?

share|improve this question

1 Answer

up vote 18 down vote accepted

If you know the handle of line you want on top (e.g. because you called h = plot(...), you can use UISTACK

uistack(h,'top')

Alternatively, you can manipulate the order of children of your current axes directly. The following puts the last-most curve on top.

chH = get(gca,'Children')
set(gca,'Children',[chH(end);chH(1:end-1)])
share|improve this answer
thanks. I load a previously generated .fig file for the figure, can the handles be extracted from that somehow? – Tobias Kienzler Oct 6 '11 at 13:50
@TobiasKienzler: see my edit – Jonas Oct 6 '11 at 13:51
perfect, thank you – Tobias Kienzler Oct 6 '11 at 14:02
+1 Thanks for sharing this. – Chris A. Oct 6 '11 at 18:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.