ChDataLabel Object

This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.


Aa198394.parchild(en-us,office.10).gifChDataLabel
Aa198394.space(en-us,office.10).gifAa198394.parchild(en-us,office.10).gif

Represents a single data label for a series, or the single data label for a trendline.

Using the ChDataLabel object

The following properties can be used to return a ChDataLabel object:

The ChDataLabels object's Item property

The ChTrendline object's DataLabel property

The following example adds data labels to the first series in the first chart in Chartspace1, and then formats the third data label.

  Sub FormatSeriesLabel()

    Dim serSeries1
    Dim dlSeries1Labels

    ' Set a variable to the first series of the first chart
    ' in Chartspace1.
    Set serSeries1 = ChartSpace1.Charts(0).SeriesCollection(0)

    ' Add a set of data labels to the first series and return
    ' a DataLabels object.
    Set dlSeries1Labels = serSeries1.DataLabelsCollection.Add

    dlSeries1Labels.Item(2).Font.Bold = True
    dlSeries1Labels.Item(2).Font.Color = "Red"

End Sub