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

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

[Octave-bug-tracker] [bug #49980] plotyy fails after previous plot


From: Pantxo Diribarne
Subject: [Octave-bug-tracker] [bug #49980] plotyy fails after previous plot
Date: Wed, 4 Jan 2017 17:43:05 +0000 (UTC)
User-agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:50.0) Gecko/20100101 Firefox/50.0

Follow-up Comment #4, bug #49980 (project octave):

My approach in general (see annotation.m for figure listeners) is something
like this:


hax = axes ();
ht = text ();
update_txt = @(h, d, htxt) set (htxt, "string", disp (get (h, "color")));
lsn = {update_txt, ht};
addlistener (hax, "color", lsn)
del_lsn = @() dellistener (hax, "color", lsn);
addlistener (ht, "beingdeleted", del_lsn)



    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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