When I start plotting values, the chart area appears to drop and cover up the X-Axis. If I put the X-axis on the top, it works fine. I have tried setting the X-Axis to fixed, auto scaling and setting the Axis length by code and nothing helps.
Here is the code
outage_min = (Path_outage / 60)
If outage_min > 999 Then outage_min = 999
Select Case Ant_num
Case 0
Me.DV_X(dist) = dist
Me.DV_Y1(dist) = outage_min
Case 1
Me.DV_Y2(dist) = outage_min
End Select
Axis1.Start = 0
Axis1.Stop = Path_length
Next dist
Next Ant_num
