Gets or sets the tooltip text.
Namespace: MindFusion.Charting
File: ToolTip.js
JavaScript Copy Code |
---|
get text() {} |
In most cases you will use an array or List to set the labels that will render as tooltip-s and use the supportedLabels property to specify that they should be rendered as tooltips.
The following code customizes the ToolTips 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.horizontalPadding = 6; ToolTip.verticalPadding = 4; ToolTip.font = new Charting.Drawing.Font("Verdana", 12, Charting.Drawing.FontStyle.Italic); |