DataTable Property

Microsoft Graph Visual Basic

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 chart.

With myChart
    .HasDataTable = True
    .DataTable.HasBorderOutline = True
End With