Cursor.AxisType Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the type of axis that the cursor is attached to.
public:
property System::Windows::Forms::DataVisualization::Charting::AxisType AxisType { System::Windows::Forms::DataVisualization::Charting::AxisType get(); void set(System::Windows::Forms::DataVisualization::Charting::AxisType value); };
[System.ComponentModel.Bindable(true)]
public System.Windows.Forms.DataVisualization.Charting.AxisType AxisType { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.AxisType : System.Windows.Forms.DataVisualization.Charting.AxisType with get, set
Public Property AxisType As AxisType
Property Value
An AxisType enumeration value that represents whether the axis is attached to the primary or secondary axis.
- Attributes
Remarks
There are two sets of axes: primary and secondary. Primary axes for all charts except the bar charts are located at the bottom (primary X-axis) and left (primary Y-axis) border of the chart area.
The secondary axes are located at the right (secondary X-axis) and top (secondary Y-axis) border of the chart area.
Note
If all series plotted within a chart area use only one type of axis (for example, the primary X-axis), then setting this property to an axis type not used by the series (in this case, the secondary X-axis) will have no effect; the cursor will automatically be attached to the only axis being used to plot the series.