Align the Legend Title to the Legend body

36 views (last 30 days)
Sim
Sim on 14 Sep 2020
Commented: Sim on 23 Sep 2020
Hi, How can I align the Legend Title to the Legend body (variables, etc..)? Maybe left-aligned ?
  5 Comments
Adam Danz
Adam Danz on 14 Sep 2020
I'd be interesting in whatever you find.

Sign in to comment.

Answers (1)

Ayush Gupta
Ayush Gupta on 18 Sep 2020
The legend title is by-default left aligned to legend body. Refer to the code below which generates the following picture and read the documentation on how to add legend title, here.
x = linspace(0,pi);
y1 = cos(x);
plot(x,y1)
hold on
y2 = cos(2*x);
plot(x,y2)
hold off
lgd = legend('cos(x)','cos(2x)');
title(lgd,'My Legend Title')
  6 Comments
Sim
Sim on 23 Sep 2020
Oh cool, thanks a lot for highlighting that feature... So, if not working for the Legends, my MATLAB ticket opening was worth it :)

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!