hello
I can draw whit zedgraph but wath is the code for save a zedgraph into a image?
:wave:
Printable View
hello
I can draw whit zedgraph but wath is the code for save a zedgraph into a image?
:wave:
I found this in the documentation of zedGraph... you should check it out. It's not exactly what you are looking for but may offer some clues on how to achieve what you want.
http://zedgraph.org/wiki/index.php?t...ater_reloading
EDIT:
There's also this page which may help:
http://zedgraph.org/wiki/index.php?t...le_application
It refers to: myPane.Image.Save although this is for version 4.3 so may not be relevant to the new version. I think for version 5 it's:
vb Code:
myPane.GetImage().Save(@"zedgraph.png", ImageFormat.Png);
as also show in that code. Again though, the answer may be very close to that.
thanks
but i allready try this code
i just tried it
it works fine for me with:
myPane.GetImage().Save("c:\image.png")