display an icon (in png format) in a cell of a uitable
Mostrar comentarios más antiguos
Hi,
I need to build a table that displays the status of a service in a GUI I am working on. I am using the uitable to display this information. In the first column I need to place the required icon (tick if on, cross if off etc). I can't seem to find how to do this anywhere. I have no clue at all. Please help.
Thanks. Varsha
Respuesta aceptada
Más respuestas (1)
Walter Roberson
el 10 de Feb. de 2011
There is no documented way to do this.
You can take advantage of the fact that text cells will be interpreted as HTML if they are in the proper format, such as
'<HTML><IMG="http://mathworks.com/logo.tif" >'
Using that I have been able to get the "broken link" icon, but I have not yet been able to get an actual image up. And you have to do nasty things to cell widths and fontsize to make room for the image.
1 comentario
Jan
el 13 de Jun. de 2011
Try an existing and local file:
pic = fullfile(matlabroot, 'toolbox', 'image', 'icon', 'icon_info.png');
uitable('Data', {['<html><img src="file:/', pic, '"></html>']})
Categorías
Más información sobre Entering Commands en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!