Legend.Position Property (PowerPoint)
Returns or sets the position of the legend on the chart. Read/write XlLegendPosition.
Version Information
Version Added: PowerPoint 2007
Syntax
expression .Position
expression A variable that represents a Legend object.
Example
Note
Although the following code applies to Microsoft Word, you can readily modify it to apply to PowerPoint.
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