[]
        
(Showing Draft Content)

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.WPF.C1Chart.Extended.ImageFormat.Png)
End Using
// save image to file   
      using (var stm = System.IO.File.Create("chart.png"))
      {
        c1Chart1.SaveImage(stm, C1.WPF.C1Chart.Extended.ImageFormat.Png);
      }

See Also

Series Generation