Legend.Position Property (Word)
Returns or sets the position of the legend on the chart. Read/write XlLegendPosition.
Version Information
Version Added: Word 2007
Syntax
expression .Position
expression A variable that represents a Legend object.
Example
The following example moves the chart legend to the bottom of the chart.
With ActiveDocument.InlineShapes(1)
If .HasChart Then
.Chart.Legend.Position = xlLegendPositionBottom
End If
End With