Class PlotAreaMouseEventArgs
This class holds the event arguments collected when the ChartArea mouse events are raised.
Inherited Members
Namespace: Telerik.Windows.Controls.Charting
Assembly: Telerik.Windows.Controls.Charting.dll
Syntax
public class PlotAreaMouseEventArgs : RadRoutedEventArgs
Constructors
PlotAreaMouseEventArgs()
Initializes a new instance of the PlotAreaMouseEventArgs class.
Declaration
public PlotAreaMouseEventArgs()
PlotAreaMouseEventArgs(RoutedEvent, Double, Double)
Initializes a new instance of the PlotAreaMouseEventArgs class.
Declaration
public PlotAreaMouseEventArgs(RoutedEvent routedEvent, double xCoordinate, double yCoordinate)
Parameters
RoutedEvent
routedEvent
The routed event. |
System.Double
xCoordinate
The X coordinate value. |
System.Double
yCoordinate
The Y coordinate value. |
PlotAreaMouseEventArgs(RoutedEvent, Double, Double, MouseButtonEventArgs)
Initializes a new instance of the PlotAreaMouseEventArgs class.
Declaration
public PlotAreaMouseEventArgs(RoutedEvent routedEvent, double xCoordinate, double yCoordinate, MouseButtonEventArgs originalEventArgs)
Parameters
RoutedEvent
routedEvent
The routed event. |
System.Double
xCoordinate
The X coordinate value. |
System.Double
yCoordinate
The Y coordinate value. |
System.Windows.Input.MouseButtonEventArgs
originalEventArgs
The original mouse event arguments. |
Properties
OriginalEventArgs
Gets the original mouse event args.
Declaration
public MouseButtonEventArgs OriginalEventArgs { get; }
Property Value
System.Windows.Input.MouseButtonEventArgs
The original mouse event args. |
XValue
Gets the logical X value at the point where event occurs.
Declaration
public double XValue { get; }
Property Value
System.Double
The X value. |
YValue
Gets the logical Y value at the point where event occurs.
Declaration
public double YValue { get; }
Property Value
System.Double
The Y value. |