dotnetCHARTING Send comments on this topic.
XAxis Property
See Also 
dotnetCHARTING Namespace > ChartArea Class : XAxis Property



Gets or sets the X axis of this chart area.

Syntax

Visual Basic (Declaration) 
Public Property XAxis As Axis
Visual Basic (Usage)Copy Code
Dim instance As ChartArea
Dim value As Axis
 
instance.XAxis = value
 
value = instance.XAxis
C# 
public Axis XAxis {get; set;}
C++/CLI 
public:
property Axis^ XAxis {
   Axis^ get();
   void set (Axis^ value);
}

Remarks

When the axis is specified, series plotted on this area will automatically use this x axis, unless otherwise specified.

See Also