d3:绘制为累积图

时间:2016-04-19 01:19:45

标签: d3.js graph cumulative-line-chart

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

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

1 个答案:

答案 0 :(得分:1)

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

即:

[0, 2, 4, 2, 2].reduce(function(previousValue, currentValue, currentIndex, array) {
  console.log(previousValue + currentValue);//2,6,8,10
  return previousValue + currentValue;
});