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