Hi Alex,
Thanks for contacting Syncfusion support.
We checked your query and provided sample. Based on that we suggest you to use the “currencyCode” property of Grid to export “EUR” currency to excel. Please refer the below code example for more information.
Code Example:
<template>
<div id="app">
<ejs-grid ref="grid" :dataSource="data" currencyCode="EUR" :allowExcelExport="true" :toolbar="['ExcelExport']" :toolbarClick="toolbarClick">
<e-columns>
<e-column field='OrderID' headerText='Order ID' textAlign='Right' width=90></e-column>
<e-column field='CustomerID' headerText='Customer ID' width=120></e-column>
<e-column field='Freight' headerText='Freight' textAlign='Right' format='C2' width=90></e-column>
</e-columns>
</ejs-grid>
</div>
</template> |
Screenshot:
Please get back to us if you need further assistance.
Regards,
Praveenkumar G