Class TrackballTooltipEventArgs
Event argument for tooltip formatting event.
Inheritance
System.Object
System.EventArgs
TrackballTooltipEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.Windows.Forms.Chart
Assembly: Syncfusion.Chart.Windows.dll
Syntax
public class TrackballTooltipEventArgs : EventArgs
Constructors
TrackballTooltipEventArgs(Int32, Int32)
Initializes a new instance of the TrackballTooltipEventArgs class.
Declaration
public TrackballTooltipEventArgs(int pointIndex, int seriesIndex)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | pointIndex | current point index of TrackballTooltip. |
System.Int32 | seriesIndex | series index of TrackballToooltip |
Properties
Border
Gets or sets the border color of the tooltip.
Declaration
public ChartLineInfo Border { get; set; }
Property Value
Type |
---|
ChartLineInfo |
ForeColor
Gets or sets the text color.
Declaration
public Color ForeColor { get; set; }
Property Value
Type |
---|
System.Drawing.Color |
Interior
Gets or sets the background color of tooltip.
Declaration
public BrushInfo Interior { get; set; }
Property Value
Type |
---|
BrushInfo |
pointIndex
Gets the index of data point in series.
Declaration
public int pointIndex { get; }
Property Value
Type |
---|
System.Int32 |
SeriesIndex
Gets the series index of data point.
Declaration
public int SeriesIndex { get; }
Property Value
Type |
---|
System.Int32 |
Text
Gets or sets the text displayed in tooltip.
Declaration
public string Text { get; set; }
Property Value
Type |
---|
System.String |