jai dessine un graph dynamique dans une pictirebox avec drawline et drawstring parcque je ne veut pas utiliser le composant "chart" , mon problem comment sauvegarder ce graph dans mon disque.
Graphics g = e.Graphics;
// Axe X
g.DrawLine(pen1, new Point(posX, posY + heightGraphe / 2), new Point(posX + widthGraphe, posY + heightGraphe / 2));
g.DrawString(label2.Text, new Font("Arial", 7), Brushes.Black, new Point(posX + widthGraphe - 23, posY + heightGraphe / 2 + 15));
.....
merci d'avance.