HasDataLabels Property

Applies To

Series object.

Description

True if the series has data labels. Read/write Boolean.

See Also

ApplyDataLabels method, DataLabel property, HasDataLabel property.

Example

This example turns on data labels for series three.

With myChart.SeriesCollection(3)
    .HasDataLabels = True
    .ApplyDataLabels Type:=xlValue
End With