Search
ToolTip.position Property
See Also
 






Gets or sets the tooltip position.

Namespace: MindFusion.Charting
File: MindFusion.Charting.js

 Syntax

JavaScript  Copy Code

get position() {}

 Property Value

A Point instance.

 Example

The following code specifies that the tooltip will render at a Point(100,100):

JavaScript  Copy Code

var ToolTip = Charting.ToolTip;

// customize the tooltip
ToolTip.position = new MindFusion.Drawing.Point(100, 100);

 See Also