我将 NVD3 与 Flask 一起使用,并且在 x 轴上有日期。
如您所见,x 轴上的线与点不重合。我在 x 轴上打印出日、月、年和小时。我不明白为什么日期不是等距的,即“小时”不一样,即使我的 x 轴数据是一样的,所以这些线相隔超过“24 小时”。我认为这是造成问题的原因。
(已编辑)我的代码是:
nv.addGraph(function() {
var chart = nv.models.lineChart();
chart.xAxis
.tickFormat(function(d) { return d3.time.format('%d %b %Y')(new Date(parseInt(d))) }
);
chart.yAxis
.tickFormat(d3.format(',.02f'));
chart.tooltipContent(function(key, y, e, graph) {
var x = d3.time.format('%d %b %Y')(new Date(parseInt(graph.point.x)));
var y = String(graph.point.y);
var y = String(graph.point.y);
tooltip_str = '<center><b>'+key+'</b></center>' + y + ' on ' + x;
return tooltip_str;
});
chart.showLegend(true);
d3.select('#lineChart svg')
.datum(data_lineChart)
.transition().duration(500)
.attr('width', 1200)
.attr('height', 450)
.call(chart);
nv.utils.windowResize(chart.update);
return chart;
});