Displaying graphs from a C # .NET console application?

Ways to get a simple XY graph from a C # .NET console application?

ps I do not mind using a third-party plugin (such as IronPython or Matlab) to use third-party graphing libraries.

+4
source share
1 answer

Use the following method to launch a console application with a window shape, and then show / hide the form as needed. Use the form to display the bitmap of the graph.

How to run winform from a console application?

+6
source

All Articles