nvd3 multiBarChart achive数据用于比较多个值

时间:2017-03-26 19:17:47

标签: angular nvd3.js

我如何为nvd3 multiBarChart

获取数据

enter image description here

1 个答案:

答案 0 :(得分:0)

你看过the multibarchart example了吗?您只需要确保数据点具有相同的xValue。

他们用于生成数据的代码是:

var negative_test_data = new d3.range(0,3).map(function(d,i) {
    return {
        key: 'Stream' + i,
        values: new d3.range(0,11).map( function(f,j) {
            return {
                y: 10 + Math.random()*100 * (Math.floor(Math.random()*100)%2 ? 1 : -1),
                x: j
            }
        })
    };
});

请注意,x:j将导致每个系列共享相同的x值。