How to save a Chart control picture to a file?

.net, c#, charts, mschart, winforms

Solution

How about the `Chart.SaveImage()` method?

Problem

Having a chart displayed with a `System.Windows.Forms.DataVisualization.Charting.Chart` control in a .Net 4.0 WinForms application, can I save its render into a picture file?

Original source

Related problems