Good day. Guys, I need help with uploading the schedule without losing quality. My program creates graphs in the MS Chart component with a lot of data. I need to upload the plotted image into vector format.
SaveFileDialog SD = new SaveFileDialog(); SD.FileName = "test"; if (SD.ShowDialog() == DialogResult.OK) { string path = SD.FileName + ".emf"; SaveImage(path, ImageFormat.Emf); } The graph is uploaded to the created file, but the quality of the graph leaves much to be desired. This is what I see in the program:
This is getting in the emf file when opening in Paint:
This is getting in the emf file, when opened in CorelDraw:
What to do?


