我正在研究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中不可能,那么还有其他图表库可以实现吗?