关于NVD3多柱/堆积条形图,我有点腌渍。
我几乎所有的图表都有效,除非你选择堆叠选项,没有任何反应。
下图显示了选中堆叠时的效果,并保留为分组图表。
修改
这是jsfiddle - http://jsfiddle.net/kd82ep7p/1/
我使用的代码低于 -
var chart;
nv.addGraph(function() {
chart = nv.models.multiBarChart()
.color(d3.scale.category10().range())
.rotateLabels(0) //Angle to rotate x-axis labels.
.transitionDuration(300)
.showControls(true) //Allow user to switch between 'Grouped' and 'Stacked' mode.
.groupSpacing(0.24) //Distance between each group of bars.
;
chart.reduceXTicks(false).staggerLabels(true).groupSpacing(0.3);
chart.x(function(d) { return d.x; });
chart.y(function(d) { return d.y; });
d3.select('#chart1 svg')
.datum(negative_test_data)
.call(chart);
nv.utils.windowResize(chart.update);
return chart;
});
任何帮助都非常感激。