Chart.Walls Property (Word)
Returns the walls of the 3-D chart. Read-only Walls.
Version Information
Version Added: Word 2007
Syntax
expression .Walls
expression A variable that represents a Chart object.
Example
The following example sets the color of the wall border of the first chart in the active document to red. You should run the example on a 3-D chart.
With ActiveDocument.InlineShapes(1)
If .HasChart Then
.Chart.Walls.Border. _
ColorIndex = 3
End If
End With