我正在使用PivotTable.js来旋转报表的一些数据。在报告中,我需要显示总计为零的行,并希望在总计列中显示该零。使用aggregatorTemplates.sum时,零总和似乎是一个黑色单元格。我想知道是否有一种方法可以渲染零?

我正在做的一个简化示例是

var sum = $.pivotUtilities.aggregatorTemplates.sum;
var numberFormat = $.pivotUtilities.numberFormat;
var intFormat = numberFormat({digitsAfterDecimal: 0});

$("#output").pivot(
  [
    {color: "green", shape: "null", value: 0},
    {color: "blue", shape: "circle", value: 1},
    {color: "red", shape: "triangle", value: 2},
    {color: "blue", shape: "circle", value: 3},
    {color: "red", shape: "triangle", value: 4}
  ],
  {
    rows: ["color"],
    cols: ["shape"],
    aggregator: sum(intFormat)(["value"])
  }
);


这是来自https://pivottable.js.org/examples/simple_agg.html的示例,经过修改以说明我面临的问题。小提琴https://jsfiddle.net/rgs258/dky0hh1y/中也提供此功能。

作为第二个问题,我想知道在我的示例中是否可以隐藏“空”列?

任何帮助或建议解决此问题表示赞赏。

最佳答案

(我是图书馆作者:)

您可以通过创建区域设置文件来覆盖内置数字格式(隐藏零):https://github.com/nicolaskruchten/pivottable/wiki/Localization

您可以使用filterexclusions参数隐藏空列:https://github.com/nicolaskruchten/pivottable/wiki/Parameters

10-04 22:19