关于所需的相同功能,有一个老问题:Make highcharts display the tooltip of the previous point。 我将试着看看这些年来是否有新功能可用。
问题:
默认情况下,工具提示将显示最近点的数据:
JSFiddle:http://jsfiddle.net/nsf0203g/12/
其代码:
$(function () {
$('#container').highcharts({
tooltip: {
followPointer: true,
shared: true
},
xAxis: {
tickInterval: 1,
crosshair: {enabled: true, snap: false, width: 3, color: '#ccc'}
},
series: [{data: [29.9, 71.5, 106.4, 129.2] }, {data: [194.1, 95.6, 54.4, 29.9] }]
});
});