juanchoelx
juanchoelx

Reputation: 387

export chart to image high quality

I am exporting a chart fx into image, but this image have a low quality.

Chart chart1 = new Chart();

. . .

chart1.Export(FileFormat.Bitmap, "C:/WcfSReport/WcfSReport/WcfSReport/image.bmp");

Does anyone know how I can export this chart into an high quality image?

Upvotes: 1

Views: 1154

Answers (1)

gajo357
gajo357

Reputation: 978

Try and use FileFormat.Metafile

Upvotes: 1

Related Questions