Class ToolTip
Represents a class that defines a tooltip displayed over a report item or a datapoint.
Inheritance
Namespace: Telerik.Reporting
Assembly: Telerik.Reporting.dll
Syntax
public class ToolTip : IToolTip
Remarks
The Tooltip class consists of Title and Text string properties that can be either static text or expressions.
Properties
Text
Gets or sets a text to be displayed as a tooltip text
Declaration
public string Text { get; set; }
Property Value
System.String
A System.String started with "=" is interpreted as an expression to calculate the real data, otherwise - literal string. Supports embedded expressions also. |
Title
Gets or sets a text to be displayed as a tooltip title
Declaration
public string Title { get; set; }
Property Value
System.String
A System.String started with "=" is interpreted as an expression to calculate the real data, otherwise - literal string. Supports embedded expressions also. |