print thousand delimiter (of whatever they are called)

This commit is contained in:
ahr
2017-11-06 17:21:45 +01:00
parent 78671a2d8c
commit f8c03c434e

View File

@@ -218,7 +218,7 @@ public class Plotter {
} }
result.append(" ("); result.append(" (");
result.append(values); result.append(String.format("%,d", values));
result.append(")"); result.append(")");
return result.toString(); return result.toString();