我在我的桌子旁边使用morris图表,并且想要在选择行时在morris条形图上调用工具提示(相同的数据显示在表格中并使用图表)。有没有办法以编程方式显示悬停图例(工具提示),如:
my_chart.showHover(row_index);
提前致谢。
答案 0 :(得分:0)
由于我只需要条形图,我将其添加到morris.js
Bar.prototype.myShowHoverLegendForRow = function(index) {
if (this.options.hideHover !== 'always'){
if (index < 0 || index > this.data.length - 1) {
return null;
}
return (_ref = this.hover).update.apply(_ref, this.hoverContentForRow(index));
}
}
此外,您可能需要此关闭(隐藏)图例(工具提示):
Bar.prototype.myHideHoverLegend = function() {
return this.hover.hide();
}