CrossesAt Property

Applies To

Axis object.

Description

Returns or sets the point on the value axis where the category axis crosses it. Applies only to the value axis. Read/write Double.

Remarks

Setting this property causes the Crosses property to change to xlAxisCrossesCustom.

This property cannot be used on 3-D charts or radar charts.

See Also

Crosses property.

Example

This example sets the category axis to cross the value axis at value 3.

With myChart.Axes(xlValue)
    .Crosses = xlAxisCrossesCustom
    .CrossesAt = 3
End With