Series.HasDataLabels (Word)
True if the series has data labels.
With ActiveDocument.InlineShapes(1)
If .HasChart Then
With .Chart.SeriesCollection(3)
.HasDataLabels = True
.ApplyDataLabels Type:=xlValue
End With
End If
End With