New to Telerik UI for WinFormsStart a free 30-day trial

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.ChartView.dll

Syntax:

C#
public class LocationChangedEventArgs : EventArgs

Inheritance: objectEventArgsLocationChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the LocationChangedEventArgs class.

C#
public LocationChangedEventArgs(PointF location, TrackballInfoElement element, List<DataPointInfo> points)
Parameters:locationPointF

The location.

elementTrackballInfoElement

The element.

pointsList<DataPointInfo>

The points.

Properties

Gets the trackball info element.

C#
public TrackballInfoElement Element { get; }

Gets the new location of the element.

C#
public PointF Location { get; }

Gets or sets the offset according the location where the trackball info will be positioned.

C#
public Size Offset { get; set; }

Gets the points on which the trackball will move.

C#
public List<DataPointInfo> Points { get; }