Hi, I’ve been learning how to use svg to add a little more color to my apps and so far is an amazing tool to have. But it seems that some fonts that work just fine in browser don’t work on mobile, is there a way to get around this?
Here’s my code:
CONCATENATE(“data:image/svg+xml;utf8,
“
Mediciones
Distancia A (m)
”,
“
”, TEXT([Dist_A]),“
“,
“
Distancia B (m)
”,
“
”, TEXT([Dist_B]),”
“,
“
Distancia C (m)
”,
“
”, TEXT([Dist_C]),”
“,
“
Diámetro (m)
”,
“
”, TEXT([Diametro]) ,”
”,
“
Aguas arriba
”,
“
”, TEXT([Aguas_arriba]),“
”,
“
Aguas abajo
”,
“
”, TEXT([Aguas_abajo]),“
”,
“
Tapado de
alcantarilla (C)
”,
“
”, TEXT([Tapado_alcantarilla]),“
”,
“
”
)

