Search
ToolTip.horizontalPadding Property
See Also
 






Gets or sets the horizontal padding to the left and right of the tooltip text.

Namespace: MindFusion.Charting
File: ToolTip.js

 Syntax

JavaScript  Copy Code

get horizontalPadding() {}

 Property Value

 Example

The following code customizes the ToolTip-s rendered over chart elements:

JavaScript  Copy Code
// customize tooltips
ToolTip.position = new Point (-5, -3);
ToolTip.text = "Click on a bar to see detailed chart";
ToolTip.brush = new Drawing.Brush("#fafafa");
ToolTip.pen = new Drawing.Pen("#9caac6");
ToolTip.textBrush = new Drawing.Brush("#5050c0");
ToolTip.horizontalOffset = 6;
ToolTip.horizontalPadding = -4;
ToolTip.font = new Charting.Drawing.Font("Verdana", 12, Charting.Drawing.FontStyle.Italic);

 See Also