help-octave
[Top][All Lists]
Advanced

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

RE: removing text from graph (ahowe42)


From: financial engineer
Subject: RE: removing text from graph (ahowe42)
Date: Tue, 27 Mar 2012 21:45:33 -0400




Date: Tue, 27 Mar 2012 14:44:13 +0200
Subject: Re: FW: removing text from graph (ahowe42)
From: address@hidden
To: address@hidden

Hi,

A way to delete a particular text with string e.g. "toto", is to retrieve its handle with findobj (provided there is only one text object with string "toto"). Assuming it is in the current figure :

h = findobj (gcf, "type", "text", "string", "toto");
delete (h);

Pantxo

_______________________________________________ Help-octave mailing list address@hidden https://mailman.cae.wisc.edu/listinfo/help-octave

Thanks Pantxo,
I will be adding a bunch of B and S signals on my timeseries, so the findobj is handy to know as well...Bobby

reply via email to

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