how to change the dollar label to that of the local currency.
With i18n dynamically
<kendo-grid-column class="price-col" field="price" title="Price" [width]="80">
<ng-template kendoGridHeaderTemplate let-dataItem>
Price
<span class="grid-header-subtitle">(Intraday)</span>
</ng-template>
<ng-template kendoGridCellTemplate let-dataItem>
{{ dataItem.price | currency: 'EUR' }}
</ng-template>
</kendo-grid-column>