title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
Chart.HasDataTable property (Excel) |
vbaxl10.chm149114 |
|
|
c29e7606-086e-8549-2259-332d30c1846a |
04/16/2019 |
medium |
True if the chart has a data table. Read/write Boolean.
expression.HasDataTable
expression A variable that represents a Chart object.
This example causes the embedded chart data table to be displayed with an outline border and no cell borders.
With Worksheets(1).ChartObjects(1).Chart
.HasDataTable = True
With .DataTable
.HasBorderHorizontal = False
.HasBorderVertical = False
.HasBorderOutline = True
End With
End With
[!includeSupport and feedback]