Legend.Position property (PowerPoint)

Returns or sets the position of the legend on the chart. Read/write XlLegendPosition.

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

See also

Legend Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.