1

I have a chart that is built using Microsoft Chart Controls and would like to add our company's logo to the corner. Is this possible to do with MCC?

Mason240
  • 2,924
  • 3
  • 30
  • 46

2 Answers2

2

Is there any reason you don't want to simply put a PictureBox control near the corner of the chart? That seems like that simplest solution to me.

  • It looks like PictureBox is used for forms. The chart images are generated dynamically on a server and sent out embedded in an email. – Mason240 Nov 06 '12 at 15:34
  • Ah I misunderstood, I was suggesting that you just put the picture control above the chart control on the form but that wouldn't show up on the image created from the control. – CincinnatiProgrammer Nov 06 '12 at 15:41
0

To add an image, use ImageAnnotation.

 ImageAnnotation logo = new ImageAnnotation();
 logo.X = 75;
 logo.Y = 60; 
 logo.Image = "imagePath";
 chart.Annotations.Add(logo);
Mason240
  • 2,924
  • 3
  • 30
  • 46