我正在使用 nvd3.js 显示具有 3 个不同键的图形。在这 3 个中,1 有很多坐标,其余的 2 s 只有一个坐标。现在这些单一的坐标是不可见的。我的代码是这样的:
nv.addGraph(function () {
var chart = nv.models.lineChart().margin({
top: 30,
right: 20,
bottom: 50,
left: 45
}).showLegend(true).tooltipContent(function (key, y, e, graph) {
return '<h3>' + key + '</h3>' + '<p>' + e + '% at ' + y + '</p>'
});
chart.xAxis.tickFormat(function (d) {
return d3.time.format('%x')(new Date(d))
});
d3.select('#lineChart svg')
.datum(data)
.transition().duration(500)
.call(chart);
nv.utils.windowResize(chart.update);
return chart;
});
data = [{
"values": [{
"x": 1025409600000 ,
"y": 2
}, {
"x": 1028088000000 ,
"y": 4
}, {
"x": 1030766400000 ,
"y": 1
}, {
"x": 1033358400000 ,
"y": 3
}, {
"x": 1036040400000 ,
"y": 0
}, {
"x": 1038632400000 ,
"y": 3
}],
"key": "Cool"
},{
"values": [{
"x": 1025409600000 ,
"y": 2
}],
"key":hot
}
]
如果我将鼠标悬停在光标上,认为该hot
点正在显示,但该位置不可见。如果键只有一个坐标,请指导我如何使其可见。提前致谢。
更新了图片