This command will stop the tooltip from updating.
In addition the following events will be disabled:
viztip.TOOLTIP_BEGIN_EVENT
viztip.TOOLTIP_END_EVENT
tip.stop()
.
.
.
tip.start()
#handle tooltip events
def beginTip(e):
print('tooltip begin event')
viz.callback(viztip.TOOLTIP_BEGIN_EVENT,beginTip)
def endTip(e):
print('tooltip end event')
viz.callback(viztip.TOOLTIP_END_EVENT,endTip)