Column names wrap around into two or more lines.
13 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Franc
el 30 de Mzo. de 2019
Comentada: Eddy Fry
el 26 de Abr. de 2022
Hi All, Is there a way to have column names wrap around into two or more lines
4 comentarios
Walter Roberson
el 31 de Mzo. de 2019
Ah, uitable is different than table() objects.
Are you working with traditional figures, or are you working with App Designer? uitables are quite different internally between the two.
Respuesta aceptada
Walter Roberson
el 31 de Mzo. de 2019
Traditional uitable() are based on java objects that happen to support HTML constructs. You can begin any ColumnName entry with '<html>', and then after that, at the point you want to move to the next line, put in '<br>'
For example, an entry of '<html>this is a long line,<br>but split'
If you needed automatic adjustment as the widths were resized, then in theory you could use '<html><table>' but it probably won't work well, even if you use '<html><table width="20%"><tr>this is a long long' . It isn't that playing with the width= with percentages or absolute pixels does nothing, but it just doesn't usually do what you would like.
3 comentarios
Walter Roberson
el 7 de Oct. de 2020
uitable inside app designer use completely different formatting methods. I do not know the details.
Eddy Fry
el 26 de Abr. de 2022
I found that uitable appears to use ASCII, so using newline (ASCII character decimal 10) gives multiple line column headings (using 2022a).
For example:
t.ColumnName = {'Signal' ['Carrier' newline 'Frequency' newline '(Hz)']};

Más respuestas (0)
Ver también
Categorías
Más información sobre Develop Apps Using App Designer 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!
