ChartJS版本2.3 - 2.7
玩ChartJS几天后。是否有支持在折线图上获取实际x,y的API?或者任何其他想法都有相同的结果?
我尝试了getPointsAtEvent和activePoints,但似乎得到了最接近的点数据。
这是我的小提琴
https://jsfiddle.net/b5bz6uuh/2/
type: 'line', data: {
labels: ["10", "20", "30", "40", "50", "60"],
datasets: [
{
label: '# of Votes',
data: [12, 19, 3, 5, 2, 3],
borderWidth: 1
},
{
label: '# of Points',
data: [7, 11, 5, 8, 3, 7],
borderWidth: 1
}
] }