Why are some characters chopped off on the bottom in plots?
1 view (last 30 days)
Show older comments
Below is an example of text from a legend. The top line is chopped but the lower line is not.
Here is some code that can generate the ugliness for you (unless I am mistaken). Just look at the Y-axis text.
figure;
plot([0,1],[0,1])
set(gca,'fontsize',18)
If you increase the fontsize to 19 or larger points then the issue seems to go away. What is going on?
2 Comments
Walter Roberson
on 9 Jan 2020
Are you using... Ummm, let me think... R2015b?? On Linux??
There was a release which cut off text at the boundary on Linux systems. The easiest fix was to nudge the YLim to go down a bit further.
There was also an old release that the problem happened on Windows, and the solution had to do with changing the figure Renderer property.
Answers (1)
Hiro Yoshino
on 9 Jan 2020
figure;
plot([0,1],[0,1],[0,1],[0,1])
set(gca,'fontsize',18)
legend('nissio', 'pop.');
Mine did work well with R2019b.
See Also
Categories
Find more on Annotations 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!