Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
True to display a specified chart's data label values. False to hide the values. Read/write Boolean.
Version Information
Version Added: Word 2007
Syntax
expression .ShowValue
expression A variable that represents a DataLabel 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