LegendEntry.LegendKey Property

Excel Developer Reference

Returns a LegendKey object that represents the legend key associated with the entry.

Syntax

expression.LegendKey

expression   A variable that represents a LegendEntry object.

Example

This example sets the legend key for legend entry one on Chart1 to be a triangle. The example should be run on a 2-D line chart.

Visual Basic for Applications
  Charts("Chart1").Legend.LegendEntries(1).LegendKey _
    .MarkerStyle = xlMarkerStyleTriangle

See Also