在跨度悬停时显示chartjs工具提示

时间:2019-10-29 07:42:06

标签: javascript jquery chart.js

我正在研究chartjs,并且知道有一个选项可以在鼠标悬停,单击等时显示工具提示。 但是,当鼠标悬停在与图表无关的跨度上时,我想显示工具提示。 由于缺少更好的示例,下面是我想做的伪代码

<span id='JAN'>Jan</span>
<span id='FEB'>Feb</span>
<span id='MAR'>Mar</span>


$(document).ready(function(){
    $('span').hover(function(){
      //get id of the span and show the tooltip for that month in line chart of chartjs
    })
})

chartjs摆弄跨度和图表: https://jsfiddle.net/irfanharunk/uaLr76cb/3/

如果在chartjs中不可能,那么还有其他图表库可以实现吗?

0 个答案:

没有答案