Series.XAxisType 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 X-axis type of the series.
public:
property System::Web::UI::DataVisualization::Charting::AxisType XAxisType { System::Web::UI::DataVisualization::Charting::AxisType get(); void set(System::Web::UI::DataVisualization::Charting::AxisType value); };
[System.ComponentModel.Bindable(true)]
public System.Web.UI.DataVisualization.Charting.AxisType XAxisType { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.XAxisType : System.Web.UI.DataVisualization.Charting.AxisType with get, set
Public Property XAxisType As AxisType
Property Value
A XAxisType enumeration value that determines if the series uses the primary or secondary X-axis.
- Attributes
Remarks
For all chart types except horizontally oriented charts such as bar and stacked bar charts, and shape charts such as pie, doughnut, funnel and pyramid charts, the primary X-axis is always the lower axis and the secondary axis is the upper axis. For bar and stacked bar charts, the primary X-axis is the left axis, and the secondary X-axis is the right axis.
When data is plotted using the secondary X-axis, you must use the AxisX2 property to set axis properties, and not the AxisX property.