Pocket PC Controls.com's Chart Control

Chart.SaveToBitmap Method 

Saves the chart area to the specified file in the specified image format

public void SaveToBitmap(
   String FilePath,
   ImageFormat Format
);

Parameters

String
fully qualified path in which to save the image
ImageFormat
Image format to save to

Example

This example shows how to save the chart area to a bitmap

  private void SaveChartToImage()
  {
    chart1.SaveToBitmap(@"\My Documents\Chart1.bmp", System.Drawing.Imaging.ImageFormat.Bmp);
  }

See Also

Chart Class | PPCC.Chart Namespace