My application is built using Angularjs and ionic, using a cord for a hybrid mobile application, when I try to display the svg content received from the backend, the application cannot display the expected diagram.
This is what my code looks like
<ion-tab title="Diagram" icon-on="mcfly">
<ion-view>
<ion-content class="padding" ng-class="{'has-loading': header.isLoading}">
<h4>System Diagram</h4>
{{diagram}}
</ion-content>
</ion-view>
</ion-tab>
But what I see is svg data instead of image, is there any missing ad or thing?
thanks
source
share