How can I disable font smoothing by default for all text , legend, marker, axes object within a plot?

4 次查看(过去 30 天)
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.

回答(3 个)

Naman Bhaia
Naman Bhaia 2019-2-26
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.

UM Moeller
UM Moeller 2019-2-26
This is working on single figure basis, it is not working as a default setting.
Meaning you would have to add code for every single figure, or apply this afterwards, aafter inserting a legend.
How annoying...
My example above is showing a data tip not a legend.
With a data tip your code is not working at all.
What to do ?

UM Moeller
UM Moeller 2019-3-1
Anymore suggestions?

类别

Help CenterFile Exchange 中查找有关 Legend 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by