saveas figure containing modified data tips in data cursor
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
I have a piece of code in which I modify the data tips that can be visualized with the data cursor. Everything works fine, i.e. the figure in the GUI shows the new data tips that I have added, but when I save the figure with the command saveas(), the saved picture does not show the new data tips in the data cursor. Is a fault in the saveas command? Is there anything that I have missed?
Here is the piece of code that I currently use:
figA=figure('name','Test');
h=plot(....);
addTagCursor(h,...);
hold on
h=plot(...);
addTagCursor(h,...);
saveas(figA, myfolder);
Thanks for help!
0 Commenti
Risposte (0)
Vedere anche
Categorie
Scopri di più su Printing and Saving in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!