Is it possible to render regular HTML code in ionic? The reason behind is i want to render a chart, that is generated by a python code (Using Altair)
Thanks.
Is it possible to render regular HTML code in ionic? The reason behind is i want to render a chart, that is generated by a python code (Using Altair)
Thanks.
You can render regular html in ionic.
Let's assume you want to render the chart into an ion-item
The code goes something like this
    <ion-list>
         <ion-item>
          <!-- Some code, you may use *ngFor to display the entire data -->
          Example: <div class="exClass"><!-- May be a table -->{{ someData }}</div>
         </ion-item>
    </ion-list>