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: Markus Mützel
Subject: [Octave-bug-tracker] [bug #65114] axes visible 'on' does not display axes children
Date: Thu, 4 Jan 2024 07:27:19 -0500 (EST)

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

That is the expected behavior. You explicitly set the visibility of the line
object to "off" with the following command:

set(get(ax1, 'children'), 'visible', 'off'); % plot3 is an ax1 child.


If you'd like to set the visibility to "on" after that, you'd need to do that
explicitly, too. E.g., with the following command:

set(get(ax1, 'children'), 'visible', 'on');


Changing the visibility of an axes object shouldn't touch the visibility of
its children. That seems to be working as expected.
And it is compatible to what Matlab does.

Closing as invalid. But please comment if I misunderstood what you mean.




    _______________________________________________________

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]