Поделиться через


DataLabels.ShowValue Property (PowerPoint)

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

Version Information

Version Added: PowerPoint 2007

Syntax

expression .ShowValue

expression A variable that represents a DataLabels object.

Example

Note

Although the following code applies to Microsoft Word, you can readily modify it to apply to PowerPoint.

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

Concepts

DataLabels Object

DataLabels Object Members