Programmatically find out if Chart displays Percentages

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

Guest

Hi all,

I am trying to find out if a Chart has it's data labels showing Percentages
from VBA code.

Can anyone help me with this.

Thanks in advance.

Kind Regards,

Grant.
 
Example using the Immediate Window:

?ActiveChart.SeriesCollection(1).DataLabels.ShowPercentage
True

- Jon
 
Back
Top