ChartGroup.Has3DShading Property (Word)
True if a chart group has three-dimensional shading. Read/write Boolean.
Version Information
Version Added: Word 2007
Syntax
expression .Has3DShading
expression A variable that represents a ChartGroup object.
Remarks
Setting Has3DShading to False removes the 3-D shading effect from the chart (rendering it as flat). Setting Has3DShading to True sets the chart content to the default.
Example
The following example adds 3-D shading to the first chart group of the first chart in the active document.
With ActiveDocument.InlineShapes(1)
If .HasChart Then
.Chart.ChartGroups(1).Has3DShading = True
End If
End With