Skip to content

Latest commit

 

History

History
46 lines (29 loc) · 948 Bytes

Word.DataLabels.ShowValue.md

File metadata and controls

46 lines (29 loc) · 948 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
DataLabels.ShowValue property (Word)
vbawd10.chm207489000
vbawd10.chm207489000
Word.DataLabels.ShowValue
3c016afc-17b2-78cd-8964-584e8d86d552
06/08/2017
medium

DataLabels.ShowValue property (Word)

True to display the data label values for a specified chart. False to hide the values. Read/write Boolean.

Syntax

expression.ShowValue

expression A variable that represents a DataLabels object.

Example

The following example enables the value to be shown for the data labels of the first series in the first chart.

With ActiveDocument.InlineShapes(1) 
 If .HasChart Then 
 .Chart.SeriesCollection(1).DataLabels. _ 
 ShowValue = True 
 End If 
End With

See also

DataLabels Object

[!includeSupport and feedback]