Re: how to layer objects on GUI axes?



The returned values are Matlab graphics handles. Check the
documentation for more detail.

To reverse the order of children in the axes:

AxesChildren = get(handles.MyAxes, 'Children');
AxesChildren = flipud(AxesChildren);
set(handles.MyAxes, 'Children', AxesChildren)


.



Relevant Pages

  • Re: fighting with graphics
    ... > Getting to grips with graphics in Matlab is an uphill battle. ... > There seem to be some very weird features or bugs in both documentation ... That's not what the axes Units property ...
    (comp.soft-sys.matlab)
  • Possible inconsistencies in handle graphics??
    ... DataAspectRatio" started by me: ... According to the documentation for XLim as a property: ... Since it's already inconsistent, what is shown on the screen is ... does not cover the extent of the axes, as it should, according to the ...
    (comp.soft-sys.matlab)
  • Re: Position and DataAspectRatio
    ... > clearly on the righthand side of the white portion of the axes. ... This was a trick taught to me by Steve, ... documentation does not state that the box will enclose the entire axis ... but rather the plotting extent of the axis. ...
    (comp.soft-sys.matlab)
  • Re: Reverse engineering != piracy (was Re: RosAsm disassembler output vs. IDA Pro)
    ... My main purpose of using ASM is for reverse engineering, ... because the official documentation was so wrong on some points that it was ... >disassembler the way that Rene is suggesting. ...
    (alt.lang.asm)
  • Re: Issue with images in GUIDE
    ... > folder with the image and the .m file, Matlab opens the interface but> it ... it just shows the axes. ... Note there can be some gotchas involved in compiling a GUI; read through this section of the documentation first. ...
    (comp.soft-sys.matlab)