答案 0 :(得分:2)
1-在日期选择器中选择日期时,在数据提供者中查找所选日期的索引。
2-使用morris.displayHoverForRow(index)
方法将鼠标悬停在该项目上。
工作代码:http://jsfiddle.net/ercanpeker/t6ygeud0/
注意:我使用了jQuery UI datepicker。
答案 1 :(得分:0)
万一有人使用bootsrap datepicker这是我的代码:
$("#calendar").datepicker({
format: "dd MM yyyy",
})
.on('changeDate', function (e) {
currMonth = months[new Date(e.date).getMonth()];
console.log(currMonth);
var index = e.date.getMonth()
if (index != -1) {
_chart.displayHoverForRow(index)
}
});