Skip to content

Latest commit

 

History

History
53 lines (35 loc) · 979 Bytes

Word.Chart.HasDataTable.md

File metadata and controls

53 lines (35 loc) · 979 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Chart.HasDataTable property (Word)
vbawd10.chm79365492
vbawd10.chm79365492
Word.Chart.HasDataTable
62af9540-9a69-0e19-b884-4f2b5947152f
06/08/2017
medium

Chart.HasDataTable property (Word)

True if the chart has a data table. Read/write Boolean.

Syntax

expression.HasDataTable

expression A variable that represents a Chart object.

Example

The following example causes the embedded chart data table to be displayed with an outline border and no cell borders.

With ActiveDocument.InlineShapes(1) 
 If .HasChart Then 
 With .Chart 
 .HasDataTable = True 
 With .DataTable 
 .HasBorderHorizontal = False 
 .HasBorderVertical = False 
 .HasBorderOutline = True 
 End With 
 End With 
 End If 
End With 

See also

Chart Object

[!includeSupport and feedback]