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

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

[Octave-bug-tracker] [bug #44011] setting visible property on call to pl


From: Rik
Subject: [Octave-bug-tracker] [bug #44011] setting visible property on call to plot function creates figure window
Date: Thu, 15 Jan 2015 21:36:39 +0000
User-agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:34.0) Gecko/20100101 Firefox/34.0

Update of bug #44011 (project octave):

             Open/Closed:                    Open => Closed                 

    _______________________________________________________

Follow-up Comment #1:

This is the correct behavior.  When you call a graphics object routine and add
PROPERTY/VALUE pairs those parameters are passed to the object being created. 
The example code uses plot whose base graphics object is a line.  You can
check this with the following code.


h = plot (1:10, "visible", "off");
get (h, {"type"; "visible"})
ans = 
{
  [1,1] = line
  [1,2] = off
}


If you need an invisible figure you will have to start by creating the
invisible figure object.



    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?44011>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

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