使Highcharts工具提示切换到点本身的下一个点

时间:2018-04-11 10:53:21

标签: javascript highcharts tooltip

关于所需的相同功能,有一个老问题:Make highcharts display the tooltip of the previous point。 我将试着看看这些年来是否有新功能可用。

问题:

默认情况下,工具提示将显示最近点的数据:

enter image description here

如何让它始终显示左边的点,直到它到达下一个点? enter image description here

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] }]
    });
});

0 个答案:

没有答案