-
Printing graph
:)
Hi,
1. I have a graph control on my form which display a real time graph based on time basis.When the user presses the commandbutton, I have to print the graph from the start time .
How can I print the graph?
2. Also tell me how to save the graph as an template for future comparison with another graph.
Thanks in Advance...
-
A simple method would be to store the graph values in an array. Then when you wish to print the graph plot the values in a picture box that is on a new form. You can then use the print method of the form to send the results to the default printer.
You could also save the array to a file so that it can be recalled later for comparison with other graphs.