Mason240
Mason240

Reputation: 3034

Adding a logo image to a chart using Microsoft Chart Control

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?

Upvotes: 1

Views: 2212

Answers (2)

Mason240
Mason240

Reputation: 3034

To add an image, use ImageAnnotation.

 ImageAnnotation logo = new ImageAnnotation();
 logo.X = 75;
 logo.Y = 60; 
 logo.Image = "imagePath";
 chart.Annotations.Add(logo);

Upvotes: 0

CincinnatiProgrammer
CincinnatiProgrammer

Reputation: 129

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.

Upvotes: 2

Related Questions