DataTable Object (Word)
Represents a chart data table.
Version Information
Version Added: Word 2007
Example
Use the DataTable property to return a DataTable object. The following example adds a data table with an outline border to embedded chart one.
With ActiveDocument.InlineShapes(1)
If .HasChart Then
.Chart.HasDataTable = True
.Chart.DataTable.HasBorderOutline = True
End If
End With