What happend about my plotting style
4 views (last 30 days)
Show older comments
As I know that starting in R2014b, MATLAB graphics titles use a bold and slightly larger font for better visibility. I am using R2014b, what happend to my plotting style?
The left is a example picture from help center, the right is my plotting. You can see the difference between the titles.
0 Comments
Accepted Answer
Mike Garrity
on 27 Feb 2015
What happens if you do the following?
get(gca,'FontSize')
get(get(gca,'Title'),'FontSize')
get(get(gca,'Title'),'FontWeight')
My guess is that it's going to be something interesting about your font, so you should probably also do this:
get(gca,'FontName')
3 Comments
Mike Garrity
on 2 Mar 2015
I think I've figured it out.
From your screenshot, it looks like your locale is Chinese. Is that correct? It turns out that the visual designer who added the bold to the title felt that it didn't look good with Kanji characters because they tend to be quite a bit more complex than Roman characters. The way this was implemented was to look at the locale. If is CN, JP, or KR, then the factory default for the title's FontWeight is normal instead of bold.
In your example, this is probably not a great decision. Even though your locale is CN, you have Roman characters in your title. We should see if we can find a way to be smarter about that.
You can workaround the factory default by adding something like this to your startuprc.
set(0,'DefaultAxesTitleFontWeight','bold')
More Answers (2)
Image Analyst
on 27 Feb 2015
It could be that the font MATLAB actually uses to create the figure is different than what's in the help. I don't know how they got that picture in the help. Maybe the process of copying and pasting it in there caused things to adjust slightly. You know that you have control over the appearance of the title via input arguments like 'FontSize', etc. in the title() function.
0 Comments
Tom
on 27 Feb 2015
An example of how to change the appearance of the title would be:
title('Title String','fontweight','bold','fontsize',14)
This is what I typically do.
0 Comments
See Also
Categories
Find more on Graphics Object Properties 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!