Axis.Crosses Property (Word)
Returns or sets the point on the specified axis where the other axis crosses. Read/write Long.
Version Information
Version Added: Word 2007
Syntax
expression .Crosses
expression A variable that represents an Axis object.
Remarks
This property is not available for radar charts. For 3-D charts, this property can be applied only to the value axis and indicates where the plane defined by the category axes crosses the value axis.
You can use this property for both category and value axes. On the category axis, xlMinimum sets the value axis to cross at the first category, and xlMaximum sets the value axis to cross at the last category. xlMinimum and xlMaximum are constants in the XlAxisCrosses enumeration.
Note that xlMinimum and xlMaximum can have different meanings, depending on the axis.
Example
The following example sets the value axis in for the first chart in the active document to cross the category axis at the maximum x-axis value.
With ActiveDocument.InlineShapes(1)
If .HasChart Then
.Chart.Axes(xlCategory).Crosses = xlMaximum
End If
End With