Saving C1Chart as a .Png File
To save C1Chart as a .Png file, use the following code:
' save image to file
Using stm = System.IO.File.Create("chart.png")
c1Chart1.SaveImage(stm, C1.Silverlight.C1Chart.Extended.ImageFormat.Png)
End Using
•C#
// save image to file
using (var stm = System.IO.File.Create("chart.png"))
{
c1Chart1.SaveImage(stm, C1.Silverlight.C1Chart.Extended.ImageFormat.Png);
}