Class LocationChangedEventArgs
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.ChartView.dll
Syntax
public class LocationChangedEventArgs : EventArgs
Constructors
LocationChangedEventArgs(PointF, TrackballInfoElement, List<DataPointInfo>)
Initializes a new instance of the LocationChangedEventArgs class.
Declaration
public LocationChangedEventArgs(PointF location, TrackballInfoElement element, List<DataPointInfo> points)
Parameters
System.Drawing.PointF
location
The location. |
TrackballInfoElement
element
The element. |
System.Collections.Generic.List<DataPointInfo>
points
The points. |
Properties
Element
Gets the trackball info element.
Declaration
public TrackballInfoElement Element { get; }
Property Value
TrackballInfoElement
|
Location
Gets the new location of the element.
Declaration
public PointF Location { get; }
Property Value
System.Drawing.PointF
|
Offset
Gets or sets the offset according the location where the trackball info will be positioned.
Declaration
public Size Offset { get; set; }
Property Value
System.Drawing.Size
|
Points
Gets the points on which the trackball will move.
Declaration
public List<DataPointInfo> Points { get; }
Property Value
System.Collections.Generic.List<DataPointInfo>
|