Excel Chart Legend Name

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Does anybody know how to name a Legend within an Excel Chart created within
Access?

Code sample below:

xlChart.HasLegend = True

.... but, there seems to be no NAME property to assign...

Any ideas?
 
The collection is LegendEntries and each item is LegendEntry ...

Example from Help:

myChart.Legend.LegendEntries(1).Font.Name = "Arial"
 
Got that one.

Was looking for more of a Label or Caption to be above the values of a
Legend. For example, the title: "Assignees".
 
Not sure which element you described ... "Assignees" has meaning in your
chart but I cannot see your chart ...

ChartTitle ???
DataLabels / DataLabel ???
LegendKey ???
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top