Colorbar font size decreases upon export
Afficher commentaires plus anciens
When I export my contours with colorbar labels, the font size is being decreased. Take, for example:
testx = 1:10; testy = 1:10; testc = [1:10].*ones(10,10);
figure,contourf(testx,testy,testc)
c = colorbar; c.Label.String = 'string'; c.Label.FontSize = 14;
Make this figure, go to File > Export setup > Export (I'm exporting to .eps) and the colorbar label will shrink. I have found other answer that would let me maintain a minimum size for ALL text, but I'd like the tick labels to remain small. Is there a way to prevent this?
Réponse acceptée
Plus de réponses (1)
Image Analyst
le 15 Mar 2021
0 votes
Have you tried exportgraphics(), if youre using r2020a or later? Or try using saveas().
1 commentaire
Daniel
le 15 Mar 2021
Catégories
En savoir plus sur Colorbar dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!