Advertisement
Guest User

Untitled

a guest
Feb 17th, 2020
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. saveFileDialog1.Filter = "JPeg Image|*.jpg";
  2. saveFileDialog1.Title = "Zapisz wykres do pliku";
  3. if (saveFileDialog1.ShowDialog() == DialogResult.OK)
  4. {
  5.  
  6. this.chart1.SaveImage(saveFileDialog1.FileName, ChartImageFormat.Jpeg);
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement