Chart.js 图表上任意点的工具提示

Chart.js tooltip at any point on the chart

如何让 chart.js 工具提示按以下方式工作:

示例:http://watchstocks.herokuapp.com/

我需要图表上任意点的工具提示,而不仅仅是数据点

您可以使用 tootip position property 获得类似的结果(如果您愿意,文档包括实现自定义定位器的示例):

options: {
    tooltips: {
        position: 'nearest'
    }
}

参见 Chart.js samples page for a demo

具有更精细交互的示例是 also available