LEGEND TITLE
16 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ross
el 15 de Feb. de 2012
Comentada: Eyal Ben-Hur
el 23 de Jun. de 2017
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.
0 comentarios
Respuesta aceptada
Andrew Newell
el 15 de Feb. de 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 comentarios
Eddy Barratt
el 26 de Ag. de 2016
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)').
Más respuestas (0)
Ver también
Categorías
Más información sobre Legend en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!