HasDataLabels Property

Applies To

Series Object.

Description

True if the series has data labels. Read-write.

See Also

ApplyDataLabels Method, DataLabel Property, HasDataLabel Property.

Example

This example turns on data labels for series three in Chart1.


With Charts("Chart1").SeriesCollection(3)
    .HasDataLabels = True
    .ApplyDataLabels type:=xlValue
End With