Mallikarjun 0 Report post Posted September 7, 2011 Hello, I am trying to export the chart fx into an image file. Chart is exported and image is created. However, image is truncated as i am not able to figure out the exact hieght and width of the chart beigng generated. Is there a way to set width = "100%" to chartFx, so that exported image will show whole image. thanks in advance. Please let me know for further details. ~Arjun Quote Share this post Link to post Share on other sites
karthic 0 Report post Posted July 27, 2012 try this // Export chartSystem.IO.MemoryStream stream = new MemoryStream(); chart.ImgWidth = 700; chart.ImgHeight = 300; chart.ImgQuality = 100; chart.Export( FileFormat.Jpeg, stream); Quote Share this post Link to post Share on other sites