IgrGrid の通貨型 (dataType=”currency”) の IgrColumn で日本円のカンマ区切りの表示にするには、currencyCode = “JPY” を設定した IgrColumnPipeArgs オブジェクトを pipeArgs に設定してください。

const formatOptions: IgrColumnPipeArgs = {} as IgrColumnPipeArgs;
formatOptions.currencyCode = "JPY";

<IgrGrid ...>
  <IgrColumn field="price" header="Price" dataType="currency" pipeArgs={formatOptions} />
</IgrGrid>

 

実行結果

 

 

Tagged: