Series.ApplyPictToSides Property (PowerPoint)
True if a picture is applied to the sides of the point or all points in the series. Read/write Boolean.
Version Information
Version Added: PowerPoint 2007
Syntax
expression .ApplyPictToSides
expression A variable that represents a Series object.
Example
Note
Although the following code applies to Microsoft Word, you can readily modify it to apply to PowerPoint.
The following example applies pictures to the sides of all points in the first series of the first chart in the active document. The series must already have pictures applied to it (setting this property changes the picture orientation).
With ActiveDocument.InlineShapes(1)
If .HasChart Then
.Chart.SeriesCollection(1).ApplyPictToSides = True
End If
End With