When I save the displayed chart image with the code below, the axis labels are missing from the image (I saw on an earlier post this can happen if scroll mode is on). I am not using scroll mode
Here is the code
Dim
ms1 As New System.IO.MemoryStream()
Me.chtGraph.Save(ms1, System.Drawing.Imaging.ImageFormat.Png)
Me.Page.Response.Clear()
Me.Page.Response.ClearHeaders()
Me.Page.Response.AddHeader("Content-disposition", "attachment; filename=graph.png")
Me.Page.Response.AddHeader("Content-type", "image/png")
Me.Page.Response.BinaryWrite(ms1.ToArray())
Me.Page.Response.[End]()