how to make the figures labels centered within the figure limits?
3 views (last 30 days)
Show older comments
Hi, I created a figure with several subplots (as shown in the attachment). The problem is the subplots labels are extended over their neighbors. How to over come this issue, please? The other thing is that the text in red I want to center it ?
Thanks,
0 Comments
Answers (2)
Gayatri Menon
on 9 Apr 2018
Hi,
You could try changing the font size of the labels.For this, you could use 'FontSize' property.For changing the Text color use 'Color' property. For more information, please refer the below link:
Hope the above helps.
Thanks
Walter Roberson
on 12 Apr 2018
Create a uipanel around each subplot. The clipping imposed by the panel will clip the y labels.
Or... change the labels to be less wide. For example, put \newline into them to cause them to span multiple lines, such as
ax1.YLabel.String = 'you know what? This \newline is a really pretty silly \newline long y label would you \newline not say?'
which breaks the label up over 4 lines. Then you start worrying about headroom in the width, but the label remains visible.
With regards to the red text: At the moment you have set the Position for it to be [0 0.5 0] in each case. Instead use [0.5 0.5 0], and set the HorizontalAlignment property to 'center'
0 Comments
See Also
Categories
Find more on Axis Labels 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!