I currently have two separated servers; an internal server with a database and an external server to which clients have access. On the internal server I want to query a database and generate a number of charts based on requests made by clients. So far I can do that, generate the charts, and using the SaveImage()
function export those charts as PNG images I can send to the client server.
However, I would like to also export the tooltips generated by MSChart, so when the clients view the charts (as pre-rendered PNGs) they can also view the tooltips. I'm under the impression that the MSChart control generates those tooltips as a <map><area>
which is output to the page when the charts are rendered, but is it possible to have that output to, for example, a text file, so that when I call the PNG charts I can also call and output the relevant map?