We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b8bf19 commit 0415e3dCopy full SHA for 0415e3d
source/js/PivotView.js
@@ -769,7 +769,7 @@ PivotView.prototype.renderRawData = function (data) {
769
element.textContent = value ? _.numeral(value).format(format) : "";
770
} else if (value && info.defaultFormat) {
771
element.textContent = _.numeral(value).format(
772
- info.defaultFormat[value % 1 === 0 ? "int" : "double"]
+ value % 1 === 0 ? "#,###" : "#,###.##"
773
);
774
} else {
775
element.textContent = value || "";
0 commit comments