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



Gets or sets the Y axis of this chart area.

Syntax

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

Remarks

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

See Also