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: Position and DataAspectRatio
    ... > Continuing to battle with Matlab graphics. ... The axes is not simply the white area that you see; ... axes object is flush with the left-hand side of the window, ... ratio, so it can stretch to fill the entire extent of the axes object. ...
    (comp.soft-sys.matlab)

Loading