I created a component to render SVG images that are within my app.
The are loaded dynamically as the however, my demo app just show a simpler version.
http://plnkr.co/edit/g2tZXeUAMJ5zESx2EHT0?p=info
i tried <div [innerHTML]="data"></div>
and <div> {{ data }} </div>
The SVG is not being loaded though the call is correct. I spent sometime in gitter to find a solution but the closest i got was it it's being sanitzed.
The innerHTML i assume is being sanitzed and the interpolation is being ignored. It just shows the raw svg text.
Thanks