Gets or sets the vertical padding above and below the tooltip text.
Namespace: MindFusion.Charting
File: ToolTip.js
JavaScript Copy Code |
---|
get verticalPadding() {} |
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.verticallOffset = 6; ToolTip.verticalPadding = -4; ToolTip.font = new Charting.Drawing.Font("Verdana", 12, Charting.Drawing.FontStyle.Italic); |