java - Format of thousands to export Excel - DynamicReports -
i'm using dynamicreports 4.0 , i'm having 1 problem export number , decimal values in excel. values appears in text format , need values appears in numbers format , decimals in format "#,###.##".
i need values in title , not working:
horizontallistbuilder hlb = cmp.horizontallist(); hlb.newrow().add( cmp.text(1000).setpattern("#,###.##") ); componentbuilder<?, ?> componentbuilder = hlb;
i hope can me.
thanks lot
hlb.newrow().add( cmp.text("1000").setpattern("#,###.##") );
Comments
Post a Comment