CursorEventArgs.Axis Property

Definition

Gets the Axis object that a cursor or range selection belongs to.

public:
 property System::Windows::Forms::DataVisualization::Charting::Axis ^ Axis { System::Windows::Forms::DataVisualization::Charting::Axis ^ get(); };
public System.Windows.Forms.DataVisualization.Charting.Axis Axis { get; }
member this.Axis : System.Windows.Forms.DataVisualization.Charting.Axis
Public ReadOnly Property Axis As Axis

Property Value

An Axis object that represents the axis that a cursor or range selection belongs to.

Remarks

The Axis property is exposed in the following events of the root Chart object: CursorPositionChanged, CursorPositionChanging, SelectionRangeChanged and SelectionRangeChanging.

This property can be used to:

  • determine the type of axis - X, X2, Y or Y2 - that the event is being raised for, using the AxisName property.

  • get and set axis properties, such as LineColor.

Applies to