4

I need to customize the legend of my MS chart control. For that I am populating the CustomItems collection of the Legend. That works fine. However, when the legend is shown, the CustomItems info is appended to the Legend's default content.

How can I hide the Legend's default content ?

Thanks !

David
  • 1,051
  • 5
  • 14
  • 28

1 Answers1

7

Chart1.Legends["Default"].Enabled = false;

Quantbuff
  • 827
  • 7
  • 9