XY Chart NET 3 Control Reference > Methods > SaveChartImageToJPEG Method |
Use this method to save an image of the resulting chart to a Joint Photographic Experts Group (JPEG) file. The image is a capture of the chart as it is at that moment. This method is equivalent to selecting the Save Image button in the Toolbar, and then selecting the appropriate file type from the Save dialog.
[Visual Basic] Sub SaveChartImageToJPEG(PathAndFilename As String) |
[C#] void XYChartNETCtl.SaveChartImageToJPEG(string PathAndFilename) |
[C++] void SaveChartImageToJPEG(System::String __gc *) |
' XYChartNETCtl1 is the name of the XY Chart NET control instance placed on the form. XYChartNETCtl1.SaveChartImageToJPEG("c:\image\xychart05.jpeg") 'Save image to file
// XYChartNETCtl1 is the name of the XY Chart NET control instance placed on the form. XYChartNETCtl1.SaveChartImageToJPEG("c:\\image\\xychart05.jpeg"); //Save image to file
// XYChartNETCtl1 is the name of the XY Chart NET control instance placed on the form. XYChartNETCtl1->SaveChartImageToJPEG("c:\\image\\xychart05.jpeg"); //Save image to file