3

d3是否具有将数据集绘制为累积图的内置方法?

例如,如果 y 值为: [2, 4, 2, 2],我希望它们实际上被绘制为: [2, 6, 8, 10]。d3 是否有办法做到这一点,还是我必须遍历数据集并手动执行此操作?

4

1 回答 1

2

您可以查看https://github.com/mbostock/d3/wiki/Arrays了解更多信息,但我认为您可以在此处使用 reduce() 函数。

IE:

[0, 2, 4, 2, 2].reduce(function(previousValue, currentValue, currentIndex, array) {
  console.log(previousValue + currentValue);//2,6,8,10
  return previousValue + currentValue;
});
于 2016-04-19T05:26:41.750 回答