Class TrackballTooltip
This class holds information such as border, background, text format, text color, etc., of the Trackball tooltip.
Inheritance
Inherited Members
Namespace: Syncfusion.Windows.Forms.Chart
Assembly: Syncfusion.Chart.Windows.dll
Syntax
public class TrackballTooltip
Constructors
TrackballTooltip()
Initializes a new instance of the TrackballTooltip class.
Declaration
public TrackballTooltip()
Properties
Border
Gets or sets the option to customize border of tooltip like boder width, color, style.
Declaration
public ChartLineInfo Border { get; set; }
Property Value
Type |
---|
ChartLineInfo |
CornerRadius
Gets or sets the corner radius of tracker tooltip. Use this property if you want to use rounded corners for tracker tooltip.
Declaration
public int CornerRadius { get; set; }
Property Value
Type |
---|
System.Int32 |
Font
Gets or sets the font used for tracker tooltip.
Declaration
public ChartFontInfo Font { get; set; }
Property Value
Type |
---|
ChartFontInfo |
Interior
Gets or sets the brush for the background of tracker tooltip.
Declaration
public BrushInfo Interior { get; set; }
Property Value
Type |
---|
BrushInfo |
Margin
Gets or sets the margin of tracker tooltip. Space between tooltip text and border is controlled by this property.
Declaration
public ChartMargins Margin { get; set; }
Property Value
Type |
---|
ChartMargins |
Offset
Gets or sets the padding between highlighted symbol and tracker tooltip.
Declaration
public int Offset { get; set; }
Property Value
Type |
---|
System.Int32 |
TextColor
Gets or sets the fore color (color of text) in tracker tooltip. By default, text color will be automatically calculated (black or white) based on the background color of tooltip.
Declaration
public Color TextColor { get; set; }
Property Value
Type |
---|
System.Drawing.Color |
TextFormat
Gets or sets the format applied for tracker tooltip text
Declaration
public string TextFormat { get; set; }
Property Value
Type |
---|
System.String |
Visible
Gets or sets the visibility of tracker tooltip.
Declaration
public bool Visible { get; set; }
Property Value
Type |
---|
System.Boolean |
XValueFormat
Gets or sets the format for X value of data point in trackball tooltip.
Declaration
public string XValueFormat { get; set; }
Property Value
Type |
---|
System.String |
YValueFormat
Gets or sets the format for Y value of data point in trackball tooltip.
Declaration
public string YValueFormat { get; set; }
Property Value
Type |
---|
System.String |