<viztip>.stop

Stops the tooltip

 

<viztip>.stop()

 

Remarks

This command will stop the tooltip from updating.

In addition the following events will be disabled:
viztip.TOOLTIP_BEGIN_EVENT
viztip.TOOLTIP_END_EVENT

Return Value

None

Example

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)