我不知道为什么我的数据流无法正常工作。我有2个数据流。一个具有负值,一个具有正值。 问题是,流2(蓝条)不是从我的图表中的零线开始。这些酒吧高度很高 - 大约200px(向下隐藏) 有人知道为什么会这样吗?可能是原因,流不相等吗?
nv.addGraph(function() {
var chart = nv.models.multiBarChart();
chart.xAxis
.tickFormat(d3.format(',f'));
chart.yAxis
.tickFormat(d3.format(',.1f'));
chart.multibar.stacked(true); // default to stacked
chart.showControls(false); // don't show controls
d3.select('#chart svg')
.datum(myData.uas.data)
.transition().duration(500).call(chart);
nv.utils.windowResize(chart.update);
return chart;
});
希望有人能给我一个提示。
干杯K。