答案 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值。