SVG en Display Name

Hola,

Hay alguna manera de colocar un icono SVG en el titulo de una columna?

Captura de Pantalla 2023-08-04 a la(s) 12.07.10.png

Cuando escribo el codigo SVG lo muestra como texto  en el form

Captura de Pantalla 2023-08-04 a la(s) 12.06.23.png

CONCATENATE("data&colon;image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='rgb(197,158,122)' viewBox='0 0 512 512'><path d='M0 448V64h18v384H0zm26.857-.273V64H36v383.727h-9.143zm27.143 0V64h8.857v383.727H54zm44.857 0V64h8.857v383.727h-8.857zm36 0V64h17.714v383.727h-17.714zm44.857 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm35.715 0V64h18v383.727h-18zm44.857 0V64h18v383.727h-18zm35.999 0V64h18.001v383.727h-18.001zm36.001 0V64h18.001v383.727h-18.001zm26.857 0V64h18v383.727h-18zm45.143 0V64h26.857v383.727h-26.857zm35.714 0V64h9.143v383.727H476zm18 .273V64h18v384h-18z'/></svg>")

Gracias.

0 4 260
4 REPLIES 4

NO, no se puede

 

Gracias @Fernando_Lopez1 

JSO
Silver 2
Silver 2

I think you have to change something. It is important that the field is an image type but that it contains a text (for this it must be enclosed in quotation marks). In the SVG code, the things that are in quotes must be surrounded by other quotes and so AppSheet interprets them correctly.

Leave the code like this:

"data&colon;image/svg+xml;utf8,
    <svg xmlns=""http://www.w3.org/2000/svg""
    fill=""rgb(197,158,122)"" viewBox=""0 0 512 512"">
    <path d=""M0 448V64h18v384H0zm26.857-.273V64H36v383.727h-9.143zm27.143
    0V64h8.857v383.727H54zm44.857 0V64h8.857v383.727h-8.857zm36 0V64h17.714v383.727h-
    17.714zm44.857 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm18
    0V64h8.857v383.727h-8.857zm35.715 0V64h18v383.727h-18zm44.857 0V64h18v383.727h-18zm35.999
    0V64h18.001v383.727h-18.001zm36.001 0V64h18.001v383.727h-18.001zm26.857 0V64h18v383.727h-
    18zm45.143 0V64h26.857v383.727h-26.857zm35.714 0V64h9.143v383.727H476zm18 .273V64h18v384h-
    18z""/>
  </svg>
"

Result:

JSO_0-1691230556829.png

 

 

Thanks @JSO 

Top Labels in this Space