crossfilter如何简单地从一组中的值中获得总和
给定一个交叉过滤组,可以将这个对象缩减为一个键值对:
[
{ key: A, value: 75 },
{ key: B, value: 35 }
]
(饼图类型数据),如何获取值的总和(本例中为110)? 有没有我无法找到的快速xfilter方法?
示例小提琴在这里
链接地址: http://www.djcxy.com/p/32803.html上一篇: crossfilter how to simply get the sum total from the values in a group