ChLegendEntry Object

Microsoft Office Web Components Object Model

ChLegendEntry Object

         
ChLegendEntries ChLegendEntry
ChFont

Represents a single legend entry. The ChLegendEntry object is a member of the ChLegendEntries collection.

Using the ChLegendEntry object

The ChLegendEntries collection’s Item property returns a ChLegendEntry object.

Use LegendEntries(index), where index is the legend entry index number, to return a single LegendEntry object. You cannot return legend entries by name.

The index number represents the position of the legend entry in the legend. LegendEntries(0) is at the top of the legend, and LegendEntries(LegendEntries.Count) is at the bottom. The following example changes the font for the text of the legend entry at the top of the chartspace  legend (this is usually the legend for series one) in Chartspace1.

Chartspace1.ChartSpaceLegend.LegendEntries(0) _
    .Font.Bold = True