Forum Discussion
plover
3 years agoAdvocate II
Add SVG image to SVG Code
Hey there
I am attempting to create an SVG that simply has an Icon and some text next to it.
Ive been able to get this to work in a simple online SVG editor with the following code:
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 80'>
<image height='8' width='8' href='https://s2.coinmarketcap.com/static/img/coins/64x64/1.png'> </image>
<text x='9' y='6.5' style='font:normal 7px sans-serif;' fill='Blue'>- AAVE</text>
</svg>
Which shows -
However when i put that into a measure in PowerbI to display on a row it fails to render the image like this -
Any ideas?