octave-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-bug-tracker] [bug #65114] axes visible 'on' does not display axe


From: Rik
Subject: [Octave-bug-tracker] [bug #65114] axes visible 'on' does not display axes children
Date: Thu, 4 Jan 2024 13:28:54 -0500 (EST)

Follow-up Comment #7, bug#65114 (group octave):

It sounds like an hggroup might be helpful.  You can put graphics objects into
an hggroup and then control the visibility of everything in the group with one
command.  Here is a sample session


hax = axes
hg = hggroup 
help plot
plot (1:10, 'ob-', 'parent', hg)
hold on
plot (10:-1:1, 'xr-', 'parent', hg)
hold off
set (hg, 'visible', 'off')
set (hg, 'visible', 'on')





    _______________________________________________________

Reply to this item at:

  <https://savannah.gnu.org/bugs/?65114>

_______________________________________________
Message sent via Savannah
https://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]