DataTable object (Word)
Represents a chart data table.
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
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.