App Designer’s UIAxes do not automatically wrap long axis labels. However, you can manually force multiple lines by inserting newline characters (\n) or by assigning a cell array of strings. For example:
app.UIAxes.XLabel.String = sprintf("Long Label Text\n(Continued Here)");
or
app.UIAxes.XLabel.String = {"Long Label Text", "(Continued Here)"};
Either approach displays a multi-line label. Keep in mind there’s no built-in “auto-wrap,” so you’ll need to decide where to insert the line breaks.
Follow me so you can message me anytime with future questions. If this helps, please accept the answer and upvote it as well.