I am using iReports to generate Reports. I want to display the GrandTotal fields in Indian Numbering Format. For Example,
Value: 1,000,000 should be displayed as 10,00,000
I tried using Pattern of text field properties, but not able to get the result. And in some forums they have mentioned to use JRParameter.REPORT_LOCALE. I tried this way
Locale locale = new Locale("en", "IN");
parameters.put(JRParameter.REPORT_LOCALE, locale);
where parameters is a map which is then used to fill report.
Any help is appreciated
Thanks