Saves the chart area to the specified file in the specified image format
This example shows how to save the chart area to a bitmap
[C#]
private void SaveChartToImage()
{
chart1.SaveToBitmap(@"\My Documents\Chart1.bmp", System.Drawing.Imaging.ImageFormat.Bmp);
}
[Visual Basic]
Private Sub SaveChartToImage()
Chart1.SaveToBitmap(@"\My Documents\Chart1.bmp", System.Drawing.Imaging.ImageFormat.Bmp)
End Sub
Chart Class | PPCC.Chart Namespace