Chart JS获得实际的axis-x和axis-y

时间:2017-12-04 09:22:17

标签: javascript jquery charts chart.js linechart

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

并想知道我是否可以在下面找到这样的内容 enter image description here

0 个答案:

没有答案