CrossesAt Property

Applies To

Axis Object.

Description

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

Remarks

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

This property is not available for 3-D charts or radar charts.

See Also

Crosses Property.

Example

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


With Charts("Chart1").Axes(xlValue)
    .Crosses = xlCustom
    .CrossesAt = 3
End With