我有一个散点图系列图表。我为图表添加了一个事件监听器,以便在工具提示外部单击时,工具提示将关闭。但它似乎不起作用。
我使用的是高级版4.2.3。
animate = animation.FuncAnimation(fig, update_plot, ..., interval=40, ...)
答案 0 :(得分:2)
正如我在评论中提到的,您应该能够使用tooltip.hide()隐藏工具提示。
chart: {
events: {
click: function(event) {
var $this = this;
this.tooltip.hide();
}
}
},
使用上述方法隐藏工具提示的实例: http://jsfiddle.net/buc3pemq/1/