Change color of annotations on saved figure

3 views (last 30 days)
Hi all,
How would I go about changing the color and size of text or text arrows in a MATLAB figure that have been saved. I know how to do it for data that has been plotted within the figure with the get and set function. Didn't know if I could do it for text and text arrows or what name they would go by in the strct variable from get.
Thanks in advance!

Answers (1)

Walter Roberson
Walter Roberson on 7 Aug 2015
If it is a .fig file then
hfig = openfig('FigFileName.fig');
This will open the figure and make it visible and return its handle in hfig, after which you can findobj() and get() and set() and so on.

Categories

Find more on Migrate GUIDE Apps in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!