Reputation: 3034
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
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
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