I am using the following command line to change the text of a figure's default legend:
legend('820mm','750mm','680mm','585mm','470mm','Location','NE');
but would like to add what the measurements relate to in a LEGEND TITLE, eg. 'Panel sizes (mm)'. Then I don't have to have 'mm' on every line and don't have to say what they measure elsewhere.
Shouldn't be difficult but can't find it in help. Would somebody kindly help please?
Thank you.

 Accepted Answer

Andrew Newell
Andrew Newell on 15 Feb 2012
There is a lot of information buried in layers of handle graphics. You can do the following:
hleg = legend('820mm','750mm','680mm','585mm','470mm','Location','NE');
htitle = get(hleg,'Title');
set(htitle,'String','Panel sizes (mm)')
Use get(htitle) to see a lot of other properties you can manipulate.

4 Comments

Ross
Ross on 15 Feb 2012
Thanks Andrew. Works without sweat! Some finessing to put the title in the box but with the handle you've given me that's great.
Ali
Ali on 24 Aug 2016
It seems this is not working anymore on R2015b.
I believe there are easier options in more recent versions of MATLAB. Certainly the R2016a online documentation for legend suggests that you can simply call
title(hleg, 'Panel sizes (mm)').
Eyal Ben-Hur
Eyal Ben-Hur on 23 Jun 2017
If you get in trouble while setting the title, take a look here

Sign in to comment.

More Answers (0)

Asked:

on 15 Feb 2012

Commented:

on 23 Jun 2017

Community Treasure Hunt

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

Start Hunting!