Hi Harish,
Greetings from Syncfusion support.
We checked your query and provided information. Based on that we infer that you want to display an image in the Grid column. For this we suggest you to use Column Template feature of Grid to display the custom element instead of a field value in the column.
Please refer the below code example, screenshot and sample for more information.
Code Example:
<ejs-grid #grid [dataSource]="data">
<e-columns>
<e-column headerText="Employee Image" width="150" textAlign="Center">
<ng-template #template let-data>
<div class="image">
<img
alt="{{data.EmployeeID}}"
/>
</div>
</ng-template>
</e-column>
</e-columns>
</ejs-grid> |
Screenshot: