DataTable Property

Microsoft Excel Visual Basic

DataTable Property

       

Returns a DataTable object that represents the chart data table. Read-only.

Example

This example adds a data table with an outline border to the embedded chart.

With Worksheets(1).ChartObjects(1).Chart
    .HasDataTable = True
    .DataTable.HasBorderOutline = True
End With