图表上任何位置的Chart.js工具提示

时间:2018-07-17 20:52:19

标签: tooltip chart.js

如何以以下方式获取chart.js工具提示:

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

不仅在数据点上,我还需要在图表上的任意位置提供工具提示

1 个答案:

答案 0 :(得分:0)

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

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

请参见Chart.js samples page for a demo

互动更详尽的例子是also available