how to make the figures labels centered within the figure limits?

1 view (last 30 days)
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,

Answers (2)

Gayatri Menon
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
  1 Comment
Alaa Hameed
Alaa Hameed on 12 Apr 2018
Thanks Gayatri for your answer. That may solve a part of the problem, but it is still not answering my question. What I wanted is that the label dose not go beyond the axis limits, as shown in the figure!

Sign in to comment.


Walter Roberson
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'

Community Treasure Hunt

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

Start Hunting!