Hi Dess.
I have been able to export the image to a stream using the following code:
Dim ms As New System.IO.MemoryStream
Me.RadChartView1.ExportToImage(ms, Me.RadChartView1.Size, System.Drawing.Imaging.ImageFormat.Jpeg)
However, the code does not work for emf image format.
If I use the code:
Dim ms As New System.IO.MemoryStream
Me.RadChartView1.ExportToImage(ms, Me.RadChartView1.Size, System.Drawing.Imaging.ImageFormat.Emf)
I get the following error:
System.ArgumentNullException: Value cannot be null.
Parameter name: encoder
I get the same error when I try to export to file in emf format:
Me.RadChartView1.ExportToImage(dialog.FileName, Me.RadChartView1.Size, System.Drawing.Imaging.ImageFormat.Emf)