Controls the shape of the axis.
The following code renders the PrimaryY axis as red tube and
removes the circle borders which are displayed on its top and bottom.
Dim axis As Axis = Chart.Axis(StandardAxis.PrimaryY)
axis.AxisStyle = AxisStyle.Tube
axis.FillEffect.SetSolidColor(Color.Red)
axis.Border.Width = 0
Axis axis = Chart.Axis(StandardAxis.PrimaryY);
axis.AxisStyle = AxisStyle.Tube;
axis.FillEffect.SetSolidColor(Color.Red);
axis.Border.Width = 0;
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2