Creates a tooltip object
| <viztip>.ToolTip( | |
| start = True | |
| delay = 0.5 | |
| track = True | |
| textName = 'tooltip' | |
| draworder = 9 |
)
start = True
Turns the tooltip on or off.
delay = 0.5
Sets the delay time for the tooltip to appear.
track = True
Sets whether the tooltip will track the mouse position.
textName = 'tooltip'
Sets name of variable that will be used to retrieve tooltip text from objects.
draworder = 9
The viztip module allows you to assign a tooltip attribute to any node object that contains the tooltip text. Once you create an instance of the viztip.ToolTip object it will automatically display an on-screen tooltip when the mouse is over the node.
ToolTip object