DataTable Object [Excel 2007 Developer Reference]

Switch View :
ScriptFree
DataTable Object
Represents a chart data table.

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.

Visual Basic for Applications
With Worksheets(1).ChartObjects(1).Chart
    .HasDataTable = True
    .DataTable.HasBorderOutline = True
End With