SaveFileDialog savefile= new SaveFileDialog();
            savefile.Filter = "JPEG文件|*.jpg";
            if (savefile.ShowDialog() == DialogResult.OK)
            {
             
                    chart1.SaveImage (savefile.FileName, System.Drawing.Imaging.ImageFormat.Jpeg);
            }

 

C#实现将Chart图表生成JPG图片的方法

相关文章:

  • 2023-03-28
  • 2022-12-23
  • 2022-02-08
  • 2022-01-01
  • 2021-07-10
  • 2021-07-08
  • 2021-10-16
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-05-17
  • 2021-12-26
  • 2021-10-14
  • 2021-11-16
相关资源
相似解决方案