Class ToolTipOptions
Options which manage ToolTip behavior
Inheritance
System.Object
ToolTipOptions
Namespace: FastReport.BG.Common
Assembly: FastReport.BG.dll
Syntax
public class ToolTipOptions
Properties
Enable
Enable ToolTip
Declaration
public bool Enable { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
ShowLegend
Show color legend
Declaration
public bool ShowLegend { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Template
ToolTip text template.
Declaration
public string Template { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Remarks
ToolTip text is generated from the chart record (Data.RecordBase). {0} - place record text here {1} - place record value here Template together with Record data generate text using string.Format() method
See Also
System.String.Format(System.String,System.Object,System.Object)