How can I disable font smoothing by default for all text , legend, marker, axes object within a plot?
6 views (last 30 days)
Show older comments
How can I disable font smoothing by default for all text , legend, marker, axes object within a plot?
Smoothed Text object , legends, Datamarkers, axes labels look very poor and blurry currently.
How can this be turned off by default ?
Don't want to apply this to all figures on a singular base.
Thank you for your help.
0 Comments
Answers (3)
Naman Bhaia
on 26 Feb 2019
You can try the following commands
set(groot,'defaultAxesFontSmoothing', 'off');
set(groot,'defaultTextFontSmoothing', 'off');
And if you want the change to be persistent you can put those two commands in the ‘startup.m’ file.
At this point you can not turn of the font smoothing for legends but it should be available in upcoming version soon.
2 Comments
Naman Bhaia
on 26 Feb 2019
Try refrencing the object of the graph you want as a child of the graph as follows:
plot(1:10)
[h,objs] = legend('one')
objs(1).FontSmoothing='off'
See Also
Categories
Find more on Legend 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!