how to wite html code to color background of aparticular uitable by using app designer ?
    2 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    joe
 el 5 de Jun. de 2019
  
    
    
    
    
    Comentada: Walter Roberson
      
      
 el 10 de Jul. de 2019
            Hi everyone.
my question is how to edite color of particular cell (Table) in app designer by using html code?
for normal figure it works perfect.
data={1 2 3; 1 2 3; 1 2 3};
Content='Fehler'
textZ{1,1}=[strcat(['<html><body bgcolor="#FFFF00" text="#111111" width="100px">'],Content)]
data(2,2) = textZ;
f=figure() 
h=uitable(f,'Data', data)
But when I change figure() by uifigure, it doesn't work.  
data={1 2 3; 1 2 3; 1 2 3};
Content='Fehler'
textZ{1,1}=[strcat(['<html><body bgcolor="#FFFF00" text="#111111" width="100px">'],Content)]
data(2,2) = textZ;
f=uifigure 
h=uitable(f,'Data', data)
any help ?
thank you in advance
0 comentarios
Respuesta aceptada
  Walter Roberson
      
      
 el 5 de Jun. de 2019
        App Designer is based upon different technology, and does not support html for the entries.
2 comentarios
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!

